HomeSort by relevance Sort by last modified time
    Searched refs:foo (Results 101 - 125 of 1512) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/PCH/
cxx0x-default-delete.cpp 10 struct foo { struct
11 foo() = default;
17 foo::foo() { } // expected-error{{definition of explicitly defaulted default constructor}} function in class:foo
18 foo f;
  /external/clang/test/Parser/
types.c 9 typedef struct foo { int x; } foo; typedef in typeref:struct:foo
11 foo *foo; local
12 foo->x = 0;
check_cast.c 2 struct foo { struct
7 struct foo xxx;
10 xxx = (struct foo)1; // expected-error {{used type 'struct foo' where arithmetic or pointer type is required}}
11 i = (int)xxx; // expected-error {{operand of type 'struct foo' where arithmetic or pointer type is required}}
  /external/mesa3d/src/glsl/glcpp/tests/
050-if-defined.c 1 #if defined foo
6 #define foo macro
7 #if defined foo
12 #undef foo macro
13 #if defined foo
065-if-defined-parens.c 1 #if defined(foo)
6 #define foo macro
7 #if defined ( foo )
12 #undef foo macro
13 #if defined (foo)
004-define-recursive.c 1 #define foo bar macro
3 #define baz foo
4 foo
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 5 void foo(int* i, int *j=(false)) // expected-warning{{ initialization of pointer of type 'int *' to null from a constant boolean expression}} function
7 foo(false); // expected-warning{{ initialization of pointer of type 'int *' to null from a constant boolean expression}}
8 foo((int*)false); // no-warning: explicit cast
9 foo(0); // no-warning: not a bool, even though its convertible to bool
11 foo(false == true); // expected-warning{{ initialization of pointer of type 'int *' to null from a constant boolean expression}}
12 foo((42 + 24) < 32); // expected-warning{{ initialization of pointer of type 'int *' to null from a constant boolean expression}}
15 foo(kFlag); // expected-warning{{ initialization of pointer of type 'int *' to null from a constant boolean expression}}
warn-overloaded-virtual.cpp 4 virtual void foo(int); // expected-note {{declared here}}
5 virtual void foo(); // expected-note {{declared here}}
9 void foo(float); // expected-warning {{hides overloaded virtual functions}}
13 void foo(); // expected-note {{declared here}}
17 virtual void foo(void*); // expected-note {{declared here}}
21 virtual void foo(int); // expected-warning {{hides overloaded virtual functions}}
25 virtual void foo(int);
26 virtual void foo();
30 using B3::foo;
31 void foo(float)
48 void Base::foo(int) { } function in class:PR9182::Base
    [all...]
exception-spec-no-exceptions.cpp 9 void foo() throw(int);
10 void foo() throw();
16 virtual void foo() throw();
20 virtual void foo() throw(int);
28 void foo() throw(int);
30 foo();
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p11.cpp 14 namespace ns { void foo(); } // expected-note {{target of using declaration}}
15 int foo(); // expected-note {{conflicting declaration}}
16 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
22 int foo(); // expected-error {{declaration conflicts with target of using declaration already in scope}}
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
28 int foo(); // expected-note {{conflicting declaration}}
29 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
33 using ns::foo; //expected-note {{using declaration}
    [all...]
  /external/clang/test/CodeGen/
2002-02-13-TypeVarNameCollision.c 7 typedef struct foo { struct
9 } FOO;
11 static FOO foo[100]; variable
14 return foo[4].Y;
2007-04-24-VolatileStructCopy.c 4 struct foo { struct
8 void copy(volatile struct foo *p, struct foo *q) {
2010-01-18-Inlined-Debug.c 4 static inline int foo(double) __attribute__ ((always_inline));
5 static inline int foo(double __x) { return __x; } function
8 foo(x);
2004-03-07-ExternalConstant.c 5 int foo () { function
  /external/clang/test/CodeGenCXX/
fp16-overload.cpp 3 extern int foo(float x);
4 extern int foo(double x);
10 int bar (void) { return foo(a); }
  /dalvik/tests/010-instance/src/
X.java 5 int foo() { method in class:X
  /dalvik/tests/042-new-instance/src/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /dalvik/tests/042-new-instance/src2/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /dalvik/tests/075-verification-error/src/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /dalvik/tests/075-verification-error/src2/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /dalvik/tests/089-jumbo-opcodes/src/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /dalvik/tests/089-jumbo-opcodes/src2/
MaybeAbstract.java 19 int foo() { return 0; } method in class:MaybeAbstract
  /development/ndk/tests/prebuilt-library/jni/foo/
foo.h 4 extern int foo(void);
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p3.cpp 7 class Foo {
10 void foo(const Foo &foo);
14 enum E { foo = 0 }; enumerator in enum:test0::Test::E
17 foo(A::Foo()); // expected-error {{not a function}}
  /external/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 9 class foo;
12 int c_func(foo *a);
14 int cpp_func(foo *a);
16 class foo { class
18 friend int c_func(foo *a);
19 friend int cpp_func(foo *a);
25 int c_func(foo *a) {
29 int cpp_func(foo *a) {
33 int foo::caller() {

Completed in 744 milliseconds

1 2 3 45 6 7 8 91011>>