HomeSort by relevance Sort by last modified time
    Searched refs:foo1 (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/clang/test/Sema/
implicit-cast-dump.c 3 void foo1(void*);
10 foo1(0);
attr-sentinel.c 7 void foo1 (int x, ...) ATTR; // expected-note 3 {{function has been explicitly marked sentinel here}}
14 #define FOOMACRO(...) foo1(__VA_ARGS__)
17 foo1(1, NULL); // OK
18 foo1(1, 0) ; // expected-warning {{missing sentinel in function call}}
33 foo1(3, &a, &b, &c); // expected-warning {{missing sentinel in function call}}
34 foo1(3, &a, &b, &c, (struct A*) 0);
  /external/clang/test/CodeGen/
weak-incomplete.c 4 void __attribute__((weak)) foo1(struct S);
5 void (*foo2)(struct S) = foo1;
dllimport-dllexport.c 3 void __attribute__((dllimport)) foo1();
4 void __attribute__((dllexport)) foo1(){} function
5 // CHECK: define dllexport void @foo1
sret.c 9 struct abc foo1(void);
13 struct abc dummy1 = foo1();
mips-byval-arg.c 10 // O32: define void @foo1(i32 %a0.coerce0, i32 %a0.coerce1, i32 %a0.coerce2)
11 // N64: define void @foo1(i64 %a0.coerce0, i32 %a0.coerce1)
13 void foo1(S0 a0) { function
mips64-nontrivial-return.cpp 15 D foo1(void) { function
  /ndk/tests/build/cpp-extensions/jni/
foo1.cc 3 extern int foo1(int x) { function in namespace:cpp
foo2.cp 3 extern int foo1(int);
6 return foo1(x) + 2;
  /sdk/emulator/qtools/tests/gtrace/
test.c 3 int foo1();
24 foo1();
36 foo1();
40 foo1();
45 foo1();
50 foo1();
55 foo1();
60 foo1();
65 foo1();
70 foo1();
110 int foo1() function
    [all...]
  /external/clang/test/SemaCXX/
compound-literal.cpp 6 void foo1() { function in namespace:PR7905
attr-print.cpp 17 // CHECK: void foo1() __attribute__((pure)) __attribute__((noinline));
18 void foo1() __attribute__((noinline, pure));
builtin-ptrtomember-overload-1.cpp 37 void foo1(C1 c1, int A::* pmf) { function
42 void foo1(C1 c1, int E::* pmf) { function
  /external/clang/test/CodeGenCXX/
fastcall.cpp 3 void __attribute__((fastcall)) foo1(int &y);
7 foo1(y);
  /external/clang/test/Driver/
at_file.c 17 foo1
  /external/clang/test/Parser/
asm.cpp 3 int foo1 asm ("bar1");
nested-namespaces-recovery.cpp 6 namespace foo1::foo2::foo3 { // expected-error {{nested namespace definition must define each namespace separately}}
11 return foo1::foo2::foo3::foo(x);
  /external/clang/test/CXX/temp/temp.param/
p9.cpp 8 void foo1(T) { } function
  /external/clang/test/PCH/Inputs/
chain-selectors1.h 8 void foo1() { function
  /external/llvm/test/Object/Inputs/
elfver.S 17 .symver foo1, foo@VER1
18 .globl foo1
19 .type foo1, @function
20 foo1: label
  /external/webkit/LayoutTests/storage/domstorage/script-tests/
remove-item.js 17 shouldBeUndefined("storage.foo1");
18 evalAndLog("storage.foo1 = 'bar'");
19 shouldBeEqualToString("storage.foo1", "bar");
20 evalAndLog("storage.removeItem('foo1')");
21 shouldBeUndefined("storage.foo1");
22 evalAndLog("storage.removeItem('foo1')");
23 shouldBeUndefined("storage.foo1");
  /external/chromium/testing/gmock/test/
gmock_leak_test_.cc 85 MockFoo* foo1 = new MockFoo; local
88 ON_CALL(*foo1, DoThis()).WillByDefault(Return());
92 // In order to test the leak detector, we deliberately leak foo1 and
  /external/compiler-rt/lib/tsan/lit_tests/
simple_stack2.cc 8 void __attribute__((noinline)) foo1() { function
16 foo1();
47 // CHECK-NEXT: #0 foo1{{.*}} {{.*}}simple_stack2.cc:9{{(:3)?}} ({{.*}})
  /external/clang/test/FixIt/
fixit-pmem.cpp 21 void foo1(int (S::*ps)(), S s, S* p) function
  /external/clang/test/Index/skip-parsed-bodies/
t.h 18 static inline int foo1() { function

Completed in 1306 milliseconds

1 2 3