Searched defs:fun (Results 1 - 25 of 112) sorted by relevance

12345

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-344186.js9 function fun(base) { function
14 fun(100);
15 %OptimizeFunctionOnNextCall(fun);
16 fun(0);
/external/clang/test/CodeGen/
H A D2009-01-05-BlockInlining.c10 static int fun(int x) { function
24 print(fun(x));
/external/clang/test/CodeGenCXX/
H A D2003-12-08-ArrayOfPtrToMemberFunc.cpp4 void fun ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() { function in class:Evil
H A Dmicrosoft-uuidof.cpp37 void fun() { function
/external/clang/test/SemaCXX/
H A Dwritable-strings-deprecated.cpp6 char *fun(void) function
H A Dgoto2.cpp10 void fun(const char* text) { function
45 fun(ptr);
/external/skia/tests/
H A DPathOpsExtendedTest.h21 void (*fun)(skiatest::Reporter*); member in struct:TestDesc
/external/v8/src/
H A Dapinatives.js75 var fun = %CreateApiFunction(data);
76 if (name) %FunctionSetName(fun, name);
77 cache[serialNumber] = fun;
82 fun.prototype = typeof prototype === 'undefined' ?
85 %FunctionSetReadOnlyPrototype(fun);
87 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
93 fun.prototype.__proto__ = parent_fun.prototype;
95 ConfigureTemplateInstance(fun, data);
79 fun.prototype = typeof prototype === 'undefined' ? class
/external/chromium_org/v8/src/
H A Dapinatives.js74 var fun = %CreateApiFunction(data);
75 if (name) %FunctionSetName(fun, name);
78 if (!doNotCache) cache[serialNumber] = fun;
80 %FunctionRemovePrototype(fun);
85 fun.prototype = typeof prototype === 'undefined' ?
88 %FunctionSetReadOnlyPrototype(fun);
90 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
96 %SetPrototype(fun.prototype, parent_fun.prototype);
99 ConfigureTemplateInstance(fun, dat
82 fun.prototype = typeof prototype === 'undefined' ? class
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepin-positions.js36 function TestCase(fun, frame_number) {
66 fun();
113 function TestCaseWithDebugger(fun) {
114 TestCase(fun, 1);
117 function TestCaseWithBreakpoint(fun, line_number, frame_number) {
118 var breakpointId = Debug.setBreakPoint(fun, line_number);
119 TestCase(fun, frame_number);
123 function TestCaseWithException(fun, frame_number) {
125 TestCase(fun, frame_number);
134 var fun
[all...]
H A Dfuzz-accessors.js54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
H A Dobject-literal-overwrite.js97 function fun(x) { function
102 assertEquals(7, fun(7) );
H A Dgetters-on-elements.js181 fun = function(a) { return a[0] + 5.5; }
182 fun(a);
183 fun(a);
184 fun(a); // should have a monomorphic KeyedLoadIC.
185 optimize(fun);
186 fun(a);
187 assertOptimized(fun);
191 fun(a);
192 assertOptimized(fun);
196 fun(
180 fun = function(a) { return a[0] + 5.5; } function
[all...]
H A Dkeyed-ic.js180 function fun() { };
183 o.f = fun;
194 assertEquals(fun, property);
/external/v8/test/mjsunit/
H A Dfuzz-accessors.js54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
H A Dobject-literal-overwrite.js81 function fun(x) { function
86 assertEquals(7, fun(7) );
H A Dkeyed-ic.js180 function fun() { };
183 o.f = fun;
194 assertEquals(fun, property);
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-funcaller.js33 function fun(x) { function
34 if (x == 0) return fun.caller;
40 A.prototype.f = fun;
/external/v8/test/mjsunit/compiler/
H A Dregress-funcaller.js33 function fun(x) { function
34 if (x == 0) return fun.caller;
40 A.prototype.f = fun;
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp4.cpp16 template<typename S> void fun(const int* const S::* member) {} function in namespace:PR12132
19 fun(&A::x);
/external/clang/test/Sema/
H A Dinvalid-decl.c27 FunctionType fun; // expected-error {{field 'fun' declared as a function}} member in struct:__anon17230
30 buf->fun = 0;
/external/libffi/src/
H A Dprep_cif.c168 void (*fun)(ffi_cif*,void*,void**,void*),
171 return ffi_prep_closure_loc (closure, cif, fun, user_data, closure);
166 ffi_prep_closure(ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data) argument
/external/v8/test/cctest/
H A Dtest-random.cc50 void TestSeeds(Handle<JSFunction> fun, argument
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
62 CHECK(fun->IsOptimized());
89 Handle<JSFunction> fun(JSFunction::cast(fun_object->ToObjectChecked()));
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
94 if (!fun->IsOptimized()) fun->MarkForLazyRecompilation();
97 TestSeeds(fun, context, 0xC0C0AFFE, 0x31415926);
98 TestSeeds(fun, contex
[all...]
/external/clang/test/PCH/
H A Dstruct.h13 struct Fun *fun; variable in typeref:struct:Fun
/external/chromium_org/chrome_frame/
H A Dvtable_patch_manager_unittest.cc81 LockServerFun fun, IClassFactory* self, BOOL lock) {
84 return current_->LockServerPatch(fun, self, lock);
80 LockServerPatchCallback( LockServerFun fun, IClassFactory* self, BOOL lock) argument

Completed in 1496 milliseconds

12345