HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 26 - 50 of 709) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/
p8.cpp 11 void f2(int (*)());
18 f2(a3);
  /external/clang/test/CodeGen/
regparm-flag.c 6 void f2(int a, int b) __attribute((regparm(0)));
12 // CHECK: call void @f2(i32 1, i32 2)
13 f2(1, 2);
18 // CHECK: declare void @f2(i32, i32)
2009-06-18-StaticInitTailPadPack.c 8 unsigned short f2; member in struct:Bar
13 struct Bar f2; member in struct:Baz
17 struct Baz f2; member in struct:Qux
attr-availability.c 5 // CHECK-10_4: define hidden void @f2
6 // CHECK-10_5: define hidden void @f2
7 // CHECK-10_6: define hidden void @f2
8 void f2();
9 void f2() { } function
30 f2();
bitfield-assign.c 19 unsigned f2 : 2; member in struct:s0
34 void f2(void) { function
36 if ((s.f2 = 3) != 3) g0();
inline2.c 14 // CHECK-GNU89: define i32 @f2()
15 // CHECK-C99: define i32 @f2()
16 int f2(void);
17 inline int f2(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
microsoft-call-conv-x64.c 4 void __stdcall f2(void);
12 f2();
13 // CHECK: call void @f2()
18 void (__stdcall *pf2)(void) = f2;
2008-07-31-asm-labels.c 31 int f2() { function
PR2743-reference-missing-static.c 16 void f2() { e2(); } function
array.c 8 void f2() { function
  /external/clang/test/CodeGenCXX/
friend-redecl.cpp 5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); }
operator-new.cpp 21 void *f2(long N) { function
convert-to-fptr.cpp 11 int f2(float arg) { return int(arg); }; function
19 operator fp2() { return f2; }
29 operator fr2() { return f2; }
  /external/clang/test/ASTMerge/Inputs/
function2.c 4 void f2(int, int);
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 3 static int f2(int);
  /external/libvpx/libvpx/tools/
author_first_release.sh 13 cut -f2- |
15 done | sort -k2 | uniq -f2
  /external/llvm/test/MC/ELF/
cfi-sections.s 11 f2: label
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.once/thread.once.onceflag/
copy.fail.cpp 21 std::once_flag f2(f);
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/set.new.handler/
get_new_handler.pass.cpp 16 void f2() {} function
23 std::set_new_handler(f2);
24 assert(std::get_new_handler() == f2);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java 75 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getDateInstance(); local
76 assertTrue("Wrong class", f2.getClass() == SimpleDateFormat.class);
77 assertTrue("Wrong default", f2.equals(DateFormat.getDateInstance(
79 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
82 f2.format(new Date()).getClass() == String.class);
92 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
94 assertTrue("Wrong class1", f2.getClass() == SimpleDateFormat.class);
95 assertTrue("Wrong default1", f2.equals(DateFormat.getDateInstance(
97 assertTrue("Wrong symbols1", f2.getDateFormatSymbols().equals(
100 f2.format(new Date()).getClass() == String.class)
142 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getDateInstance( local
187 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
199 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
248 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
301 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getInstance(); local
325 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getTimeInstance(); local
339 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
389 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getTimeInstance( local
    [all...]
  /external/clang/test/Sema/
warn-missing-prototypes.c 32 int f2(int);
33 int f2();
35 int f2(int x) { return x; } function
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
locals.cpp 8 // CHECK: s = {f = 0.00100000005, f2 = {10000, 100.5}}
18 float f2[2]; member in struct:float_struct
41 s.f2[0] = 1e4f;
42 s.f2[1] = 100.5f;
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 17 void f2() {} function
32 // verify f1 was replace with f2
33 std::set_unexpected(f2);
34 assert(std::get_unexpected() == f2);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p3.cpp 5 void (*f2)(int = 17) // expected-error {{default arguments can only be specified}}
p4.cpp 34 // FIXME: make these "f2"s into "f"s, then fix our scoping issues
35 void f2(int, int);
36 void f2(int, int = 7);
38 f2(3); // OK, calls f(3, 7)
53 f2(6); // okay

Completed in 1398 milliseconds

12 3 4 5 6 7 8 91011>>