Home
last modified time | relevance | path

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

12345678910>>...86

/external/v8/test/mjsunit/es6/
Dblock-scoping.js52 class a { static foo() { return one + 6; } } method in f2.a
56 class b { static foo() { return one + 7; } } method in f2.b
75 class a { static foo() { return one + 6; } } method in f3.a
79 class b { static foo() { return one + 7; } } method in f3.b
101 class a { static foo() { return one + 6; } } method in f4.a
105 class b { static foo() { return one + 7; } } method in f4.b
127 class a { static foo() { return one + 6; } } method in f5.a
131 class b { static foo() { return one + 7; } } method in f5.b
167 class f { static foo() { return 1; } } method in f7.f
193 class a { static foo() { return 2; } } method in f7.a
[all …]
/external/v8/test/mjsunit/harmony/
Dblock-scoping-sloppy.js50 class a { static foo() { return one + 6; } } method in f2.a
54 class b { static foo() { return one + 7; } } method in f2.b
73 class a { static foo() { return one + 6; } } method in f3.a
77 class b { static foo() { return one + 7; } } method in f3.b
99 class a { static foo() { return one + 6; } } method in f4.a
103 class b { static foo() { return one + 7; } } method in f4.b
125 class a { static foo() { return one + 6; } } method in f5.a
129 class b { static foo() { return one + 7; } } method in f5.b
165 class f { static foo() { return 1; } } method in f7.f
191 class a { static foo() { return 2; } } method in f7.a
[all …]
/external/clang/test/PCH/
Dcxx0x-delegating-ctors.cpp10 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/
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
/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.cpp35 void Test0a::foo() {} in foo() function in Test0a
46 void Test0b::foo() {} in foo() function in Test0b
68 inline void Test1a::foo() {} in foo() function in Test1a
79 inline void Test1b::foo() {} in foo() function in Test1b
102 inline void Test2a::foo() {} in foo() function in Test2a
120 inline void Test2b::foo() {} in foo() function in Test2b
131 inline void Test2c::foo() {} in foo() function in Test2c
155 inline void Test3a::foo() {} in foo() function in Test3a
174 inline void Test3b::foo() {} in foo() function in Test3b
186 inline void Test3c::foo() {} in foo() function in Test3c
Dvisibility.cpp41 class DEFAULT foo { class
62 struct foo { struct
63 DEFAULT static int bar;
67 template struct foo<int>; variable
76 struct HIDDEN foo {}; struct
89 struct HIDDEN foo { struct
219 struct HIDDEN foo { struct
220 foo() { } in foo() argument
224 virtual void zonk() {} in zonk()
240 static void foo() {} in foo() function
[all …]
Ddebug-info-codeview-display-name.cpp19 struct foo { struct
21 foo(){} in foo() argument
24 ~foo(){} in ~foo() argument
27 foo(int i){} in foo() function
30 foo(char *q){} in foo() function
33 static foo* static_method() { return 0; } in static_method() argument
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
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
Daarch64-aapcs-zerolength-bitfield.cpp9 int foo : 1; member
19 int foo : 1; member
28 int foo : 1; member
37 int foo : 1; member
46 int foo : 1; member
55 int foo : 1; member
65 int foo : 1; member
75 int foo : 1; member
85 int foo : 1; member
95 int foo : 1; member
[all …]
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
/external/clang/test/SemaObjC/
Dencode-typeof-test.m31 struct foo { struct
43 …return @encode(struct foo); // expected-warning {{encoding of 'struct foo' type is incomplete beca… 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
/external/clang/test/ARCMT/
Dcxx-rewrite.mm11 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/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/CodeGenObjC/
Dbitfield_encoding.m6 struct foo{ struct
12 const char *encoding = @encode(struct foo); argument
/external/clang/test/CodeGenObjCXX/
Ddebug-info-line.mm5 struct foo { struct
6 ~foo(); field
11 foo f; argument
22 foo f; argument
/external/robolectric/v1/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/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTabHostTest.java37 TabHost.TabSpec foo = tabHost.newTabSpec("Foo").setIndicator(fooView); in shouldAddTabsToLayoutWhenAddedToHost() local
52 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldReturnTabSpecsByTag() local
69 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenCurrentTabIsSet() local
89 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in shouldFireTheTabChangeListenerWhenTheCurrentTabIsSetByTag() local
109 TabHost.TabSpec foo = tabHost.newTabSpec("Foo").setContent( in shouldRetrieveTheCurrentViewFromTabContentFactory() local
129 TabHost.TabSpec foo = tabHost.newTabSpec("Foo") in shouldRetrieveTheCurrentViewFromViewId() local
152 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in canGetCurrentTabTag() local
169 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in canGetCurrentTab() local
192 TabHost.TabSpec foo = tabHost.newTabSpec("Foo"); in setCurrentTabByTagShouldAcceptNullAsParameter() local
/external/llvm/test/tools/dsymutil/X86/
Dodr-member-functions.cpp10 __attribute__((always_inline)) void foo() { bar(); } in foo() function
11 __attribute__((always_inline)) void foo(int i) { if (i) bar(); } in foo() function
18 void foo() { in foo() function
37 void foo() { in foo() function
75 void foo() { in foo() function
/external/clang/test/CodeGen/
D2003-08-30-AggregateInitializer.c7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
Darm-byval-align.c3 struct foo { struct
10 // CHECK: %struct.foo* byval align 8 %z 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/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>>...86