Home
last modified time | relevance | path

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

12345678910>>...210

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dperformance-implicit-conversion-in-loop.cpp47 int foo; member
70 for (const SimpleClass& foo : SimpleView()) {} in SimpleClassIterator() local
74 for (const SimpleClass foo : SimpleView()) {} in SimpleClassIterator() local
75 for (SimpleClass foo : SimpleView()) {} in SimpleClassIterator() local
79 for (const SimpleClass& foo : SimpleRefView()) {} in SimpleClassRefIterator() local
81 for (const SimpleClass foo : SimpleRefView()) {} in SimpleClassRefIterator() local
82 for (SimpleClass foo : SimpleRefView()) {} in SimpleClassRefIterator() local
86 for (const ComplexClass& foo : ComplexView()) {} in ComplexClassIterator() local
88 for (const ComplexClass foo : ComplexView()) {} in ComplexClassIterator() local
89 for (ComplexClass foo : ComplexView()) {} in ComplexClassIterator() local
[all …]
/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/llvm-project/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
DF_nullptr.pass.cpp66 int foo() { return 42; } in foo() function
67 int foo(int) { return 42; } in foo() function
68 int foo(int, int) { return 42; } in foo() function
69 int foo(int, int, int) { return 42; } in foo() function
71 int foo(...) { return 42; } in foo() function
72 int foo(int, ...) { return 42; } in foo() function
73 int foo(int, int, ...) { return 42; } in foo() function
74 int foo(int, int, int, ...) { return 42; } in foo() function
78 int foo() { return 42; } in foo() function
79 int foo() const { return 42; } in foo() function
[all …]
/external/llvm-project/lldb/test/API/functionalities/data-formatter/synthcapping/
Dmain.cpp1 struct foo struct
22 foo(int X) : in foo() argument
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-python-synth/
Dmain.cpp1 struct foo struct
22 foo(int X) : in foo() argument
/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() function
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/llvm-project/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() function
17 foo::foo() : foo(1) { } // expected-error{{creates a delegation cycle}} \ in foo() function in foo
/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/llvm-project/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/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/llvm-project/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/llvm-project/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.cpp36 void Test0a::foo() {} in foo() function in Test0a
47 void Test0b::foo() {} in foo() function in Test0b
70 inline void Test1a::foo() {} in foo() function in Test1a
81 inline void Test1b::foo() {} in foo() function in Test1b
104 inline void Test2a::foo() {} in foo() function in Test2a
122 inline void Test2b::foo() {} in foo() function in Test2b
133 inline void Test2c::foo() {} in foo() function in Test2c
157 inline void Test3a::foo() {} in foo() function in Test3a
176 inline void Test3b::foo() {} in foo() function in Test3b
188 inline void Test3c::foo() {} in foo() function in Test3c
/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
/external/llvm-project/lldb/test/API/python_api/sbdata/
Dmain.cpp3 struct foo struct
8 foo() : a(0), b(1), c(3.14) {} in foo() argument
9 foo(uint32_t A, uint32_t B, float C) : in foo() function
/external/llvm-project/lldb/test/Shell/SymbolFile/DWARF/
Dfind-basic-function.cpp80 void foo() {} in foo() function
81 void foo(int) {} in foo() function
85 void foo() {} in foo() function
87 void foo() {} in foo() function
91 struct foo {}; struct
92 void fbar(struct foo) {} in fbar()
100 void sbar::foo() {} in foo() function in sbar
101 void sbar::foo(int) {} in foo() function in sbar
105 void foo() {} in ffbar() function
Dfind-basic-type.cpp35 struct foo { }; struct
40 struct foo {}; struct
44 struct foo {}; struct
50 struct foo {}; struct
58 extern "C" void _start(foo, bar::foo, bar::baz::foo, sbar::foo, foobar, Foo) {} in _start() argument
/external/llvm-project/flang/test/Semantics/
Dresolve18.f905 subroutine foo(x) subroutine
14 …!ERROR: 'foo' may not be the name of both a generic interface and a procedure unless it is a speci… argument
15 interface foo interface
24 subroutine foo subroutine
36 type :: foo type
41 interface foo interface
47 type :: foo type
51 function foo(x) function
56 type :: foo type
59 interface foo interface
[all …]
/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/llvm-project/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/llvm-project/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/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/llvm-project/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

12345678910>>...210