Home
last modified time | relevance | path

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

12345678910>>...119

/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
DF_nullptr.pass.cpp64 int foo() { return 42; } in foo() function
65 int foo(int) { return 42; } in foo() function
66 int foo(int, int) { return 42; } in foo() function
67 int foo(int, int, int) { return 42; } in foo() function
69 int foo(...) { return 42; } in foo() function
70 int foo(int, ...) { return 42; } in foo() function
71 int foo(int, int, ...) { return 42; } in foo() function
72 int foo(int, int, int, ...) { return 42; } in foo() function
76 int foo() { return 42; } in foo() function
77 int foo() const { return 42; } in foo() function
[all …]
/external/clang/test/Analysis/
Drange_casts.c6 void f1(long foo) in f1()
16 void f2(unsigned long foo) in f2()
26 void f3(unsigned long foo) in f3()
36 void f4(long foo) in f4()
46 void f5(long foo) in f5()
56 void f6(long foo) in f6()
66 void f7(long foo) in f7()
76 void f8(long foo) in f8()
86 void f9(long foo) in f9()
96 void f10(long foo) in f10()
[all …]
/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() function
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() function
224 virtual void zonk() {} in zonk()
240 static void foo() {} in foo() function
[all …]
Ddebug-info-codeview-display-name.cpp27 struct foo { struct
29 foo(){} in foo() function
33 ~foo(){} in ~foo() argument
37 foo(int i){} in foo() argument
41 foo(char *q){} in foo() function
45 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
/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/dagger2/javatests/dagger/internal/codegen/
DAssistedFactoryErrorsTest.java64 JavaFileObject foo = in testNestedFactoryNotStatic() local
180 JavaFileObject foo = in testFactoryMultipleAbstractMethods() local
227 JavaFileObject foo = in testFactoryMismatchingParameter() local
264 JavaFileObject foo = in testFactoryMismatchingGenericParameter() local
301 JavaFileObject foo = in testFactoryDuplicateGenericParameter() local
335 JavaFileObject foo = in testAssistedInjectionRequest() local
414 JavaFileObject foo = in testProvidesAssistedBindings() local
470 JavaFileObject foo = in testProvidesAssistedBindingsAsFactoryBindsInstance() local
522 JavaFileObject foo = in testProvidesAssistedBindingsAsBuilderBindsInstance() local
574 JavaFileObject foo = in testProvidesAssistedBindingsAsOptional() local
[all …]
DAssistedInjectErrorsTest.java46 JavaFileObject foo = in testAssistedInjectWithDuplicateTypesFails() local
71 JavaFileObject foo = in testAssistedInjectWithDuplicateTypesEmptyQualifierFails() local
96 JavaFileObject foo = in testAssistedInjectWithDuplicateQualifiedTypesFails() local
122 JavaFileObject foo = in testAssistedInjectWithDuplicateGenericTypesFails() local
149 JavaFileObject foo = in testAssistedInjectWithDuplicateParameterizedTypesFails() local
173 JavaFileObject foo = in testAssistedInjectWithUniqueParameterizedTypesPasses() local
193 JavaFileObject foo = in testAssistedInjectWithUniqueGenericTypesPasses() local
213 JavaFileObject foo = in testAssistedInjectWithUniqueQualifiedTypesPasses() local
/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 &); field
23 foo &operator=(foo const &); argument
29 foo f([[NSString string] autorelease]); argument
/external/python/cpython3/Lib/test/
Dtest_abc.py20 def foo(self): pass function
27 def foo(self): return 3 member in test_factory.TestLegacyAPI.test_abstractproperty_basics.C
31 def foo(self): return super().foo member in test_factory.TestLegacyAPI.test_abstractproperty_basics.D
37 def foo(cls): pass function
45 def foo(cls): return cls.__name__ member in test_factory.TestLegacyAPI.test_abstractclassmethod_basics.C
49 def foo(cls): return super().foo() member in test_factory.TestLegacyAPI.test_abstractclassmethod_basics.D
55 def foo(): pass function
63 def foo(): return 3 member in test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.C
67 def foo(): return 4 member in test_factory.TestLegacyAPI.test_abstractstaticmethod_basics.D
79 def foo(cls): return cls.__name__ member in test_factory.TestABC.test_ABC_helper.C
[all …]
Dtest_dynamic.py30 def foo(): function
40 def foo(): function
50 def foo(): function
68 def foo(modifier): function
79 def foo(): function
92 def foo(): function
109 def foo(): function
121 def foo(): function
/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/grpc-grpc/test/core/gprpp/
Dref_counted_ptr_test.cc45 TEST(RefCountedPtr, DefaultConstructor) { RefCountedPtr<Foo> foo; } in TEST() local
48 RefCountedPtr<Foo> foo(nullptr); in TEST() local
51 TEST(RefCountedPtr, ExplicitConstructor) { RefCountedPtr<Foo> foo(New<Foo>()); } in TEST() local
54 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
61 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
68 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
75 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
82 RefCountedPtr<Foo> foo; in TEST() local
90 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
95 RefCountedPtr<Foo> foo(New<Foo>()); in TEST() local
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.mem/
Dp2.cpp7 struct foo { in fun() struct
8 …typename> struct bar {}; // expected-error{{templates cannot be declared inside of a local class}} in fun()
9 …typename> void baz() {} // expected-error{{templates cannot be declared inside of a local class}} in fun()
11 …ename> using corge = int; // expected-error{{templates cannot be declared inside of a local class}} in fun()
12 …-error{{static data member}} expected-error{{templates cannot be declared inside of a local class}} in fun()
/external/clang/test/CodeGen/
D2003-08-30-AggregateInitializer.c7 struct foo { struct
14 struct foo F = { 1, { 7 }, { 123 } , 1 }; argument
/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/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/dokka/core/testdata/javadoc/
Dtypes.kt1 package foo package
3 fun foo(x: Int, o: Any): String { in foo() method

12345678910>>...119