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

1234

/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);
H A Dregress-crbug-352929.js12 function fun(base,cond) { function
23 fun(5,true);
24 fun(7,false);
25 %OptimizeFunctionOnNextCall(fun);
26 fun(7,false);
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp6 void fun() { function
/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.cpp63 void fun() { function
/external/clang/test/SemaCXX/
H A Dwritable-strings-deprecated.cpp12 char *fun(void) function
H A Dgoto2.cpp10 void fun(const char* text) { function
45 fun(ptr);
H A Dqual-id-test.cpp37 void fun() function in namespace:C
/external/skia/tests/
H A DPathOpsExtendedTest.h21 void (*fun)(skiatest::Reporter*, const char* filename); member in struct:TestDesc
/external/chromium_org/third_party/skia/tests/
H A DPathOpsExtendedTest.h24 void (*fun)(skiatest::Reporter*, const char* filename); member in struct:TestDesc
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepin-positions.js36 function TestCase(fun, frame_number) {
67 fun();
114 function TestCaseWithDebugger(fun) {
115 TestCase(fun, 1);
118 function TestCaseWithBreakpoint(fun, line_number, frame_number) {
119 var breakpointId = Debug.setBreakPoint(fun, line_number);
120 TestCase(fun, frame_number);
124 function TestCaseWithException(fun, frame_number) {
126 TestCase(fun, frame_number);
135 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.js188 fun = function(a) { return a[0] + 5.5; }
189 fun(a);
190 fun(a);
191 fun(a); // should have a monomorphic KeyedLoadIC.
192 optimize(fun);
193 fun(a);
194 assertOptimized(fun);
198 fun(a);
199 assertOptimized(fun);
203 fun(
187 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/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/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:__anon19131
30 buf->fun = 0;
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dalloc_F.pass.cpp87 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1); local
88 fun(10);
/external/clang/test/PCH/
H A Dstruct.h13 struct Fun *fun; variable in typeref:struct:Fun
/external/libedit/src/
H A Dhist.h53 hist_fun_t fun; /* Event access */ member in struct:el_history_t
58 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
/external/chromium_org/third_party/skia/experimental/Intersection/AddTestOutput/
H A Dmain.cpp6 static bool replace(const char* fun, const char* dir, const char* filename, const char* marker, argument
12 SkDebugf("%s couldn't find %s\n", fun, outFileStr.c_str());
22 SkDebugf("%s couldn't open for writing %s\n", fun, outFileStr.c_str());
28 SkDebugf("%s missing marker in %s\n", fun, outFileStr.c_str());
37 SkDebugf("%s missing marker second half in %s\n", fun, outFileStr.c_str());
96 " void (*fun)();" "\n"
/external/chromium_org/v8/src/compiler/
H A Djs-builtin-reducer-unittest.cc71 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
73 fun, UndefinedConstant(), p0);
89 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
91 fun, UndefinedConstant());
104 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
106 fun, UndefinedConstant(), p0);
122 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
124 graph()->NewNode(javascript()->Call(4, NO_CALL_FUNCTION_FLAGS), fun,
158 Node* fun = HeapConstant(Unique<HeapObject>::CreateUninitialized(f)); local
160 graph()->NewNode(javascript()->Call(4, NO_CALL_FUNCTION_FLAGS), fun,
[all...]
/external/chromium_org/v8/src/
H A Dd8-debug.cc60 Local<Function> fun = Local<Function>::Cast(exec_state->Get(fun_name)); local
62 Local<Object>::Cast(fun->Call(exec_state, 0, NULL));
96 Handle<Function> fun; local
105 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
107 Handle<Value> response_val = fun->Call(cmd_processor, kArgc, args);

Completed in 2531 milliseconds

1234