/external/clang/test/CodeGenCXX/ |
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-subst.cpp | 40 template <typename T> void f1(typename V<T>::U, V<T>) { } function 43 template void f1<int>(int, V<int>);
|
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>();
|
/external/clang/test/PCH/ |
stmts.h | 58 int f1(int x) { function
|
/external/clang/test/Parser/ |
asm-constraints-pr7869.c | 6 f1 (void) function
|
cxx-stmt.cpp | 3 void f1() function
|
/external/clang/test/Sema/ |
decl-in-prototype.c | 5 int f1(enum {AA,BB} E) { // expected-warning {{will not be visible outside of this function}} function
|
knr-def-call.c | 9 void f1(a, b) int a, b; {} function 11 f1(1, 2, 3); // expected-warning{{too many arguments}} 18 f3 t3(int b) { return b? f0 : f1; } // okay
|
pragma-pack-2.c | 11 int f1; member in struct:s0 13 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1]; 18 int f1; member in struct:s1 20 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1]; 26 int f1; member in struct:s3_0 31 int f1; member in struct:s3_1 33 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1]; 34 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1]; 40 int f1; member in struct:s4_0 45 int f1; member in struct:s4_1 56 } f1; member in struct:s5_0 [all...] |
pragma-unused.c | 3 void f1(void) { function
|
warn-unused-value.c | 87 void f1(struct s0 *a) { function
|
/external/clang/test/SemaCXX/ |
composite-pointer-type.cpp | 18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) { function 55 bool f1(bool b, void **p, const void **q) { function
|
type-definition-in-specifier.cpp | 23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} function
|
/external/clang/test/SemaTemplate/ |
anonymous-union.cpp | 19 void f1(T1<A> *S) { S->f0(); } // expected-note{{instantiation of member function}} function
|
dependent-sized_array.cpp | 13 void f1() { function
|
fun-template-def.cpp | 19 T f1(T t1, U u1, int i1) function
|
instantiate-decl-init.cpp | 44 template<int N> void f1() { function 47 template<> void f1<2>();
|
/external/compiler-rt/test/builtins/Unit/ |
clear_cache_test.c | 64 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local 65 if ((*f1)() != 1)
|
/external/icu/icu4c/source/layout/ |
AnchorTables.cpp | 21 const Format1AnchorTable *f1 = (const Format1AnchorTable *) this; local 23 f1->getAnchor(fontInstance, anchor); 45 const Format1AnchorTable *f1 = (const Format1AnchorTable *) this; local 47 f1->getAnchor(fontInstance, anchor);
|
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/ |
imbue.pass.cpp | 37 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function 80 b.register_callback(f1, 4);
|
/external/libcxx/test/thread/futures/futures.async/ |
async.pass.cpp | 35 int& f1() function 100 std::future<int&> f = std::async(f1); 108 std::future<int&> f = std::async(std::launch::async, f1); 116 std::future<int&> f = std::async(std::launch::any, f1); 124 std::future<int&> f = std::async(std::launch::deferred, f1);
|
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/ |
move.pass.cpp | 52 void f1() function 60 std::set_terminate(f1);
|
/external/libcxxabi/test/ |
catch_class_02.cpp | 37 void f1() function 53 f1();
|
inherited_exception.cpp | 42 void f1() { function 70 f1(); 88 f1(); 106 f1();
|