Home
last modified time | relevance | path

Searched defs:foo (Results 1 – 25 of 1215) sorted by relevance

12345678910>>...49

/external/clang/test/PCH/
Dcxx0x-delegating-ctors.cpp10 struct foo { struct
11 foo(int) : foo() { } in foo() argument
13 foo(bool) : foo('c') { } in foo() argument
14 foo(char) : foo(true) { } in foo() argument
17 foo::foo() : foo(1) { } // expected-error{{creates a delegation cycle}} \ in foo() function in foo
/external/clang/test/SemaCXX/
Dcxx0x-delegating-ctors.cpp3 struct foo { struct
5 foo(); argument
16 foo::foo (int i) : i(i) { in foo() function in foo
19 foo::foo () : foo(-1) { in foo() function in foo
22 foo::foo (int, int) : foo() { in foo() function in foo
25 foo::foo (bool) : foo(true) { // expected-error{{creates a delegation cycle}} in foo() function in foo
29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}} in foo() function in foo
32 foo::foo (const float &f) : foo(&f) { //expected-error{{creates a delegation cycle}} \ in foo() function in foo
36 foo::foo (char) : in foo() function in foo
42 foo::foo (void*) : foo(4.0f) { in foo() function in foo
Ddefaulted-ctor-loop.cpp9 struct foo { struct
11 foo() in foo() argument
/external/clang/test/Parser/
Dparenthesis-balance.cpp4 if (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local
5 while (int foo = f(bar)) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local
6 for (int foo = f(bar);;) {} // expected-error{{use of undeclared identifier 'bar'}} in f() local
9 if (int foo = f(bar)) {} in f() local
10 while (int foo = f(bar)) {} in f() local
11 for (int foo = f(bar);;) {} in f() local
Dtypes.c10 typedef struct foo { int x; } foo; typedef
12 foo *foo; in test() local
/external/clang/test/CodeGenCXX/
Dvtable-key-function-arm.cpp32 void Test0a::foo() {} in foo() function in Test0a
43 void Test0b::foo() {} in foo() function in Test0b
64 inline void Test1a::foo() {} in foo() function in Test1a
75 inline void Test1b::foo() {} in foo() function in Test1b
98 inline void Test2a::foo() {} in foo() function in Test2a
117 inline void Test2b::foo() {} in foo() function in Test2b
129 inline void Test2c::foo() {} in foo() function in Test2c
153 inline void Test3a::foo() {} in foo() function in Test3a
172 inline void Test3b::foo() {} in foo() function in Test3b
184 inline void Test3c::foo() {} in foo() function in Test3c
[all …]
Dvtable-key-function-ios.cpp32 void Test0a::foo() {} in foo() function in Test0a
43 void Test0b::foo() {} in foo() function in Test0b
65 inline void Test1a::foo() {} in foo() function in Test1a
76 inline void Test1b::foo() {} in foo() function in Test1b
99 inline void Test2a::foo() {} in foo() function in Test2a
117 inline void Test2b::foo() {} in foo() function in Test2b
128 inline void Test2c::foo() {} in foo() function in Test2c
152 inline void Test3a::foo() {} in foo() function in Test3a
171 inline void Test3b::foo() {} in foo() function in Test3b
183 inline void Test3c::foo() {} in foo() function in Test3c
Dweak-extern-typeinfo.cpp13 void A::foo() { } in foo() function in A
14 void B::foo() { } in foo() function in B
22 void C::foo() { } in foo() function in C
31 void V1::foo() { } in foo() function in V1
32 void V2::foo() { } in foo() function in V2
Dpr13396.cpp2 struct foo { struct
4 __attribute__ ((regparm (3))) foo(T x) {} in foo() function
9 foo::foo() { in foo() function in foo
Dtype_visibility.cpp25 virtual void foo() {} in foo() function
42 virtual void foo() {} in foo() function
59 virtual void foo() {} in foo() function
76 virtual void foo() {} in foo() function
93 virtual void foo() {} in foo() function
112 void A::foo() {} in foo() function in type0::A
128 void A::foo() {} in foo() function in type1::A
144 void A::foo() {} in foo() function in type2::A
160 void A::foo() {} in foo() function in type3::A
Dassign-construct-memcpy.cpp12 struct foo { struct
14 foo() {} // non-POD in foo() function
23 foo *test1(void *f, const foo &x) { in test1() argument
Dvisibility.cpp38 class DEFAULT foo { class
59 struct foo { struct
60 DEFAULT static int bar;
64 template struct foo<int>; variable
73 struct HIDDEN foo {}; struct
86 struct HIDDEN foo { struct
207 struct HIDDEN foo { struct
208 foo() { } in foo() argument
212 virtual void zonk() {} in zonk()
228 static void foo() {} in foo() function
[all …]
/external/clang/test/ARCMT/
Dcxx-rewrite.mm12 struct foo { struct
14 foo(NSString *s): s([s retain]){ argument
23 foo(foo const &); argument
24 foo &operator=(foo const &); argument
30 foo f([[NSString string] autorelease]); argument
/external/clang/test/CodeGenObjC/
Dbitfield_encoding.m6 struct foo{ struct
12 const char *encoding = @encode(struct foo); argument
/external/clang/test/Misc/
Dast-dump-templates.cpp6 struct foo { struct
8 foo() {} in foo() function
19 int y = foo<5, int>().getSum(); in baz() argument
/external/clang/test/CodeGen/
D2003-08-30-AggregateInitializer.c7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
D2002-02-13-TypeVarNameCollision.c7 typedef struct foo { struct
11 static FOO foo[100]; argument
D2003-08-30-LargeIntegerBitfieldMember.c3 struct foo { struct
9 struct foo F; argument
D2003-08-29-StructLayoutBug.c3 struct foo { struct
9 void test(struct foo *X) {} in test() argument
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
DTest.java11 public void foo(@SlashedClassName String foo) {} in foo() method in Test
13 public void foo2(@DottedClassName String foo) { in foo2()
17 public void foo3(String foo) { in foo3()
20 public void foo4(@DottedClassName String foo) { in foo4()
/external/clang/test/SemaObjCXX/
Dconversion-to-objc-pointer.mm32 - (void) foo; method
36 - (void) foo {} method
40 - (void) foo; method
44 - (void) foo {} method
/external/clang/test/SemaTemplate/
Dself-comparison.cpp3 template <int A, int B> void foo() { in foo() function
8 void foo() { in foo() function
15 template <typename T> T foo() { in foo() function
22 template <int A, int B> void foo() { in foo() function
29 template <int B> void foo() { in foo() function
Dpragma-ms_struct.cpp7 template<int x> struct foo { struct
11 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1]; argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
DShadowWranglerTest.java37 Foo foo = new Foo(name); in testConstructorInvocation_WithDefaultConstructorAndNoConstructorDelegateOnShadowClass() local
45 Foo foo = new Foo(name); in testConstructorInvocation() local
54 Foo foo = new Foo(name); in testRealObjectAnnotatedFieldsAreSetBeforeConstructorIsCalled() local
66 Foo foo = new Foo(name); in testMethodDelegation() local
83 Foo foo = new Foo(name); in testHashCodeMethodDelegation() local
91 Foo foo = new Foo(name); in testToStringMethodDelegation() local
126 Foo foo = new Foo(null); in shouldRemoveNoiseFromStackTraces() local
157 Foo foo = new Foo(null); in shouldThrowExceptionOnI18nStrictMode() local
161 private ShadowFoo shadowOf(Foo foo) { in shadowOf()
165 private ShadowTextFoo shadowOf(TextFoo foo) { in shadowOf()
/external/v8/test/mjsunit/regress/
Dregress-806.js32 function foo(a) { function
51 foo({foo: {foo: 1}}); property

12345678910>>...49