/external/clang/test/CodeGen/ |
ms-inline-asm.c | 50 int 0x2c ; } asm comments are fun! }{ 54 int 0x2c ; } asm comments are fun! }{
|
/external/clang/test/CodeGenCXX/ |
const-init-cxx11.cpp | 572 inline const int &fun() { 577 const int &use = fun();
|
dllimport-members.cpp | 22 #define USEMF(cls, fun) template<> void useMemFun<__LINE__, cls>() { cls().fun(); } [all...] |
/external/clang/test/SemaCXX/ |
overload-call.cpp | 595 void fun(int (*x)[10]); // expected-note{{candidate function not viable: 1st argument ('const int (*)[10]') would lose const qualifier}} 596 void g() { fun((const int(*)[10])0); } // expected-error{{no matching function for call to 'fun'}}
|
/external/dhcpcd-6.8.2/ |
arp.c | 75 #define CHECK(fun, b, l) \ 79 fun(p, (b), (l)); \
|
/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 ->
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
codegen.ml | 247 Array.iter (fun (var_name, init) -> 280 List.iter (fun (var_name, old_value) -> 310 Array.iteri (fun i a -> 323 Array.iteri (fun i ai ->
|
/external/llvm/test/Bindings/OCaml/ |
executionengine.ml | 66 (fun () -> 42l) in
|
/external/mesa3d/src/glx/apple/ |
appledri.c | 87 void *XAppleDRISetSurfaceNotifyHandler(void (*fun) ()) 90 surface_notify_handler = fun;
|
/external/skia/src/pathops/ |
SkOpSegment.h | 170 void debugShowNewWinding(const char* fun, const SkOpSpan* span, int winding); 171 void debugShowNewWinding(const char* fun, const SkOpSpan* span, int winding, int oppWinding);
|
/external/v8/test/mjsunit/regress/ |
regress-2564.js | 43 assertEquals(undefined, frames[i].fun);
|
/external/v8/tools/testrunner/local/ |
execution.py | 198 def _RunPerfSafe(self, fun): 200 fun()
|
/toolchain/binutils/binutils-2.25/bfd/ |
xtensa-isa.c | 321 isa->funcUnit_lookup_table[n].u.fun = n; [all...] |
/external/pdfium/fpdfsdk/src/jsapi/ |
fxjs_v8.cpp | 64 v8::Local<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(isolate); local 65 fun->InstanceTemplate()->SetInternalFieldCount(2); 66 m_FunctionTemplate.Reset(isolate, fun); 68 v8::Local<v8::Signature> sig = v8::Signature::New(isolate, fun);
|
/external/v8/src/debug/ |
liveedit.h | 45 explicit LiveEditFunctionTracker(Isolate* isolate, FunctionLiteral* fun);
|
/external/v8/src/ic/arm/ |
handler-compiler-arm.cc | 306 ApiFunction fun(function_address); 308 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); 635 ApiFunction fun(getter_address); 637 ExternalReference ref = ExternalReference(&fun, type, isolate());
|
/external/v8/src/ic/arm64/ |
handler-compiler-arm64.cc | 218 ApiFunction fun(function_address); 220 &fun, ExternalReference::DIRECT_API_CALL, masm->isolate()); 694 ApiFunction fun(getter_address); 696 ExternalReference ref = ExternalReference(&fun, type, isolate());
|
/external/v8/src/ic/mips/ |
handler-compiler-mips.cc | 296 ApiFunction fun(function_address); 298 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); 627 ApiFunction fun(getter_address); 629 ExternalReference ref = ExternalReference(&fun, type, isolate());
|
/external/v8/src/ic/mips64/ |
handler-compiler-mips64.cc | 296 ApiFunction fun(function_address); 298 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); 627 ApiFunction fun(getter_address); 629 ExternalReference ref = ExternalReference(&fun, type, isolate());
|
/external/v8/src/ic/ppc/ |
handler-compiler-ppc.cc | 305 ApiFunction fun(function_address); 307 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); 632 ApiFunction fun(getter_address); 634 ExternalReference ref = ExternalReference(&fun, type, isolate());
|
/external/v8/test/cctest/ |
test-accessors.cc | 81 Local<Function> fun = fun_templ->GetFunction(env.local()).ToLocalChecked(); local 82 CHECK(env->Global()->Set(env.local(), v8_str("Fun"), fun).FromJust()); 86 getter = v8_compile("var obj = new Fun(); obj.instance_foo;"); 107 getter = v8_compile("Fun.object_foo;"); 112 setter = v8_compile("Fun.object_foo = 903;"); 624 v8::Local<v8::Function> fun = local 628 ->Set(switch_context.local(), v8_str("fun"), fun) 633 "var o = Object.create(null, { n: { get:fun } });" [all...] |
test-deoptimization.cc | 118 v8::Local<v8::Function> fun = v8::Local<v8::Function>::Cast( local 120 return i::Handle<i::JSFunction>::cast(v8::Utils::OpenHandle(*fun)); 279 v8::Local<v8::Function> fun = v8::Local<v8::Function>::Cast( local 283 CHECK(!fun.IsEmpty());
|
test-typing-reset.cc | 282 info.scope()->declarations()->at(0)->AsFunctionDeclaration()->fun();
|
/external/v8/test/mjsunit/es6/ |
generators-debug-scopes.js | 36 var fun = Function.apply(null, formals_and_body); 41 run(function () { return fun.apply(null, args) });
|