Searched defs:foo (Results 226 - 250 of 776) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dobjc_exprs.h2 @protocol foo; variable
6 typedef typeof(@"foo" "bar") objc_string;
8 typedef typeof(@protocol(foo)) objc_protocol;
11 typedef typeof(@selector(foo:bar:)) objc_selector_twoArg;
15 typedef typeof(id<foo>) objc_id_protocol_ty;
18 typedef typeof(itf<foo>*) objc_qual_interface_ty;
H A Dreinclude1.h6 int foo; variable
7 #define foo foo macro
/external/clang/test/Parser/
H A DCompoundStmtScope.c3 void foo() { function
H A Dcxx0x-lambda-expressions.cpp6 int foo, bar; local
10 [foo+] {}; // expected-error {{expected ',' or ']' in lambda capture list}}
11 [foo,&this] {}; // expected-error {{'this' cannot be captured by reference}}
18 [foo,bar] () { return 3; };
19 [=,&foo] () {};
20 [&,foo] () {};
H A Ddesignator.c8 struct foo { struct
12 struct foo Y[10] = {
H A Dnamespaces.cpp6 void foo() { function
/external/clang/test/Preprocessor/
H A Dc90.c6 #define foo`bar /* expected-error {{whitespace required after macro name}} */ macro
H A Dmacro_fn_lparen_scan.c1 // RUN: %clang_cc1 -E %s | grep 'noexp: foo y'
3 // RUN: %clang_cc1 -E %s | grep 'noexp2: foo nonexp'
6 #define A foo
7 #define foo() abc macro
10 // This should not expand to abc, because the foo macro isn't followed by (.
20 // This should be 'foo nonexp'
H A Dmacro_paste_msextensions.c4 // int foo;
8 int foo; variable
10 // CHECK: int foo;
30 #define foo(x) abc(x) macro
31 #define bar(y) foo(##baz(y))
/external/clang/test/Sema/
H A DPR2923.c8 // because FunctionDecl::getNumParams() just used the type of foo to determine
11 int foo(int x, int y) { return x + y; } function
12 extern typeof(foo) bar;
H A Dblock-return.c5 CL foo() { function
H A Drdr6094103-unordered-compare-promote.c3 int foo (double x, long double y) { function
H A Dvoid_arg.c6 void foo() { function
/external/clang/test/SemaCXX/
H A DPR8884.cpp4 friend struct foo;
5 static struct foo& baz ();
7 struct foo { struct
H A Daccess-member-pointer.cpp5 class B : private A { public: void foo(); }; // expected-note {{declared private here}}
6 void B::foo() { function in class:B
7 (void)static_cast<void(A::*)()>(&B::foo);
10 (void)static_cast<void(A::*)()>(&B::foo); // expected-error {{cannot cast 'B' to its private base class 'A'}}
H A Dcxx0x-constexpr-const.cpp6 void foo(void) { function
H A Dcxx0x-delegating-ctors.cpp3 struct foo { struct
5 foo();
6 foo(int);
7 foo(int, int);
8 foo(bool);
9 foo(char);
10 foo(const float*);
11 foo(const float&);
12 foo(void*);
16 foo function in class:foo
19 foo::foo () : foo(-1) { function in class:foo
22 foo::foo (int, int) : foo() { function in class:foo
25 foo::foo (bool) : foo(true) { // expected-error{{creates a delegation cycle}} function in class:foo
29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}} function in class:foo
32 foo::foo (const float &f) : foo(&f) { //expected-error{{creates a delegation cycle}} \\ function in class:foo
36 foo::foo (char) : i(3), foo(3) { // expected-error{{must appear alone}} function in class:foo
40 foo::foo (void*) : foo(4.0f) { function in class:foo
[all...]
H A Ddefaulted-ctor-loop.cpp5 struct foo;
7 bar(foo&);
9 struct foo { struct
11 foo() function in struct:foo
H A Dmember-expr-static.cpp15 void foo( void ) { function
H A Dunused-with-error.cpp4 static void foo(int *X) { // expected-note {{candidate}} function
7 foo(Y); // expected-error {{no matching function for call}}
/external/clang/test/SemaTemplate/
H A Dcrash-8204126.cpp4 template<int> template<typename T> friend void foo(T) {} // expected-error{{extraneous template parameter list}} function in struct:A
5 void bar() { foo(0); } // expected-error{{use of undeclared identifier 'foo'}}
H A Dinstantiate-elab-type-specifier.cpp5 struct foo {}; struct in struct:Base
6 int foo; member in struct:Base
10 typedef struct Base<T>::foo type;
/external/llvm/test/MC/ELF/
H A Dalias-reloc.s5 .globl foo
6 foo: label
7 bar = foo
H A Ddiff.s4 foo: label
9 mov zed+(bar-foo), %eax
H A Ddiff2.s6 foo: label
13 mov zed+(bar-foo), %eax

Completed in 192 milliseconds

1234567891011>>