/external/clang/test/PCH/ |
D | cxx0x-delegating-ctors.cpp | 10 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/ |
D | cxx0x-delegating-ctors.cpp | 3 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
|
D | default-arg-special-member.cpp | 4 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
|
D | defaulted-ctor-loop.cpp | 9 struct foo { struct 11 foo() in foo() argument
|
/external/clang/test/Parser/ |
D | parenthesis-balance.cpp | 4 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
|
D | types.c | 9 typedef struct foo { int x; } foo; argument 11 foo *foo; in test() local
|
/external/clang/test/ARCMT/ |
D | cxx-rewrite.mm | 12 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/ |
D | bitfield_encoding.m | 6 struct foo{ struct 12 const char *encoding = @encode(struct foo); argument
|
/external/clang/test/Misc/ |
D | ast-dump-templates.cpp | 6 struct foo { struct 8 foo() {} in foo() function 19 int y = foo<5, int>().getSum(); in baz() argument
|
/external/clang/test/CodeGenCXX/ |
D | weak-extern-typeinfo.cpp | 13 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
|
D | PR6474.cpp | 10 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/ |
D | 2003-08-30-AggregateInitializer.c | 7 struct foo { struct 14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
|
D | 2003-08-30-LargeIntegerBitfieldMember.c | 3 struct foo { struct 9 struct foo F; argument
|
D | 2002-02-13-TypeVarNameCollision.c | 7 typedef struct foo { struct 11 static FOO foo[100]; variable
|
D | 2003-08-29-StructLayoutBug.c | 3 struct foo { struct 9 void test(struct foo *X) {} in test() argument
|
D | 2002-05-23-TypeNameCollision.c | 5 typedef struct foo { struct 6 struct foo *X; argument 8 } * foo; argument
|
D | 2003-03-03-DeferredType.c | 8 struct foo { struct 9 int x; 10 double D;
|
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
D | Test.java | 11 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/ |
D | conversion-to-objc-pointer.mm | 31 - (void) foo; method 35 - (void) foo {} method 39 - (void) foo; method 43 - (void) foo {} method
|
/external/clang/test/SemaTemplate/ |
D | self-comparison.cpp | 3 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
|
D | pragma-ms_struct.cpp | 6 template<int x> struct foo { struct 10 extern int arr[sizeof(foo<0>) == 16 ? 1 : -1]; argument
|
/external/v8/test/mjsunit/regress/ |
D | regress-806.js | 32 function foo(a) { function 51 foo({foo: {foo: 1}}); property
|
/external/v8/test/mjsunit/ |
D | object-create.js | 59 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/ |
D | unix-fns.c | 62 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/ |
D | interface1.m | 27 - (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
|