/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | mangle.cpp | 22 typedef enum { foo } e; enumerator 428 struct foo { int bar; }; argument 436 struct foo { static int bar; }; struct 444 struct foo { int bar(); }; struct 452 struct foo { static int bar(); }; struct 467 struct foo { struct 468 typedef T X; 513 template <template<class> class T> void foo(const A<T> &a) {} in foo() function 675 template <template <class> class T> void foo(decltype(T<float>::object) &object) {} in foo() function 775 template <class T> typename A<T>::type foo() { return 0; } in foo() function [all …]
|
H A D | microsoft-abi-structors.cpp | 74 void C::foo() {} in foo() function in basic::C 77 C c; in check_vftable_offset() local 141 void use_D() { D c; } in use_D() local 172 void foo() { in foo() function 173 C c; in foo() local 191 struct C : A, B { virtual ~C(); int c; }; member 207 void foo() { in foo() function 266 C c; in create_C() local
|
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
H A D | anf_test.py | 108 def test_function(a, b, c, e, f, g): argument 113 def expected_result(a, b, c, e, f, g): argument 125 def test_function(b, c, d, e): argument 128 def expected_result(b, c, d, e): argument 139 def test_function(call_something, a, b, y, z, c, d, e, f, g, h, i): argument 142 def expected_result(call_something, a, b, y, z, c, d, e, f, g, h, i): argument 155 def test_function(a, b, c): argument 159 def expected_result(a, b, c): argument 171 def test_function(a, b, c): argument 176 def expected_result(a, b, c): argument [all …]
|
/aosp_15_r20/external/pytorch/test/inductor/ |
H A D | test_select_algorithm.py | 58 def foo(input, weight, bias): function 74 def foo(input, weight, bias): function 90 def foo(input, weight, bias): function 106 def foo(a, b): function 120 def foo(a, b): function 132 def foo(a, b): function 145 def foo(a, b): function 158 def foo(a, b): function 170 def foo(a, b, c): argument 184 def foo(a, b, c, d): argument [all …]
|
/aosp_15_r20/external/javassist/src/test/test/javassist/proxy/ |
H A D | ProxySimpleTest.java | 30 Class c = f.createClass(); in testProxyFactory() local 38 Foo foo = (Foo)c.getConstructor().newInstance(); in testProxyFactory() local 48 public int foo(int i) { return i + 1; } in foo() method in ProxySimpleTest.Foo 90 public int foo() { return 4; } in foo() method in ProxySimpleTest.ReadWriteData 169 Class c = f.createClass(); in testDefaultMethods() local 177 Default3 foo = (Default3)c.getConstructor().newInstance(); in testDefaultMethods() local 189 Class c = f.createClass(); in testDefaultMethods2() local 197 Default2 foo = (Default2)c.getConstructor().newInstance(); in testDefaultMethods2() local 205 default int foo() { return 0; } in foo() method 214 public int foo() { return Default2.super.foo(); } in foo() method in ProxySimpleTest.Default3 [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 326 def foo(self): member in TestPredicates.test_isabstract.AbstractClassExample 330 def foo(self): member in TestPredicates.test_isabstract.ClassExample 350 def foo(self): member in TestPredicates.test_isabstract_during_init_subclass.AbstractClassExample 353 def foo(self): member in TestPredicates.test_isabstract_during_init_subclass.ClassExample 1051 def c(cls): pass member in TestClassesAndFunctions.test_classify_newstyle.A 1052 c = classmethod(c) variable in TestClassesAndFunctions.test_classify_newstyle.A 1100 def c(self): pass member in TestClassesAndFunctions.test_classify_newstyle.C 1331 def foo(a:int, b:str): pass function 1580 def foo(): pass function 1798 def f6(a, b, c): argument [all …]
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | MicrosoftSuper.cpp | 7 void foo() { in foo() function 17 void foo(int) {} in foo() function 32 void foo() { in foo() function 54 void foo(char) {} in foo() function 58 void foo() { in foo() function 64 void foo(int) {} in foo() function 65 void foo(char) {} in foo() function 69 void foo() { in foo() function 91 int foo() { return 0; } in foo() function 98 void foo() { in foo() function [all …]
|
H A D | cxx1y-generic-lambdas-capturing.cpp | 34 template<class T> void foo(T t) { in foo() function 40 auto N = [](auto c) -> void { in foo2() 164 int c[sizeof(b)]; in doit() local 181 return [=](auto c) { in doit() 197 auto foo() { in foo() function 201 return [=](auto c) { in foo() 217 auto foo() { in foo() function 221 return [=](auto c) { in foo() 251 void foo(R t) { in foo() function 255 return [=](auto c) { in foo() [all …]
|
H A D | warn-thread-safety-analysis.cpp | 544 void foo() __attribute__((exclusive_locks_required(mu))) { } in foo() function in LateFoo 555 int c __attribute__((guarded_by(mu))); member in LateFoo 944 int foo(int i) { in foo() function 978 Foo *foo; variable 1021 Foo *foo; member in thread_annot_lock_49::Bar 1144 Foo<int> *foo; in main() local 1205 Child *c; in main() local 1242 int Foo::foo() in foo() function in thread_annot_lock_13::Foo 1451 Foo *foo; variable 1476 Child *c; in main() local [all …]
|
H A D | array-bounds.cpp | 3 int foo() { in foo() function 45 char c[4]; in test() member 188 struct foo { struct 189 char c1[1]; // expected-note {{declared here}} 190 int x; 191 char c2[1]; 211 struct foo { char c[ONE]; }; // expected-note {{declared here}} member 212 template <int N> struct bar { char c[N]; }; // expected-note {{declared here}} member 222 int foo[5]; // expected-note 5 {{array 'foo' declared here}} in test_more() local 232 double foo[4096]; // expected-note {{array 'foo' declared here}} in test_pr10771() local
|
H A D | cxx1z-lambda-star-this.cpp | 13 auto foo() { in foo() function in test_star_this::ns1::A 30 void foo() { in foo() function in test_star_this::ns2::B 43 void foo() { in foo() function in test_star_this::ns3::B 50 B *c = (b.foo(), nullptr); //expected-note{{in instantiation}} variable 60 auto foo() { in foo() function in test_star_this::ns4::B 79 void foo() { in foo() function 83 void foo() const { //expected-note{{const}} in foo() function 117 auto N = [] (auto c) { in foo() 146 auto N = [] (auto c) { in foo() 156 void foo() volatile const { in foo() function [all …]
|
H A D | cxx1y-generic-lambdas.cpp | 63 auto L = [=](auto b, char c = 'x') { in test() 108 return [=](auto c) { in test() 182 int (*fp3)(char) = [](auto c) -> int { return c; }; in test() 354 static void foo(double d) { } in test() function 385 static void foo(double d) { } in test() function 417 static void foo(double d) { } in test() function 425 return [](auto ... c) { in test() 461 auto N = [](auto c) -> void { in fooT() 484 auto N = [](auto c) { in fooT() 506 auto N = [](auto c) { in fooV() [all …]
|
/aosp_15_r20/external/clang/test/OpenMP/ |
H A D | target_map_codegen.cpp | 681 void foo(int c) { in foo() function in SSS 763 void foo(int c) { in foo() function in SSST 772 void bar(int c) { in bar() 877 int foo(int d) { in foo() function 978 int foo(T d) { in foo() function 2542 int foo(T arg) { in foo() function 2684 CC<123,int> c; in explicit_maps_template_args_and_members() local 2753 int c[100]; variable 3048 float c[100]; in explicit_maps_inside_captured() local 4012 int foo(T arg) { in foo() function [all …]
|
H A D | declare_simd_codegen.cpp | 40 int tadd(int (&b)[], int &c) { return x[b[0]] + b[0]; } in tadd() 65 void foo(int (&b)[N], float *&c) {} in foo() function 74 int c[64]; in f() local 94 float foo(float *q, float x, int k) { return 0; } in foo() function 96 double foo(double x) { return 0; } in foo() function
|
/aosp_15_r20/external/clang/test/Index/ |
H A D | usrs.cpp | 1 namespace foo { namespace 16 namespace foo { namespace 35 namespace foo { namespace taz { namespace 42 namespace foo { namespace taz { namespace 78 RDar9371763_Foo foo; in rdar9371763() local 86 void funWithChar(char c) {} in funWithChar() 87 void funWithChar(unsigned char c) {} in funWithChar() 88 void funWithChar(signed char c) {} in funWithChar()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/ |
H A D | liveness_test.py | 76 def test_fn(x, a, b, c): # pylint:disable=unused-argument argument 92 def test_fn(x, a, b, c): # pylint:disable=unused-argument argument 182 def foo(): function 195 def foo(): function 214 def foo(): function 230 foo = lambda: a function 246 def foo(a): function 293 def test_fn(x, a, b, c): # pylint:disable=unused-argument argument 307 def test_fn(x, a, b, c): argument 339 def test_fn(x, a, b, c): # pylint:disable=unused-argument argument [all …]
|
/aosp_15_r20/external/clang/test/CodeGen/ |
H A D | ms_abi.c | 4 struct foo { struct 5 int x; 6 float y; 7 char z; 48 double _Complex c = __builtin_va_arg(ap, double _Complex); in f4() local 89 double _Complex c = __builtin_va_arg(ap, double _Complex); in f5() local 121 double _Complex c = __builtin_va_arg(ap, double _Complex); in f6() local
|
H A D | arm-byval-align.c | 3 struct foo { struct 6 int c:16; member 10 // CHECK: %struct.foo* byval align 8 %z argument 11 long long bar(int a, int b, int c, int d, int e, in bar()
|
H A D | ms_struct-bitfield.c | 13 char foo; member 23 char foo; member 35 char foo; member 80 char foo; member 111 char foo; member 144 char foo: 8; member 157 unsigned int c; member 166 unsigned short c : 6; member 175 __attribute__((packed)) unsigned short c : 6; member
|
/aosp_15_r20/external/clang/test/Analysis/ |
H A D | padding_cpp.cpp | 7 char c[129]; member 13 char c; member 17 char c; member 35 virtual void foo() {} in foo() function in VirtualPaddedA 39 virtual void foo() {} in foo() function in VirtualIntSandwich 60 char c; member in SI 70 char c; member in VirtualSI 81 virtual void foo() {} in foo() function in VtblSI 82 char c; member in VtblSI 86 virtual void foo() {} in foo() function in VtblSI2 [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
H A D | ProxyTest.java | 322 int foo(); in foo() method 326 float foo(); in foo() method 330 Integer foo(); in foo() method 334 String foo(); in foo() method 338 CharSequence foo(); in foo() method 342 CharSequence foo(); in foo() method 346 CharSequence foo(); in foo() method 350 Object foo(); in foo() method 354 void foo(); in foo() method 358 Echo foo(); in foo() method [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
H A D | util_test.py | 1024 def foo(): function 1030 def foo(a, b, c, d): # pylint: disable=unused-argument argument 1037 def bar(a, b, c): argument 1045 def foo(a, b, c): # pylint: disable=unused-argument argument 1053 def foo(**kwargs): # pylint: disable=unused-argument function 1059 def foo(a, b, c, **kwargs): # pylint: disable=unused-argument argument 1067 def foo(a, b, c, *varargs, **kwargs): # pylint: disable=unused-argument argument
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/ |
H A D | DateDeserializationTest.java | 62 private String foo; field in DateDeserializationTest.Date1722 65 public Date1722(Date date, String foo) { in Date1722() 82 public void setFoo(String foo) { in setFoo() 159 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testDateUtilISO8601() local 202 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testISO8601PartialMilliseconds() local 264 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testISO8601FractionalTimezoneOffset() local 280 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("UTC")); in testISO8601FractSecondsLong() local 306 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testISO8601MissingSeconds() local 346 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testDateUtilISO8601NoTimezone() local 371 Calendar c = Calendar.getInstance(TimeZone.getTimeZone("GMT")); in testDateUtilISO8601NoTimezoneNonDefault() local [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/x3/ |
D | symbols3.cpp | 28 boost::optional<int> c; member 32 a, b, c in BOOST_FUSION_ADAPT_STRUCT() argument 75 symbols<> foo = {"a1", "a2", "a3"}; in main() local 81 symbols<> foo; in main() local 89 x3::symbols_parser<char_encoding::unicode, int> foo = {{U"a1", 1}, {U"a2", 2}, {U"a3", 3}}; in main() local
|
/aosp_15_r20/external/clang/test/SemaObjC/ |
H A D | encode-typeof-test.m | 31 struct foo { struct 34 long c; field 43 …return @encode(struct foo); // expected-warning {{encoding of 'struct foo' type is incomplete beca… argument
|