/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.const/ |
copy_ctor.pass.cpp | 40 functor1 f1; local 41 test(f1);
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
catch_class_01.cpp | 25 void f1() function 35 f1();
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
FieldTest.java | 34 Field f1 = FieldTestHelper.class.getField("a"); local 36 assertEquals(f1, f2); 37 assertEquals(f1.hashCode(), f2.hashCode()); 41 Field f1 = FieldTestHelper.class.getField("a"); local 42 assertEquals(FieldTestHelper.class.getName().hashCode() ^ "a".hashCode(), f1.hashCode()); 46 Field f1 = FieldTestHelper.class.getField("a"); local 48 assertFalse(f1.equals(f2));
|
/external/v8/test/mjsunit/ |
arguments.js | 97 function f1(x, y) { function 108 f1(3, "five"); 171 function f1(x, y) { 179 assertArrayEquals([0], f1()); 180 assertArrayEquals([1, void 0], f1(3)); 181 assertArrayEquals([2, 5, 5], f1(3, 5)); 182 assertArrayEquals([3, 5, 5, 7], f1(3, 5, 7));
|
/art/test/474-checker-boolean-input/src/ |
Main.java | 34 public static boolean f1; field in class:Main 38 return (x == 42) ? f1 : f2; 97 f1 = true;
|
/bionic/tests/libs/ |
dlopen_testlib_ifunc.c | 46 const char* f1() { function 60 return choice == NULL ? f1 : f2;
|
/external/clang/test/Analysis/diagnostics/ |
undef-value-param.c | 48 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')}} [all...] |
/external/clang/test/Analysis/ |
method-call.cpp | 22 void f1() { function
|
stackaddrleak.c | 12 void f1() { function
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
injected-class-name.cpp | 12 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/ |
p9-0x.cpp | 21 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/ |
p2.cpp | 38 void f1(T) {} // expected-note{{explicit instantiation refers here}} function in namespace:N 43 template void f1(int); // expected-warning{{must occur in}}
|
/external/clang/test/CodeGen/ |
2007-09-28-PackedUnionMember.c | 5 unsigned long f1; member in struct:H 19 unsigned long f1; member in struct:E
|
builtins-arm.c | 9 void f1(char *a, char *b) { function
|
inline2.c | 9 // 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()
|
mangle-windows.c | 13 void __stdcall f1(void) {} function 15 // X64: define void @f1( 17 // ELF64: define void @f1(
|
tentative-decls.c | 24 int *f1() { function
|
windows-struct-abi.c | 3 struct f1 { struct 7 struct f1 return_f1(void) { while (1); } 11 void receive_f1(struct f1 a0) { } 13 // CHECK: define void @receive_f1(%struct.f1* byval align 4 %a0)
|
/external/clang/test/CodeGenCXX/ |
alloca-align.cpp | 15 // CHECK-LABEL: define void @f1 17 extern "C" void f1() { function
|
call-with-static-chain.cpp | 14 int f1(A, A, A, A); 24 // CHECK32: call i32 bitcast (i32 (i32, i32, i32, i32, i32, i32, i32, i32)* @f1 to i32 (i8*, i32, i32, i32, i32, i32, i32, i32, i32)*)(i8* nest bitcast (i32 (i32, i32, i32, i32, i32, i32, i32, i32)* @f1 to i8*) 25 // CHECK64: call i32 bitcast (i32 (i64, i64, i64, i64, i64, i64, %struct.A*)* @f1 to i32 (i8*, i64, i64, i64, i64, i64, i64, %struct.A*)*)(i8* nest bitcast (i32 (i64, i64, i64, i64, i64, i64, %struct.A*)* @f1 to i8*) 26 __builtin_call_with_static_chain(f1(a, a, a, a), f1); local
|
conditional-temporaries.cpp | 21 void f1(bool b) { function in namespace:__anon6307 30 f1(true); 31 f1(false);
|
constructor-direct-call.cpp | 8 void f1() { function
|
constructor-for-array-members.cpp | 12 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);
|
default-arguments.cpp | 30 void f1() { function
|
mangle-variadic-templates.cpp | 22 template<typename ...Types> void f1() {} function 24 template void f1<>(); 26 template void f1<int>(); 28 template void f1<int, float>();
|