Searched defs:f1 (Results 201 - 225 of 532) sorted by relevance

1234567891011>>

/external/clang/test/Parser/
H A Dcxx-stmt.cpp3 void f1() function
/external/clang/test/Sema/
H A Ddecl-in-prototype.c5 int f1(enum {AA,BB} E) { // expected-warning {{will not be visible outside of this function}} function
H A Dknr-def-call.c9 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
H A Dpragma-pack-2.c11 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...]
H A Dpragma-unused.c3 void f1(void) { function
H A Dwarn-unused-value.c87 void f1(struct s0 *a) { function
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} function
H A Dwarn-unused-parameters.cpp5 T f1(T x);
13 template<typename T> T X<T>::f1(T) { return T(); } function in class:X
21 x.f1(i);
/external/clang/test/SemaTemplate/
H A Danonymous-union.cpp19 void f1(T1<A> *S) { S->f0(); } // expected-note{{instantiation of member function}} function
H A Ddependent-sized_array.cpp13 void f1() { function
H A Dinstantiate-decl-init.cpp44 template<int N> void f1() { function
47 template<> void f1<2>();
/external/compiler-rt/test/builtins/Unit/
H A Dclear_cache_test.c64 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local
65 if ((*f1)() != 1)
H A Denable_execute_stack_test.c60 pfunc f1 = (pfunc)(uintptr_t)execution_buffer; local
61 if ((*f1)() != 1)
/external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
H A Dimbue.pass.cpp31 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
74 ios.register_callback(f1, 4);
90 ios.register_callback(f1, 4);
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.cons/
H A Ddtor.pass.cpp35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
79 b.register_callback(f1, 4);
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
H A Dimbue.pass.cpp37 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/
H A Dasync.pass.cpp35 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/
H A Dmove.pass.cpp52 void f1() function
60 std::set_terminate(f1);
/external/libcxx/test/utilities/function.objects/refwrap/refwrap.assign/
H A Dcopy_assign.pass.cpp52 functor1 f1; local
53 test(f1);
/external/libcxxabi/test/
H A Dcatch_class_02.cpp37 void f1() function
53 f1();
H A Dinherited_exception.cpp42 void f1() { function
70 f1();
88 f1();
106 f1();
/external/llvm/test/MC/AArch64/
H A Dldr-pseudo.s8 // CHECK-LABEL: f1:
9 f1: label
/external/skia/src/core/
H A DSkVertState.h21 int f0, f1, f2; member in struct:VertState
/external/valgrind/main/none/tests/s390x/
H A Dbfp-1.c7 volatile float f1, f2; variable
31 register float r1 asm("f1") = f1;
37 printf("%f + %f = %f\n", f1, f2, r1);
42 register float r1 asm("f1") = f1;
48 printf("%f - %f = %f\n", f1, f2, r1);
53 register float r1 asm("f1") = f1;
59 printf("%f * %f = %f\n", f1, f
[all...]
/external/chromium_org/chrome/browser/undo/
H A Dbookmark_undo_service_test.cc195 const BookmarkNode* f1 = local
197 model->Move(n3, f1, 0);
205 EXPECT_EQ(model->other_node()->GetChild(3), f1);
206 EXPECT_EQ(0, f1->child_count());
213 EXPECT_EQ(model->other_node()->GetChild(2), f1);
214 ASSERT_EQ(1, f1->child_count());
215 EXPECT_EQ(f1->GetChild(0), n3);
225 const BookmarkNode* f1 = model->AddFolder(model->other_node(), local
228 model->AddURL(f1, 0, ASCIIToUTF16("foo"), GURL("http://www.foo.com"));
229 model->SetTitle(f1, ASCIIToUTF1
[all...]

Completed in 311 milliseconds

1234567891011>>