Searched refs:Foo (Results 76 - 100 of 354) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-02-13-zerosize-union-field-ppc.c5 typedef unsigned int Foo __attribute__((aligned(32))); typedef
6 typedef union{Foo:0;}a;
7 typedef union{int x; Foo:0;}b;
H A D2009-02-13-zerosize-union-field.c3 typedef unsigned int Foo __attribute__((aligned(32))); typedef
4 typedef union{Foo:0;}a;
5 typedef union{int x; Foo:0;}b;
H A D2003-10-09-UnionInitializerBug.c3 struct Foo { struct
12 struct Foo b;
H A D2003-06-22-UnionCrash.c10 void test(struct Blend_Map_Entry* Foo) argument
H A Dle32-vaarg.c11 struct Foo { struct
15 struct Foo dest;
18 dest = va_arg(*args, struct Foo);
21 // CHECK: [[RESULT:%[a-z_0-9]+]] = va_arg {{.*}}, %struct.Foo{{$}}
22 // CHECK: store %struct.Foo [[RESULT]], %struct.Foo* @dest
25 va_arg(*args, struct Foo);
28 // CHECK: va_arg {{.*}}, %struct.Foo{{$}}
/external/clang/test/Modules/Inputs/
H A Dcategory_left.h3 @interface Foo(Left)
11 @interface Foo(Duplicate)
14 @interface Foo(Duplicate)
H A Dcategory_right.h3 @interface Foo(Right1)
7 @interface Foo(Right2)
11 @interface Foo(Duplicate)
H A Dcategory_other.h3 @interface Foo(Other)
H A Dcategory_top.h1 @interface Foo
4 @interface Foo(Top)
8 @interface Foo(Top2)
12 @interface Foo(Top3)
/external/chromium_org/build/android/tests/symbolize/
H A Da.cc8 void Foo(int i);
13 void A::Foo(int i) {} function in class:A
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest9-expected.cc7 struct Foo { struct
12 scoped_refptr<Foo> member;
14 const scoped_refptr<Foo>& GetMemberAsScopedRefptr() const { return member; }
16 Foo* GetMemberAsRawPtr() const { return member.get(); }
19 void ExpectsRawPtr(Foo* param) {
20 Foo* temp = param;
23 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
24 Foo* temp = param.get();
H A Dtest9-original.cc7 struct Foo { struct
12 scoped_refptr<Foo> member;
14 const scoped_refptr<Foo>& GetMemberAsScopedRefptr() const { return member; }
16 Foo* GetMemberAsRawPtr() const { return member; }
19 void ExpectsRawPtr(Foo* param) {
20 Foo* temp = param;
23 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
24 Foo* temp = param.get();
H A Dlogging-checks-original.cc8 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
17 scoped_refptr<Foo> a;
18 Foo* b;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-indirect-field-decl.cpp6 template <class T, int T::*ptr> class Foo { }; class
17 Foo<Bar, &Bar::i2> the_foo;
H A Dmulti-dim-operator-new.cpp6 struct Foo { struct
7 Foo() : iFoo (2) { function in struct:Foo
14 typedef Foo (*T)[3][4];
17 return new Foo[2][3][4];
21 return new Foo[i][3][4];
30 Foo *test() {
31 return new Foo[5];
40 Foo * g = test();
H A Dconstructor-attr.cpp7 struct Foo { struct
/external/clang/test/PCH/
H A Drdar10830559.cpp21 class Foo class
30 friend class Foo;
H A Dsingle-token-macro.c23 void STDCALL Foo(void);
27 void STDCALL Foo(void) function
/external/clang/test/SemaCXX/
H A DPR7410.cpp6 virtual BaseReturn Foo() = 0; // expected-note{{overridden virtual function is here}}
10 X Foo(); // expected-error{{virtual function 'Foo' has a different return type ('X') than the function it overrides (which has return type 'BaseReturn')}}
H A Dno-exceptions.cpp9 class Foo { class in namespace:test0
19 (void) new Foo();
/external/clang/test/SemaTemplate/
H A Dms-delayed-default-template-args.cpp7 struct Foo { T x; }; struct in namespace:test_basic
9 template struct Foo<>;
15 struct Foo { struct in namespace:test_namespace::nested
21 template struct nested::Foo<>; member in class:test_namespace::nested
27 struct Foo { struct in struct:test_inner_class_template::Outer
33 template struct Outer::Foo<>; member in class:test_inner_class_template::Outer
40 struct Foo { struct in namespace:test_nontype_param
43 template struct Foo<&g>;
50 struct Foo { struct in namespace:test_template_instantiation_arg
65 struct Foo { in struct in namespace:test_undeclared_nontype_parm_type
72 struct Foo { T x; }; struct in namespace:test_undeclared_nontype_parm_type_no_name
78 struct Foo { T x; }; struct in namespace:test_undeclared_type_arg
89 struct Foo { }; struct in namespace:test_undeclared_nontype_parm_arg
[all...]
H A Dmissing-class-keyword-crash.cpp3 template <Foo> // expected-error{{unknown type name 'Foo'}} \
/external/guava/guava-tests/test/com/google/common/collect/
H A DWellBehavedMapTest.java29 enum Foo { enum in class:WellBehavedMapTest
34 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap(
35 new EnumMap<Foo, Integer>(Foo.class));
36 map.putAll(ImmutableMap.of(Foo.X, 1, Foo.Y, 2, Foo.Z, 3));
39 assertTrue(map.entrySet().contains(Maps.immutableEntry(Foo.X, 1)));
40 assertTrue(map.entrySet().contains(Maps.immutableEntry(Foo.Y, new Integer(2))));
43 assertFalse(map.entrySet().contains(Maps.immutableEntry(Foo
[all...]
/external/apache-harmony/support/src/test/resources/tests/resources/
H A Dhyts_Foo.serFoo.java package foo.bar.execjartest public foo.bar.execjartest.Foo extends java ...
/external/clang/test/Analysis/
H A Danalyzer-config.cpp7 class Foo { class

Completed in 2485 milliseconds

1234567891011>>