/external/lldb/test/functionalities/data-formatter/rdar-10887661/ |
D | main.cpp | 1 struct foo struct 22 foo(int X) : in foo() argument
|
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/ |
D | main.cpp | 1 struct foo struct 22 foo(int X) : in foo() argument
|
/external/clang/test/PCH/ |
D | cxx0x-delegating-ctors.cpp | 10 struct foo { struct 11 foo(int) : foo() { } in foo() function 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/ |
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) : in foo() function in foo 42 foo::foo (void*) : foo(4.0f) { in foo() function in foo
|
D | defaulted-ctor-loop.cpp | 9 struct foo { struct 11 foo() in foo() function
|
/external/lldb/test/python_api/sbdata/ |
D | main.cpp | 11 struct foo struct 16 foo() : a(0), b(1), c(3.14) {} in foo() argument 17 foo(uint32_t A, uint32_t B, float C) : in foo() argument
|
/external/clang/test/CodeGenCXX/ |
D | vtable-key-function-arm.cpp | 32 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 …]
|
D | vtable-key-function-ios.cpp | 32 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
|
D | visibility.cpp | 38 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 216 struct HIDDEN foo { struct 217 foo() { } in foo() argument 221 virtual void zonk() {} in zonk() 237 static void foo() {} in foo() function [all …]
|
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 | type_visibility.cpp | 25 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
|
D | pr13396.cpp | 2 struct foo { struct 4 __attribute__ ((regparm (3))) foo(T x) {} in foo() argument 9 foo::foo() { in foo() function in foo
|
/external/clang/test/SemaObjC/ |
D | encode-typeof-test.m | 31 struct foo { struct 43 …return @encode(struct foo); // expected-warning {{encoding of 'struct foo' type is incomplete beca… 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
|
/external/clang/test/ARCMT/ |
D | cxx-rewrite.mm | 11 struct foo { struct 13 foo(NSString *s): s([s retain]){ argument 22 foo(foo const &); argument 23 foo &operator=(foo const &); argument 29 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/CodeGenObjCXX/ |
D | debug-info-line.mm | 5 struct foo { struct 6 ~foo(); field 11 foo f; argument 22 foo f; argument
|
/external/lldb/test/functionalities/data-formatter/format-propagation/ |
D | main.cpp | 1 struct foo struct 5 foo(int a, int b) : X(a), Y(b) {} in foo() argument
|
/external/clang/test/CodeGen/ |
D | 2003-08-30-AggregateInitializer.c | 7 struct foo { struct 14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
|
D | arm-byval-align.c | 3 struct foo { struct 10 // CHECK: %struct.foo* byval align 8 %z 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]; argument
|
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
D | Test.java | 11 public void foo(@SlashedClassName String foo) {} in foo() argument 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/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/ |
D | ShadowWranglerTest.java | 37 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/ |
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 …]
|