HomeSort by relevance Sort by last modified time
    Searched defs:foo (Results 1251 - 1275 of 2113) sorted by null

<<51525354555657585960>>

  /external/clang/test/Parser/
attributes.c 6 foo(void) { function
builtin_classify_type.c 3 struct foo { int a; }; struct
9 struct foo s;
cxx-default-delete.cpp 13 struct foo { struct
14 foo() = default;
15 ~foo() = delete;
cxx-reference.cpp 8 void foo(int &a) { function
  /external/clang/test/Preprocessor/
pragma_microsoft.c 5 #define FOO 1
8 #pragma comment(linker,"foo=" FOO) // expected-error {{pragma comment requires parenthesized identifier and optional string}}
13 #pragma comment(foo) // expected-error {{unknown kind of pragma comment}}
15 #define foo compiler macro
16 #pragma comment(foo) // macro expand kind.
17 #pragma comment(foo) x // expected-error {{pragma comment requires}}
19 #pragma comment(user, "foo\abar\nbaz\tsome thing")
58 #pragma include_alias("foo.h", <bar.h>) // expected-warning {{double-quoted include "foo.h" cannot be aliased to angle-bracketed include <bar.h>}
    [all...]
  /external/clang/test/Sema/
annotate.c 3 void __attribute__((annotate("foo"))) foo(float *a) { function
9 int w = __builtin_annotation(z, "foo");
10 float b = __builtin_annotation(*a, "foo"); // expected-error {{first argument to __builtin_annotation must be an integer}}
atomic-requires-library-error.c 4 struct foo { struct
12 struct foo bigThing;
13 _Atomic(struct foo) bigAtomic;
16 struct foo f = {0};
26 struct foo f = __c11_atomic_load(&bigAtomic, 5); // expected-error {{atomic load requires runtime support that is not available for this target}}
crash-invalid-array.c 18 void foo(int a[*][2]) {(void)a[0][1]; } // expected-error {{variable length array must be bound in function definition}} function
deref.c 4 foo (void) function
init-vector.c 14 vector_t foo(v4f_t p) function
static-assert.c 4 _Static_assert("foo", "string is nonzero");
12 void foo(void) { function
  /external/clang/test/SemaCXX/
PR12481.cpp 17 FooTable* foo = new FooTable; variable
builtin-ptrtomember-overload.cpp 15 void foo(C c, B b, int A::* pmf) { function
copy-constructor-error.cpp 13 class foo { class
14 foo(foo&, int); // expected-note {{previous}}
15 foo(int); // expected-note {{previous}}
16 foo(const foo&); // expected-note {{previous}}
19 foo::foo(foo&, int = 0) { } // expected-error {{makes this constructor a copy constructor}} function in class:foo
20 foo::foo(int = 0) { } // expected-error {{makes this constructor a default constructor} function in class:foo
21 foo::foo(const foo& = 0) { } \/\/expected-error {{makes this constructor a default constructor}} function in class:foo
    [all...]
illegal-member-initialization.cpp 28 struct foo { struct
30 foo() : a(xxx()) {} // no error here. function in struct:foo
ptrtomember.cpp 9 int foo(int S::* ps, S *s) function
warn-func-not-needed.cpp 7 void foo() { function in namespace:test1
warn-variable-not-needed.cpp 6 int foo(void) { function in namespace:test1
15 struct foo : bah { struct in namespace:test2::__anon23241
19 void foo::zed() {
22 char foo::bar=0;
25 return new foo();
  /external/clang/test/SemaTemplate/
inject-templated-friend.cpp 30 typedef struct Foo {} Foo;
32 inline std_ostream& operator << (std_ostream&, const Streamer<Foo>&);
34 std_ostream& operator << (std_ostream& o, const Streamer<Foo>&) // expected-note{{is here}}
42 void Streamer<Foo>::operator () (std_ostream& o) const // expected-note{{requested here}}
48 Foo foo; local
49 cout << foo; local
member-inclass-init-value-dependent.cpp 4 template<int Flags> struct foo { struct
9 foo<4> bar;
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test.cc 17 static void foo() {} function
24 t2.Call(foo);
  /external/compiler-rt/test/asan/TestCases/Posix/
init-order-dlopen.cc 26 int foo() { function
29 int global = foo();
  /external/compiler-rt/test/tsan/
deep_stack1.cc 11 static void foo() { function
28 F = foo;
42 // CHECK: #100 foo
longjmp3.cc 13 void foo(jmp_buf env) { function
32 foo(env);
longjmp4.cc 16 void foo(jmp_buf env) { function
35 foo(env);

Completed in 1237 milliseconds

<<51525354555657585960>>