Searched refs:foo1 (Results 1 - 25 of 69) sorted by relevance

123

/external/clang/test/Sema/
H A Dimplicit-cast-dump.c3 void foo1(void*);
10 foo1(0);
H A Dattr-sentinel.c7 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);
H A Dcrash-invalid-array.c21 void foo1(int a[2][*]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}} function
/external/clang/test/CodeGen/
H A Dweak-incomplete.c4 void __attribute__((weak)) foo1(struct S);
5 void (*foo2)(struct S) = foo1;
H A Ddllimport-dllexport.c3 void __attribute__((dllimport)) foo1();
4 void __attribute__((dllexport)) foo1(){} function
5 // CHECK: define dllexport void @foo1
H A Dsret.c9 struct abc foo1(void);
13 struct abc dummy1 = foo1();
H A Dmips-byval-arg.c10 // 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
H A Dmips64-nontrivial-return.cpp15 D foo1(void) { function
/external/clang/test/CodeGenCXX/
H A Dfastcall.cpp3 void __attribute__((fastcall)) foo1(int &y);
7 foo1(y);
/external/clang/test/Driver/
H A Dat_file.c21 foo1
/external/clang/test/Parser/
H A Dasm.cpp3 int foo1 asm ("bar1");
H A Dnested-namespaces-recovery.cpp6 namespace foo1::foo2::foo3 { // expected-error {{nested namespace definition must define each namespace separately}}
11 return foo1::foo2::foo3::foo(x);
/external/chromium_org/ppapi/generators/test_gen_pnacl/
H A Dtest_interfaces.idl44 * return iface->foo1(a, *b);
49 int32_t foo1(int32_t a, [in] some_struct b);
57 * return iface->foo1(a, *b);
62 int32_t foo1(int32_t a, [in] some_union b);
68 int32_t foo1(int32_t a, [in] some_struct2 b);
77 * return iface->foo1(*a);
90 int32_t foo1([in] some_struct a);
95 int32_t foo1([in] some_struct[] a);
101 int32_t foo1([in] some_struct2 a);
110 * ((int32_t (*)(struct some_struct* a))iface->foo1);
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp9.cpp8 void foo1(T) { } function
/external/clang/test/PCH/Inputs/
H A Dchain-selectors1.h8 void foo1() { function
/external/llvm/test/Object/Inputs/
H A Delfver.S17 .symver foo1, foo@VER1
18 .globl foo1
19 .type foo1, @function
20 foo1: label
/external/chromium/testing/gmock/test/
H A Dgmock_leak_test_.cc85 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/clang/test/SemaCXX/
H A Dbuiltin-ptrtomember-overload-1.cpp37 void foo1(C1 c1, int A::* pmf) { function
42 void foo1(C1 c1, int E::* pmf) { function
H A Dattr-print.cpp17 // CHECK: void foo1() __attribute__((pure)) __attribute__((noinline));
18 void foo1() __attribute__((noinline, pure));
/external/compiler-rt/lib/tsan/lit_tests/
H A Dsimple_stack2.cc8 void __attribute__((noinline)) foo1() { function
16 foo1();
47 // CHECK-NEXT: #0 foo1{{.*}} {{.*}}simple_stack2.cc:9{{(:3)?}} ({{.*}})
/external/chromium_org/v8/test/webkit/
H A Ddfg-constant-fold-logical-not-branch.js28 function foo1(o) { function
51 shouldBe("foo1(new Stuff())", "43");
/external/clang/test/FixIt/
H A Dfixit-pmem.cpp21 void foo1(int (S::*ps)(), S s, S* p) function
/external/clang/test/Index/skip-parsed-bodies/
H A Dt.h18 static inline int foo1() { function
/external/llvm/test/MC/ELF/
H A Dtls.s5 leaq foo1@TLSGD(%rip), %rdi
26 // CHECK: Name: foo1 (1)
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMapEntryTest.java62 Entry<String, Integer> foo1 = entry("foo", 1);
63 assertEquals(foo1, foo1);
64 assertEquals(control("foo", 1), foo1);
67 assertFalse(foo1.equals(control("bar", 1)));
68 assertFalse(foo1.equals(new Object()));
69 assertFalse(foo1.equals(null));

Completed in 884 milliseconds

123