Searched defs:f1 (Results 176 - 200 of 532) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/compiler/
H A Dvariables.js38 function f1(x) { return x; } function
39 assertEquals(1, f1(1));
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dblock-scoping.js34 function f1() { function
42 for (var j = 0; j < 5; ++j) f1();
43 %OptimizeFunctionOnNextCall(f1);
44 f1();
45 assertTrue(%GetOptimizationStatus(f1) != 2);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1229.js56 function f1(y, z) { function
70 return f1(y, z); /* f should be inlined into g, note rotated arguments */
88 return f1(local_y, local_z); /* f should be inlined into h */
116 invoke(f1, [2, 3]);
/external/chromium_org/v8/test/mjsunit/
H A Dsimple-constructor.js34 function f1() { class
45 this.z = f1;
52 this.z = f1;
55 o1_1 = new f1();
57 o1_2 = new f1();
/external/clang/test/Analysis/diagnostics/
H A Dundef-value-param.c48 double *f1; member in struct:WithFields
55 X->f1 = getValidPtr();
59 st.f1 = 0; // expected-note {{Null pointer value stored to 'st.f1'}}
62 return (*st.f1); //expected-warning {{Dereference of null pointer}}
63 //expected-note@-1{{Dereference of null pointer (loaded from field 'f1')}}
827 // CHECK-NEXT: <string>Null pointer value stored to &apos;st.f1&apos;</string>
829 // CHECK-NEXT: <string>Null pointer value stored to &apos;st.f1&apos;</string>
1161 // CHECK-NEXT: <string>Dereference of null pointer (loaded from field &apos;f1&apos;)</string>
1163 // CHECK-NEXT: <string>Dereference of null pointer (loaded from field &apos;f1
[all...]
/external/clang/test/Analysis/
H A Dmethod-call.cpp22 void f1() { function
H A Dstackaddrleak.c12 void f1() { function
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dinjected-class-name.cpp12 type f1(T);
19 typename X0<T, Types...>::type X0<T, Types...>::f1(T) { } function in class:X0
/external/clang/test/CXX/temp/temp.param/
H A Dp9-0x.cpp21 friend void f1(X3) { function in struct:X3
38 template<typename U> void f1();
42 template<typename T> template<typename U = int> void X2<T>::f1() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}} function in class:PR8748::X2
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp2.cpp38 void f1(T) {} // expected-note{{explicit instantiation refers here}} function in namespace:N
43 template void f1(int); // expected-warning{{must occur in}}
H A Dp9-linkage.cpp47 inline void f1(T& t) { function
52 extern template void f1<>(int *&);
63 f1(ip);
65 f1(fp);
H A Dp9.cpp44 inline void f1(T& t) { function
49 extern template void f1<>(int *&);
57 f1(ip); // expected-note{{instantiation}}
58 f1(fp); // expected-note{{instantiation}}
/external/clang/test/CodeGen/
H A Dbuiltins-arm.c9 void f1(char *a, char *b) { function
H A Dinline2.c9 // CHECK-GNU89-LABEL: define i32 @f1()
10 // CHECK-C99-LABEL: define i32 @f1()
11 inline int f1(void);
12 int f1(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmangle-windows.c4 void __stdcall f1(void) {} function
H A Dregparm.c17 void FASTCALL f1(int i, int j, int k);
18 // CHECK-LABEL: define void @f1(i32 inreg %i, i32 inreg %j, i32 %k)
19 void f1(int i, int j, int k) { } function
H A Dtentative-decls.c24 int *f1() { function
/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp15 // CHECK-LABEL: define void @f1
17 extern "C" void f1() { function
H A Dconstructor-direct-call.cpp8 void f1() { function
H A Dconstructor-for-array-members.cpp12 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
13 ~S(){printf("S::~S(iS = %d f1 = %f)\n", iS, f1); }
15 float f1; member in struct:S
23 printf("ARR_S[%d].iS = %d ARR_S[%d].f1 = %f\n", i, ARR_S[i].iS, i, ARR_S[i].f1);
28 printf("MULTI_ARR[%d][%d][%d].iS = %d MULTI_ARR[%d][%d][%d].f1 = %f\n",
29 i,j,k, MULTI_ARR[i][j][k].iS, i,j,k, MULTI_ARR[i][j][k].f1);
H A Ddefault-arguments.cpp30 void f1() { function
H A Dmangle-variadic-templates.cpp22 template<typename ...Types> void f1() {} function
24 template void f1<>();
26 template void f1<int>();
28 template void f1<int, float>();
/external/clang/test/Index/
H A Dcomplete-exprs.c10 struct X __attribute__((deprecated)) f1 = { 17 }; variable in typeref:struct:X
11 void f2() { f1(17); }
54 // CHECK-CC4: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
64 // CHECK-CC7: VarDecl:{ResultType struct X}{TypedText f1} (50) (deprecated)
/external/clang/test/PCH/
H A Dstmts.h58 int f1(int x) { function
/external/clang/test/Parser/
H A Dasm-constraints-pr7869.c6 f1 (void) function

Completed in 320 milliseconds

1234567891011>>