Searched refs:foo (Results 126 - 150 of 1436) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dwarn-overloaded-virtual.cpp4 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(floa
48 void Base::foo(int) { } function in class:PR9182::Base
[all...]
/external/clang/test/CodeGen/
H A D2002-02-13-TypeVarNameCollision.c7 typedef struct foo { struct
11 static FOO foo[100]; variable
14 return foo[4].Y;
H A D2007-04-24-VolatileStructCopy.c4 struct foo { struct
8 void copy(volatile struct foo *p, struct foo *q) {
H A D2010-01-18-Inlined-Debug.c4 static inline int foo(double) __attribute__ ((always_inline));
5 static inline int foo(double __x) { return __x; } function
8 foo(x);
H A D2004-03-07-ExternalConstant.c5 int foo () { function
H A D2004-05-21-IncompleteEnum.c3 void test(enum foo *X) {
H A D2004-07-06-FunctionCast.c7 int foo(void) { function
H A D2007-10-02-VolatileArray.c4 void foo(volatile int *p) function
H A D2009-03-01-MallocNoAlias.c3 void * __attribute__ ((malloc)) foo (void) { return 0; } function
H A D2009-07-31-DbgDeclare.c2 void foo() { function
H A D2010-07-08-DeclDebugLineNo.c4 void foo() { function
H A Dannotations-loc.c7 int __attribute((annotate("foo"))) foo(void) { return 0; } function
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-recursive.cpp5 template <class T> class foo : public base { class in inherits:base
6 void operator=(const foo r) { }
9 class bar : public foo<void> { };
H A Dfp16-overload.cpp3 extern int foo(float x);
4 extern int foo(double x);
10 int bar (void) { return foo(a); }
H A Ddebug-info-wchar.cpp2 void foo() { function
/external/clang/test/Parser/
H A Dcheck_cast.c2 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/
H A D004-define-recursive.c1 #define foo bar macro
3 #define baz foo
4 foo
/external/v8/test/mjsunit/regress/
H A Dregress-1117.js31 function foo(y) {return 0 * y; } function
33 foo(42);
35 assertEquals(1/foo(-42), -Infinity);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp3.cpp10 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/
H A Dp1-ambiguous.cpp9 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() {
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.list/
H A Dp6.cpp6 static void foo(const T &t) {} function in struct:test0::A
7 static void foo(T &&t) { function in struct:test0::A
8 t.foo(); // expected-error {{member reference base type 'int' is not a structure or union}}
13 A<int>::foo({}); // expected-note {{requested here}}
/external/clang/test/Driver/
H A Dasan.c7 int foo(int *a) { return *a; } function
H A Dtsan.c7 int foo(int *a) { return *a; } function
/external/clang/test/Index/Inputs/
H A Dprefix.h3 int foo(int);
/external/clang/test/Index/
H A Dunmatched-braces.c1 void foo() { function

Completed in 90 milliseconds

1234567891011>>