Home
last modified time | relevance | path

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

12345678910>>...43

/external/clang/test/PCH/
Dcxx0x-delegating-ctors.cpp10 struct foo { struct
11 foo(int) : foo() { } // expected-note{{it delegates to}} in foo() argument
13 foo(bool) : foo('c') { } // expected-note{{it delegates to}} in foo() function
14 foo(char) : foo(true) { } // expected-error{{creates a delegation cycle}} \ in foo() function
18 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) : i(3), foo(3) { // expected-error{{must appear alone}} in foo() function in foo
40 foo::foo (void*) : foo(4.0f) { in foo() function in foo
Ddefault-arg-special-member.cpp4 class foo { class
10 foo::foo(foo&, int = 0) { } // expected-warning {{makes this constructor a copy constructor}} in foo() argument
11 foo::foo(int = 0) { } // expected-warning {{makes this constructor a default constructor}} in foo() function in foo
12 foo::foo(const foo& = 0) { } //expected-warning {{makes this constructor a default constructor}} 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.c9 typedef struct foo { int x; } foo; argument
11 foo *foo; in test() local
/external/clang/test/ARCMT/
Dcxx-rewrite.mm12 struct foo { struct
14 foo(NSString *s): s([s retain]){ argument
23 foo(foo const &); field
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/CodeGenCXX/
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
DPR6474.cpp10 template <typename T> void X<T>::foo() {} in foo() function in test0::X
14 template <> void X<char>::foo() {} in foo() function in test0::X
25 template <typename T> void X<T>::foo() {} in foo() function in test1::X
30 template <> void X<char>::foo() {} in foo() function in test1::X
/external/clang/test/CodeGen/
D2003-08-30-AggregateInitializer.c7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
D2003-08-30-LargeIntegerBitfieldMember.c3 struct foo { struct
9 struct foo F; argument
D2002-02-13-TypeVarNameCollision.c7 typedef struct foo { struct
11 static FOO foo[100]; variable
D2003-08-29-StructLayoutBug.c3 struct foo { struct
9 void test(struct foo *X) {} in test() argument
D2002-05-23-TypeNameCollision.c5 typedef struct foo { struct
6 struct foo *X; argument
8 } * foo; argument
D2003-03-03-DeferredType.c8 struct foo { struct
9 int x;
10 double D;
/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.mm31 - (void) foo; method
35 - (void) foo {} method
39 - (void) foo; method
43 - (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.cpp6 template<int x> struct foo { struct
10 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1]; argument
/external/v8/test/mjsunit/regress/
Dregress-806.js32 function foo(a) { function
51 foo({foo: {foo: 1}}); property
/external/v8/test/mjsunit/
Dobject-create.js59 var protoFoo = { foo: function() { ctr++; }}; method
60 var fooValue = { foo: { writable: true, value: function() { ctr2++; }}}; property
61 var fooGetter = { foo: { get: function() { return ctr3++; }}}; property
62 var fooSetter = { foo: { set: function() { return ctr4++; }}}; property
63 var fooAmbiguous = { foo: { get: function() { return ctr3++; }, property
90 v = Object.create(null, { foo: {value: 103}}); property
152 var magicValueProps = { foo: Object.create(null, { value: { get: valueGet }})}; property
153 var magicGetterProps = { foo: Object.create(null, { get: { get: getterGet }})}; property
154 var magicAmbiguousProps = { foo: Object.create(null, metaProps) }; property
174 foo: Object.create(null, { value: { value: 4 }, property
[all …]
/external/clang/test/Analysis/
Dunix-fns.c62 char* foo = malloc(0); // expected-warning{{Call to 'malloc' has an allocation size of 0 bytes}} in pr2899() local
68 char* foo = malloc(size); // no-warning in pr2899_nowarn() local
74 …char *foo = calloc(0, 42); // expected-warning{{Call to 'calloc' has an allocation size of 0 bytes… in test_calloc() local
80 …char *foo = calloc(42, 0); // expected-warning{{Call to 'calloc' has an allocation size of 0 bytes… in test_calloc2() local
86 char *foo = calloc(nmemb, size); // no-warning in test_calloc_nowarn() local
92 …char *foo = realloc(ptr, 0); // expected-warning{{Call to 'realloc' has an allocation size of 0 by… in test_realloc() local
98 char *foo = realloc(ptr, size); // no-warning in test_realloc_nowarn() local
104 char *foo = alloca(0); // expected-warning{{Call to 'alloca' has an allocation size of 0 bytes}} in test_alloca() local
110 char *foo = alloca(sz); // no-warning in test_alloca_nowarn() local
128 char *foo = valloc(0); // expected-warning{{Call to 'valloc' has an allocation size of 0 bytes}} in test_valloc() local
[all …]
/external/clang/test/ASTMerge/Inputs/
Dinterface1.m27 - (int)foo; method
33 - (int)foo; method
34 + (int)foo; class
39 - (int)foo; method
45 - (int)foo; method
51 + (int)foo; class
57 + (int)foo; class
63 + (int)foo; class

12345678910>>...43