HomeSort by relevance Sort by last modified time
    Searched defs:foo (Results 1476 - 1500 of 3525) sorted by null

<<51525354555657585960>>

  /external/clang/test/Sema/
redefinition.c 7 int foo(x) { function
void_arg.c 6 void foo() { function
warn-sizeof-array-decay.c 4 char foo[10]; local
9 (void)sizeof(foo - 20); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
11 (void)sizeof(foo + x); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
14 (void)sizeof(foo - qux); // no-warning
16 (void)sizeof(foo, x); // no-warning
17 (void)sizeof(x, foo); // expected-warning{{sizeof on pointer operation will return size of 'char *' instead of 'char [10]'}}
  /external/clang/test/SemaCXX/
PR8884.cpp 4 friend struct foo;
5 static struct foo& baz ();
7 struct foo { struct
access-member-pointer.cpp 5 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'}}
attr-visibility.cpp 4 void foo() { function
8 void foo<int>();
11 void foo<int>();
15 void foo<int>() { function
cxx0x-constexpr-const.cpp 6 void foo(void) { function
cxx0x-delegating-ctors.cpp 3 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::foo (int i) : i(i) 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) : function in class:foo
42 foo::foo (void*) : foo(4.0f) { function in class:foo
    [all...]
cxx11-thread-local-print.cpp 10 // CHECK: void foo() {
13 void foo() { function
defaulted-ctor-loop.cpp 5 struct foo;
7 bar(foo&);
9 struct foo { struct
11 foo() function in struct:foo
member-expr-static.cpp 16 void foo( void ) { function
ms-overload-entry-point.cpp 16 int foo() { function
pr13353.cpp 2 struct foo { struct
6 class zed : public foo {
11 const_cast<foo *>(this->g())->bar();
pragma-weak.cpp 3 #pragma weak foo macro
4 static void foo();
6 void foo() { function
predefined-expr.cpp 5 auto foo() { function
6 static_assert(sizeof(__func__) == 4, "foo");
7 static_assert(sizeof(__FUNCTION__) == 4, "foo");
8 static_assert(sizeof(__PRETTY_FUNCTION__) == 11, "auto foo()");
unused-functions.cpp 4 static int foo(int x) { return x; } function
7 T get_from_foo(T y) { return foo(y); }
vector-no-lax.cpp 5 vSInt32 foo (vUInt32 a) { function
warn-member-not-needed.cpp 7 void foo() { function in class:__anon8173::A
  /external/clang/test/SemaTemplate/
crash-8204126.cpp 4 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'}}
function-template-specialization-noreturn.cpp 14 void foo[[noreturn]]();
18 void A<0>::foo() {} // expected-warning{{function declared 'noreturn' should not return}} function in class:PR21942::A
instantiate-elab-type-specifier.cpp 6 struct foo {}; struct in struct:Base
7 int foo; member in struct:Base
11 typedef struct Base<T>::foo type;
nested-incomplete-class.cpp 4 struct foo { struct
15 struct foo<T>::bar {
20 foo<int>().fn();
pragma-ms_struct.cpp 7 template<int x> struct foo { struct
11 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1];
  /external/compiler-rt/test/BlocksRuntime/
constassign.c 18 void foo(void) { printf("I'm in foo\n"); } function
22 void (*const fptr)(void) = foo;
  /external/compiler-rt/test/asan/TestCases/Darwin/
dyld_insert_libraries_remove.cc 38 void foo() {} function

Completed in 1087 milliseconds

<<51525354555657585960>>