Searched refs:f2 (Results 151 - 175 of 532) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dmangle-unnamed.cpp19 inline int f2() { function
25 int f3() { return f2(); }
H A Dincomplete-types.cpp28 A *f2() { function in namespace:incomplete_type_refs
H A Dmangle-extern-local.cpp21 int f2() { function in namespace:N
/external/clang/test/Sema/
H A Dattr-availability-ios.c5 void f2(int) __attribute__((availability(ios,introduced=2.0,deprecated=3.0))); // expected-note {{'f2' declared here}}
16 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in iOS 3.0}}
H A Dattr-availability-macosx.c5 void f2(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.5))); // expected-note {{'f2' declared here}}
13 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in OS X 10.5}}
H A Dvector-cast.c33 void f2(t2 X); // expected-note{{passing argument to parameter 'X' here}}
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' to parameter of type 't2'}}
H A Dwarn-unused-function.c6 static void f2() {} function
7 static void f1() {f2();} // expected-warning{{unused}}
H A Dsentinel-attribute.c5 void f2(int a, ...) __attribute__ ((sentinel(1)));
H A Dext_vector_casts.c49 void inc(float2 f2) { argument
50 f2++; // expected-error{{cannot increment value of type 'float2'}}
51 __real f2; // expected-error{{invalid type 'float2' to __real operator}} local
/external/clang/test/SemaCXX/
H A Dattr-nonnull.cpp27 __attribute__((nonnull(2))) void f2(int i, int * const &p);
31 f2(0, 0); // expected-warning{{null passed to a callee which requires a non-null argument}}
H A Dattr-noreturn.cpp23 void f2() { f1(f0); } function
46 f3(f2); // expected-error{{no matching function for call}}
H A Dborland-extensions.cpp11 int _pascal f2();
28 i = f2();
H A Dconstructor.cpp68 void f2();
82 void A::S::f2() {} function in class:A::S
H A Dqualified-id-lookup.cpp58 struct f2 { struct in namespace:N
61 void f2();
66 int i2 = N::f2::member;
67 typedef struct N::f2 type2;
/external/compiler-rt/test/Unit/
H A Denable_execute_stack_test.c67 pfunc f2 = (pfunc)(uintptr_t)execution_buffer; local
68 if ((*f2)() != 2)
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-137181.js68 function f2(x) function
75 actual = f2(0); // (bug: Rhino was returning -1)
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
H A Ddefinition-1.js42 function f2() { f3 = function() { return "passed!" }; return f3(); } function
50 'function f2() { f3 = function { return "passed!" }; return f3() }; f2()',
52 f2() );
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
H A Dfunction-002.js41 * dec2 = "function f2(){1,2}";
46 * 1,2, giving function f2(){}. This should be legal by the testsuite's lights."
61 dec2 = "function f2(){var y; f1(1,2); y=new Date(); print(y.toString())}";
82 "typeof f2",
84 typeof f2 );
90 "f2.toString() == dec2",
92 StripSpaces(f2.toString()) == StripSpaces(dec2));
/external/clang/test/CodeGen/
H A Dbuiltins-nvptx.c150 void nvvm_math(float f1, float f2, double d1, double d2) { argument
152 float t1 = __nvvm_fmax_f(f1, f2);
154 float t2 = __nvvm_fmin_f(f1, f2);
158 float t4 = __nvvm_rcp_rn_f(f2);
H A Dbitfield-2.c210 _Bool f2 : 1; member in struct:s5
219 return (a0->f0 = 0xF) ^ (a0->f1 = 0xF) ^ (a0->f2 = 0xF);
222 return (a0->f0 += 0xF) ^ (a0->f1 += 0xF) ^ (a0->f2 += 0xF);
231 res ^= g5.f0 ^ g5.f1 ^ g5.f2;
233 res ^= g5.f0 ^ g5.f1 ^ g5.f2;
297 int f2 : 4; member in struct:s8
304 return a0->f0 ^ a0 ->f2 ^ a0->f3;
307 return (a0->f0 = 0xFD) ^ (a0->f2 = 0xFD) ^ (a0->f3 = 0xFD);
310 return (a0->f0 += 0xFD) ^ (a0->f2 += 0xFD) ^ (a0->f3 += 0xFD);
319 res ^= g8.f0 ^ g8.f2
334 unsigned f2 : 7; member in struct:s9
[all...]
/external/clang/test/FixIt/
H A Ddereference-addressof.c12 void f2(int *aPtr, int a, float *bPtr, char c) { function
/external/clang/test/Index/
H A Dcomplete-exprs.c11 void f2() { f1(17); } function
65 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f2}{LeftParen (}{RightParen )} (50)
/external/clang/test/Parser/
H A Dcxx-stmt.cpp13 void f2() function
H A Dattributes.c18 int f2(y, __attribute__(()) x); // expected-error {{expected identifier}}
32 void g2(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}}
38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dpartial-ordering.cpp56 int &f2(T1, T2, Rest...);
58 float &f2(...);
61 int &ir1 = f2(1, 2.0, 'a');

Completed in 827 milliseconds

1234567891011>>