るりまサーチ

最速Rubyリファレンスマニュアル検索!
1352件ヒット [1001-1100件を表示] (0.117秒)
トップページ > クエリ:p[x] > クエリ:Point[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel p
  5. dsa p

ライブラリ

モジュール

キーワード

検索結果

<< < ... 9 10 11 12 13 ... > >>

TracePoint#instruction_sequence -> RubyVM::InstructionSequence (6006.0)

script_compiledイベント発生時にコンパイルされた RubyVM::InstructionSequenceインスタンスを返します。

...ipt_compiledイベント発生時にコンパイルされた
RubyVM::InstructionSequenceインスタンスを返します。

//emlist[例][ruby]{
TracePoint.new(:script_compiled) do |tp|
p
tp.instruction_sequence # => <RubyVM::InstructionSequence:block in <main>@(eval):1>
end.enable do
eval("pu...
...ts 'hello'")
end
//}

@raise RuntimeError :script_compiled イベントのための
イベントフックの外側で実行した場合に発生します。...

TracePoint#method_id -> Symbol | nil (6006.0)

イベントが発生したメソッドの定義時の名前を Symbol で返します。 トップレベルであった場合は nil を返します。

...した場合に発生します。

//emlist[][ruby]{
class C
def method_name
end
alias alias_name method_name
end

trace = TracePoint.new(:call) do |tp|
p
[tp.method_id, tp.callee_id] # => [:method_name, :alias_name]
end
trace.enable do
C.new.alias_name
end
//}

@see TracePoint#callee_id...

TracePoint#return_value -> object (6006.0)

メソッドやブロックの戻り値を返します。

...timeError :return、:c_return、:b_return イベントのためのイベ
ントフックの外側で実行した場合に発生します。

//emlist[例][ruby]{
def foo(ret)
ret
end
trace = TracePoint.new(:return) do |tp|
p
tp.return_value # => 1
end
trace.enable
foo 1
//}...

Shell#finish_all_jobs (6001.0)

@todo

@todo

Shell::CommandProcessor#finish_all_jobs (6001.0)

@todo

@todo

絞り込み条件を変える

Shell::Filter#finish_all_jobs (6001.0)

@todo

@todo

Fiddle::Pointer#<=>(other) -> Integer (6000.0)

ポインタの指すアドレスの大小を比較します。

...ポインタの指すアドレスの大小を比較します。

other より小さい場合は -1, 等しい場合は 0、other より大きい場合は
1を返します。

@param other 比較対象の Pointer オブジェクト...

Fiddle::Pointer#free -> Fiddle::CFunc (6000.0)

GC がメモリを解放するのに使用する Fiddle::CFunc オブジェクトを返します。

...GC がメモリを解放するのに使用する Fiddle::CFunc オブジェクトを返します。

これは普通 Fiddle::Pointer#free= や Fiddle::Pointer.new によって設定されます。...

Fiddle::Pointer#free=(cfunc) (6000.0)

GC が自身を解放するのに使う関数を Fiddle::CFunc で指定します。

...GC が自身を解放するのに使う関数を Fiddle::CFunc で指定します。

@param cfunc 自身を解放するのに使われる関数を Fiddle::CFunc か整数で指定します。...

Fiddle::Pointer#null? -> bool (6000.0)

自身が NULL なら true を返します。そうでないなら false を返します。

自身が NULL なら true を返します。そうでないなら false を返します。

絞り込み条件を変える

Fiddle::Pointer#size -> Integer (6000.0)

自身の指す領域のサイズを返します。

...す領域のサイズを返します。

基本的には Fiddle::Pointer.new で指定したサイズが返されます。
Fiddle::Pointer.to_ptr で文字列を変換したときは、そのバイト数が返されます。
Fiddle::Pointer#size= でこの値を変更することができます。...
<< < ... 9 10 11 12 13 ... > >>