HomeSort by relevance Sort by last modified time
    Searched refs:fun (Results 76 - 100 of 154) sorted by null

1 2 34 5 6 7

  /external/libffi/src/ia64/
ffi.c 406 void (*fun)(ffi_cif*,void*,void**,void*),
438 closure->fun = fun;
577 closure->fun (cif, rvalue, avalue, closure->user_data);
  /external/libffi/src/pa/
ffi.c 523 (closure->fun) (cif, rvalue, avalue, closure->user_data);
611 /* Fill in a closure to refer to the specified fun and user_data.
612 cif specifies the argument and result types for fun.
620 void (*fun)(ffi_cif*,void*,void**,void*),
705 closure->fun = fun;
  /external/libffi/src/s390/
ffi.c 682 (closure->fun) (closure->cif, rvalue, avalue, closure->user_data);
749 void (*fun) (ffi_cif *, void *, void **, void *),
774 closure->fun = fun;
  /external/libffi/src/sh/
ffi.c 459 void (*fun)(ffi_cif*, void*, void**, void*),
485 closure->fun = fun;
712 (closure->fun) (cif, rvalue, avalue, closure->user_data);
  /external/libffi/src/x86/
ffi64.c 440 void (*fun)(ffi_cif*, void*, void**, void*),
460 closure->fun = fun;
566 closure->fun (cif, rvalue, avalue, closure->user_data);
  /external/v8/include/
v8-debug.h 307 * \param fun the function to call
323 static Local<Value> Call(v8::Handle<v8::Function> fun,
  /external/v8/test/cctest/
test-deoptimization.cc 109 v8::Local<v8::Function> fun = local
111 return v8::Utils::OpenHandle(*fun);
238 v8::Local<v8::Function> fun = local
240 CHECK(!fun.IsEmpty());
test-log-stack-tracer.cc 246 Local<Function> fun = constructor_template->GetFunction(); local
247 env->Global()->Set(v8_str(constructor_name), fun); local
test-api.cc 168 v8::Handle<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(); local
169 v8::Handle<v8::Signature> sig = v8::Signature::New(fun);
170 fun->PrototypeTemplate()->Set(
175 env->Global()->Set(v8_str("Fun"), fun->GetFunction());
178 "var o = new Fun();"
182 sub_fun->Inherit(fun);
192 "o.m = Fun.prototype.m;"
198 sub_fun->Inherit(fun);
202 "o.m = Fun.prototype.m;
216 v8::Handle<v8::FunctionTemplate> fun = local
792 Local<Function> fun = fun_templ->GetFunction(); local
802 Local<Function> fun = fun_templ->GetFunction(); local
813 Local<Function> fun = fun_templ->GetFunction(); local
1208 Local<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(); local
2533 const char* fun = "f()"; local
3141 Local<Value> fun = global->Get(v8_str("JSThrowCountDown")); local
3240 Local<Function> fun = local
6145 Local<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(TroubleCallback); local
6184 Local<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(TroubleCallback); local
8263 v8::Handle<v8::Value> fun = local
9482 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9509 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9539 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9575 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9611 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9650 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9686 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9710 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9737 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
9769 v8::Handle<v8::Function> fun = fun_templ->GetFunction(); local
10599 Local<Function> fun = fun_templ->GetFunction(); local
10621 Local<Function> fun = fun_templ->GetFunction(); local
10658 Local<Function> fun = fun_templ->GetFunction(); local
10672 Local<Function> fun = fun_templ->GetFunction(); local
14056 Local<Function> fun = fun_templ->GetFunction(); local
14081 Local<Function> fun = fun_templ->GetFunction(); local
    [all...]
  /external/v8/test/mjsunit/
object-literal-overwrite.js 81 function fun(x) { function
86 assertEquals(7, fun(7) );
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 115 var obj = { x: 123, fun: function() { print(this.x); } };
116 myQObject.somethingChanged.connect(obj, "fun");
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.h 74 QScriptValuePrivate* newFunction(QScriptEngine::FunctionSignature fun, QScriptValuePrivate* prototype, int length);
75 QScriptValuePrivate* newFunction(QScriptEngine::FunctionWithArgSignature fun, void* arg);
  /external/v8/test/mjsunit/harmony/
proxies-example-membrane.js 135 function wrapCall(fun, that, args) {
137 print("wrapCall enter", fun, str(that));
139 var x = wrapCall2(fun, that, args);
140 print("wrapCall exit", fun, str(that), "returning", str(x));
143 print("wrapCall exception", fun, str(that), str(e));
148 function wrapCall2(fun, that, args) {
151 return wrap(fun.apply(that, Array.prototype.map.call(args, wrap)));
  /external/libffi/src/mips/
ffi.c 568 void (*fun)(ffi_cif*,void*,void**,void*),
627 closure->fun = fun;
733 (closure->fun) (cif, rvalue, avaluep, closure->user_data);
919 (closure->fun) (cif, rvalue, avaluep, closure->user_data);
  /external/v8/src/
string-stream.h 154 void PrintPrototype(JSFunction* fun, Object* receiver);
factory.cc 680 Handle<JSFunction> fun = Handle<JSFunction>::cast(fun_obj);
687 Handle<Object> result = Execution::TryCall(fun,
704 Handle<JSFunction> fun = Handle<JSFunction>( local
712 Handle<Object> result = Execution::TryCall(fun,
1132 Handle<JSFunction> fun = NewFunctionHelper(name, prototype); local
1157 Handle<JSFunction> fun = local
    [all...]
debug.cc 1463 Object* fun = frame->GetExpression( local
2860 v8::Local<v8::Function> fun = local
2903 v8::Local<v8::Function> fun; local
3370 Handle<Object> fun = GetProperty(event_data_, "toJSONProtocol"); local
    [all...]
full-codegen.cc 602 Compiler::BuildFunctionInfo(fun_decl->fun(), script());
627 EmitDeclaration(decl->proxy(), decl->mode(), decl->fun());
674 void FullCodeGenerator::SetFunctionPosition(FunctionLiteral* fun) {
675 CodeGenerator::RecordPositions(masm_, fun->start_position());
679 void FullCodeGenerator::SetReturnPosition(FunctionLiteral* fun) {
680 CodeGenerator::RecordPositions(masm_, fun->end_position() - 1);
    [all...]
  /external/ceres-solver/internal/ceres/
autodiff_test.cc 56 T fun[M],
58 if (!b(par, fun)) {
  /external/libffi/src/powerpc/
ffi.c 939 void (*fun) (ffi_cif *, void *, void **, void *),
972 closure->fun = fun;
    [all...]
  /external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 409 # Example input: "Isn't this fun?"
410 # Example output: &#8220;Isn&#8217;t this fun?&#8221;
498 # Example input: ``Isn't this fun?''
499 # Example output: &#8220;Isn't this fun?&#8221;
514 # Example input: `Isn't this fun?'
515 # Example output: &#8216;Isn&#8217;t this fun?&#8217;
  /external/icu4c/test/intltest/
wbnf.cpp     [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 572 void fun(int (*x)[10]); // expected-note{{candidate function not viable: 1st argument ('const int (*)[10]') would lose const qualifier}}
573 void g() { fun((const int(*)[10])0); } // expected-error{{no matching function for call to 'fun'}}
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 72 Array.iteri (fun i a ->
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 72 Array.iteri (fun i a ->

Completed in 2157 milliseconds

1 2 34 5 6 7