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

12345678

/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-352929.js12 function fun(base,cond) { function
23 fun(5,true);
24 fun(7,false);
25 %OptimizeFunctionOnNextCall(fun);
26 fun(7,false);
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));
H A Dregress-354433.js43 function __f_5(fun,a,b) {
46 fun(__v_5, __v_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
H A DPR19955.cpp5 extern void __declspec(dllimport) fun();
13 void (*funp)() = &fun;
24 // CHECK-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZA"
27 // X64-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZEA"
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-log2-log10.js28 [Math.log10, Math.log2].forEach( function(fun) {
29 assertTrue(isNaN(fun(NaN)));
30 assertTrue(isNaN(fun(fun)));
31 assertTrue(isNaN(fun({ toString: function() { return NaN; } })));
32 assertTrue(isNaN(fun({ valueOf: function() { return -1; } })));
33 assertTrue(isNaN(fun({ valueOf: function() { return "abc"; } })));
34 assertTrue(isNaN(fun(-0.1)));
35 assertTrue(isNaN(fun(-1)));
36 assertEquals("-Infinity", String(fun(
[all...]
H A Dmath-hyperbolic.js32 forEach(function(fun) {
33 assertTrue(isNaN(fun(NaN)));
34 assertTrue(isNaN(fun("abc")));
35 assertTrue(isNaN(fun({})));
36 assertEquals(fun(0), fun([]));
37 assertTrue(isNaN(fun([1, 1])));
38 assertEquals(fun(1.11), fun({ toString: function() { return "1.11"; } }));
39 assertEquals(fun(
[all...]
/external/clang/test/SemaCXX/
H A DPR19955.cpp7 extern __attribute__((dllimport)) void fun();
8 constexpr void (*funp)(void) = &fun; // expected-error {{must be initialized by a constant expression}}
12 S<&fun> x;
H A Dwritable-strings-deprecated.cpp12 char *fun(void) function
H A Dgoto2.cpp10 void fun(const char* text) { function
45 fun(ptr);
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp6 void fun() { function
/external/valgrind/main/
H A Dglibc-2.X-drd.supp30 fun:write
35 fun:random_r
36 fun:random
52 # fun:_ZNSsC1ERKSs
58 fun:pthread_cond_broadcast@*
59 fun:__cxa_guard_release
71 fun:pthread_create*
76 fun:pthread_join
77 fun:pthread_join
83 fun
[all...]
/external/ltrace/testsuite/ltrace.main/
H A Dparameters3.exp24 void fun();
28 void fun(void) {}
33 fun();
37 ltraceMatch1 [ltraceRun -F $dir -L -x fun -- $bin] {fun@liba.so\(\)} == 1
38 ltraceMatch1 [ltraceRun -F $dir -e fun -- $bin] {fun\(\)} == 1
/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/tools/ubsan_vptr/
H A Dblacklist.txt14 fun:*LifecycleNotifier*addObserver*
15 fun:*LifecycleNotifier*removeObserver*
16 fun:*toWebInputElement*
36 fun:*DoublyLinkedListNode*
41 fun:*content*RenderFrameObserverTracker*RenderFrame*
44 fun:*content*RenderViewObserverTracker*RenderView*
49 fun:*DatabaseContext*contextDestroyed*
54 fun:*RefCountedGarbageCollected*makeKeepAlive*
55 fun:*ThreadSafeRefCountedGarbageCollected*makeKeepAlive*
63 fun
[all...]
/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 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...]
/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));

Completed in 8815 milliseconds

12345678