Searched refs:foo (Results 276 - 300 of 1436) sorted by relevance

<<11121314151617181920>>

/external/clang/test/Sema/
H A Dcompound-literal.c3 struct foo { int a, b; }; struct
5 static struct foo t = (struct foo){0,0};
6 static struct foo t1 = __builtin_choose_expr(0, (struct foo){0,0}, (struct foo){0,0});
7 static struct foo t2 = {0,0};
8 static struct foo t3 = t2; // -expected-error {{initializer element is not a compile-time constant}}
21 extern void fooFunc(struct foo *pfoo);
25 fooFunc(&(struct foo){
[all...]
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassHasNoDefaultConstructor.java24 public ClassHasNoDefaultConstructor(int foo) { argument
28 public int foo() { method in class:ClassHasNoDefaultConstructor
H A DClassHasOverloadedMethods.java24 public int foo() { method in class:ClassHasOverloadedMethods
28 public void foo(int arg) { method in class:ClassHasOverloadedMethods
/external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
H A Dp2-noexceptions.cpp8 class foo { virtual ~foo(); }; class
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp5 void foo() { function in namespace:test0
14 void foo() { function in namespace:test1
/external/clang/test/CodeGen/
H A D2002-02-13-UnnamedLocal.c14 int foo(foostruct ic);
18 foo(xqic);
H A D2002-05-23-StaticValues.c8 static void foo(int Z) { function
13 foo(12);
H A D2003-08-30-AggregateInitializer.c7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 };
H A D2006-10-30-ArrayCrash.c4 extern void foo();
16 foo();
H A DPR2001-bitfield-reload.c6 static int foo(int i) { function
15 return foo(-5) == -1;
H A Darrayderef.c6 struct foo { struct
11 struct foo Foo[1];
H A Dtbaa-for-vptr.cpp12 virtual int foo() const ;
21 a->foo();
/external/clang/test/CodeGenCXX/
H A Dasm.cpp7 int foo(A);
12 asm("" : : "r"(foo(a)) ); // rdar://8540491
/external/llvm/test/MC/ELF/
H A Dinvalid-symver.s6 .symver undefined, foo@@bar
/external/mesa3d/src/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c1 #define foo(x) (x) macro
2 foo(this is more than one word)
H A D022-define-func-arg-with-parens.c1 #define foo(x) (x) macro
2 foo(argument(including parens)for the win)
H A D038-func-arg-with-commas.c1 #define foo(x) success macro
2 foo(argument (with,embedded , commas) -- tricky)
/external/v8/test/mjsunit/
H A Dcontext-variable-assignments.js28 function foo() { function
37 assertEquals("hello world", foo());
H A Ddont-reinit-global-var.js28 var foo = 'fisk'; variable
29 assertEquals('fisk', foo);
30 var foo; variable
31 assertEquals('fisk', foo);
32 var foo = 'hest'; variable
33 assertEquals('hest', foo);
/external/v8/test/mjsunit/regress/
H A Dregress-1036894.js30 function foo() { function
33 foo();
/external/clang/test/PCH/
H A Dmethod_pool.h17 - (double)instMethod:(int)foo;
21 - (char)instMethod:(int)foo;
27 - (double)instMethod:(int)foo {
28 return foo;
33 - (char)instMethod:(int)foo {
34 return foo;
/external/clang/test/Parser/
H A Dparenthesis-balance.cpp4 if (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}}
5 while (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}}
6 for (int foo = f(bar);;) {} // expected-error{{use of undeclared identifier 'bar'}}
9 if (int foo = f(bar)) {}
10 while (int foo = f(bar)) {}
11 for (int foo = f(bar);;) {}
/external/clang/test/SemaCXX/
H A Dcomplex-overload.cpp2 char *foo(float);
5 char *cp1 = foo(fv);
6 char *cp2 = foo(dv);
8 char *cp3 = foo(fc);
9 char *cp4 = foo(dc);
12 int *foo(float _Complex);
15 char *cp1 = foo(fv);
16 char *cp2 = foo(dv);
17 int *ip = foo(fc);
18 int *lp = foo(d
[all...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp28 Opaque<0> foo(Opaque<0>);
29 Opaque<0> foo(Opaque<1>);
30 Opaque<0> foo(Opaque<2>);
35 using Base::foo;
36 Opaque<1> foo(Opaque<1>);
37 Opaque<1> foo(Opaque<3>);
39 void test0() { Opaque<0> _ = foo(Opaque<0>()); }
40 void test1() { Opaque<1> _ = foo(Opaque<1>()); }
41 void test2() { Opaque<0> _ = foo(Opaque<2>()); }
42 void test3() { Opaque<1> _ = foo(Opaqu
108 template <class T> Opaque<0> foo() { return Opaque<0>(); } function in struct:test3::Base
109 template <int n> Opaque<1> foo() { return Opaque<1>(); } function in struct:test3::Base
114 template <int n> Opaque<2> foo() { return Opaque<2>(); } // expected-note {{invalid explicitly-specified argument for template parameter 'n'}} function in struct:test3::Derived1
118 template <int n> Opaque<2> foo() { return Opaque<2>(); } // expected-note {{invalid explicitly-specified argument for template parameter 'n'}} function in struct:test3::Derived2
124 template <class T> Opaque<3> foo() { return Opaque<3>(); } // expected-note {{invalid explicitly-specified argument for template parameter 'T'}} function in struct:test3::Derived3
128 template <class T> Opaque<3> foo() { return Opaque<3>(); } // expected-note {{invalid explicitly-specified argument for template parameter 'T'}} function in struct:test3::Derived4
[all...]
/external/llvm/unittests/Support/
H A DCasting.cpp24 struct foo *baz();
25 struct foo *caz();
26 struct foo *daz();
27 struct foo *naz();
31 struct foo { struct in namespace:llvm
39 template <> struct isa_impl<foo, bar> {
46 foo *bar::baz() {
47 return cast<foo>(this);
50 foo *bar::caz() {
51 return cast_or_null<foo>(thi
[all...]

Completed in 209 milliseconds

<<11121314151617181920>>