Searched refs:fun (Results 1 - 25 of 230) sorted by relevance

12345678910

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-embedded-cons-string.js37 function test(fun) {
38 fun();
39 fun();
41 %OptimizeFunctionOnNextCall(fun, "concurrent");
43 fun();
47 assertUnoptimized(fun, "no sync");
51 assertOptimized(fun, "sync");
H A Dregress-map-invalidation-2.js47 var fun = g();
48 fun(false, c);
49 fun(false, c);
50 fun(false, c);
51 %OptimizeFunctionOnNextCall(fun);
52 fun(false, c);
53 fun(true, c);
54 assertOptimized(fun);
H A Dregress-crbug-344186.js9 function fun(base) { function
14 fun(100);
15 %OptimizeFunctionOnNextCall(fun);
16 fun(0);
H A Dregress-2843.js33 function foo(x, fun) {
37 fun();
H A Dregress-crbug-280333.js33 function foo(x, fun) {
37 if (fun()) {
H A Dregress-phi-truncation.js30 function test(fun, expectation) {
31 assertEquals(1, fun(1));
32 %OptimizeFunctionOnNextCall(fun);
33 assertEquals(expectation, fun(0));
/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
/external/chromium_org/tools/valgrind/tsan/
H A Dsuppressions_win32.txt7 fun:UuidCreate
14 fun:ILFindLastID
21 fun:RpcServerUnregisterIf
28 fun:unnamedImageEntryPoint
34 fun:CoFreeAllLibraries
40 fun:GetLocalIdFromEndpointId
51 fun:*InitializeClock*
58 fun:_initterm
59 fun:doexit
65 fun
[all...]
/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/valgrind/main/
H A Dglibc-2.X-drd.supp30 fun:write
46 # fun:_ZNSsC1ERKSs
52 fun:pthread_cond_broadcast@*
53 fun:__cxa_guard_release
65 fun:pthread_create*
70 fun:pthread_join
71 fun:pthread_join
77 fun:__deallocate_stack
82 fun:__free_stacks
88 fun
[all...]
/external/clang/test/PCH/
H A Dstruct.c15 return fun->is_ptr? fun->ptr : 0;
26 int *int_ptr_fail = &fun->is_ptr; // expected-error{{address of bit-field requested}}
/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 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 Ddebug-set-variable-value.js33 // Accepts a function/closure 'fun' that must have a debugger statement inside.
38 new_value, expected_new_result, fun) {
39 var actual_old_result = fun();
67 actual_new_result = fun();
80 // Accepts a closure 'fun' that returns a variable from it's outer scope.
84 new_value, expected_new_result, fun) {
85 var actual_old_result = fun();
88 var fun_mirror = Debug.MakeMirror(fun);
93 var actual_new_result = fun();
112 var fun
[all...]
/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/CodeGen/
H A D2009-01-05-BlockInlining.c10 static int fun(int x) { function
24 print(fun(x));
/external/v8/test/mjsunit/
H A Dfuzz-accessors.js54 var fun = function () { }; function
63 [fun, fun],
68 function runTest(fun) {
78 fun(obj, propertyName);
/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/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/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/chromium/chrome/browser/resources/shared/js/cr/
H A Dpromise.js73 * @param {!Function} fun The function to call.
75 addListener: function(fun) {
77 fun(this.value);
79 this.callbacks_.push(fun);
84 * @param {!Function} fun The function to remove.
86 removeListener: function(fun) {
87 var i = this.callbacks_.indexOf(fun);
115 * When a future promise is done call {@code fun}. This also calls the
118 * @param {!Function} fun The function to call when the promise is fulfilled.
120 Promise.when = function(p, fun) {
[all...]
/external/chromium_org/ui/webui/resources/js/cr/
H A Dpromise.js74 * @param {!Function} fun The function to call.
76 addListener: function(fun) {
78 fun(this.value);
80 this.callbacks_.push(fun);
85 * @param {!Function} fun The function to remove.
87 removeListener: function(fun) {
88 var i = this.callbacks_.indexOf(fun);
116 * When a future promise is done call {@code fun}. This also calls the
119 * @param {!Function} fun The function to call when the promise is fulfilled.
121 Promise.when = function(p, fun) {
[all...]

Completed in 2719 milliseconds

12345678910