564件ヒット
[101-200件を表示]
(0.046秒)
キーワード
-
call
_ cfunc (12) -
define
_ final (12) -
gc
_ mark _ all (12) -
gc
_ mark _ rest (12) -
gc
_ sweep (12) -
method
_ call (12) -
os
_ each _ obj (12) -
proc
_ s _ new (12) -
rb
_ call (12) -
rb
_ call0 (12) -
rb
_ class _ initialize (12) -
rb
_ class _ s _ new (12) -
rb
_ cont _ call (12) -
rb
_ f _ abort (12) -
rb
_ f _ caller (12) -
rb
_ f _ eval (12) -
rb
_ f _ exit (12) -
rb
_ f _ load (12) -
rb
_ f _ missing (12) -
rb
_ f _ raise (12) -
rb
_ f _ send (12) -
rb
_ f _ throw (12) -
rb
_ mod _ attr (12) -
rb
_ mod _ attr _ accessor (12) -
rb
_ mod _ attr _ reader (12) -
rb
_ mod _ attr _ writer (12) -
rb
_ mod _ define _ method (12) -
rb
_ mod _ include (12) -
rb
_ mod _ modfunc (12) -
rb
_ mod _ private (12) -
rb
_ mod _ private _ method (12) -
rb
_ mod _ protected (12) -
rb
_ mod _ public (12) -
rb
_ mod _ public _ method (12) -
rb
_ obj _ extend (12) -
rb
_ obj _ respond _ to (12) -
rb
_ thread _ join _ m (12) -
rb
_ thread _ raise (12) -
rb
_ thread _ raise _ m (12) -
rb
_ thread _ s _ new (12) -
rb
_ undefined (12) -
set
_ method _ visibility (12) -
specific
_ eval (12) -
top
_ include (12) -
top
_ private (12) -
top
_ public (12) -
umethod
_ call (12)
検索結果
先頭5件
- static VALUE proc
_ s _ new(int argc , VALUE *argv , VALUE klass) - static VALUE rb
_ call(VALUE klass , VALUE recv , ID mid , int argc , const VALUE *argv , int scope) - static VALUE rb
_ call0(VALUE klass , VALUE recv , ID id , int argc , VALUE *argv , NODE *body , int nosuper) - static VALUE rb
_ class _ initialize(int argc , VALUE *argv , VALUE klass) - static VALUE rb
_ class _ s _ new(int argc , VALUE *argv)
-
static VALUE proc
_ s _ new(int argc , VALUE *argv , VALUE klass) (201.0) -
Proc.new の実体。
Proc.new の実体。 -
static VALUE rb
_ call(VALUE klass , VALUE recv , ID mid , int argc , const VALUE *argv , int scope) (201.0) -
クラス klass に定義されたメソッド mid を呼び出します。 レシーバは recv で、引数は長さ argc の配列 argv で渡します。
...クラス klass に定義されたメソッド mid を呼び出します。
レシーバは recv で、引数は長さ argc の配列 argv で渡します。
scope は以下のように呼び出しの形式を示します。
: 0
obj.method() (private/protected メソッドを呼べない)
:... -
static VALUE rb
_ call0(VALUE klass , VALUE recv , ID id , int argc , VALUE *argv , NODE *body , int nosuper) (201.0) -
クラス klass に定義されたメソッドのコード body を起動します。 レシーバは recv で、引数は長さ argc の配列 argv で渡します。 nosuper が非ゼロのときは、この呼び出し中の super がエラーになります。
...クラス klass に定義されたメソッドのコード body を起動します。
レシーバは recv で、引数は長さ argc の配列 argv で渡します。
nosuper が非ゼロのときは、この呼び出し中の super がエラーになります。... -
static VALUE rb
_ class _ initialize(int argc , VALUE *argv , VALUE klass) (201.0) -
Class#initialize の実体です。
Class#initialize の実体です。 -
static VALUE rb
_ class _ s _ new(int argc , VALUE *argv) (201.0) -
-
static VALUE rb
_ cont _ call(int argc , VALUE *argv , VALUE cont) (201.0) -
Continuation#call の実体。
Continuation#call の実体。 -
static VALUE rb
_ f _ abort(int argc , VALUE *argv) (201.0) -
-
static VALUE rb
_ f _ caller(int argc , VALUE *argv) (201.0) -
-
static VALUE rb
_ f _ eval(int argc , VALUE *argv , VALUE self) (201.0) -