Home
last modified time | relevance | path

Searched defs:foo2 (Results 1 – 25 of 237) sorted by relevance

12345678910

/aosp_15_r20/external/python/cpython3/Lib/test/test_asyncio/
Dtest_taskgroups.py37 async def foo2(): function
54 async def foo2(): function
72 async def foo2(): function
98 async def foo2(): function
137 async def foo2(): function
265 async def foo2(): function
295 async def foo2(): function
634 async def foo2(): function
/aosp_15_r20/external/cronet/base/android/junit/src/org/chromium/base/
H A DUnownedUserDataKeyTest.java525 Foo foo2 = new Foo(); in testTwoSimilarItemsSingleHost_attachAndDetach() local
561 Foo foo2 = new Foo(); in testTwoSimilarItemsSingleHost_attachAndDetachInSequence() local
607 Foo foo2 = new Foo(); in testTwoSimilarItemsSingleHost_attachAndGarbageColletionReturnsNull() local
639 Foo foo2 = new Foo(); in testTwoSimilarItemsMultipleHosts_destroyOnlyDetachesFromOneHost() local
676 Foo foo2 = new Foo(); in testTwoSimilarItemsMultipleHosts_destroyShouldOnlyRemoveFromCurrentHostWithMultipleKeys() local
/aosp_15_r20/external/rust/android-crates-io/crates/tracing/tests/
Dspan.rs28 let foo2 = foo1.clone(); in handles_to_the_same_span_are_equal() localVariable
42 let foo2 = tracing::span!(Level::TRACE, "foo", bar = 1u64, baz = false); in handles_to_different_spans_are_not_equal() localVariable
59 let foo2 = make_span(); in handles_to_different_spans_with_the_same_metadata_are_not_equal() localVariable
254 let foo2 = foo.clone(); in clone_and_drop_span_always_go_to_the_subscriber_that_tagged_the_span() localVariable
/aosp_15_r20/external/clang/test/CodeGen/
H A Ddebug-info.c37 struct foo2 { struct
41 struct foo2 foo2; argument
/aosp_15_r20/libcore/ojluni/src/test/java/io/Serializable/records/
H A DUnsharedTest.java61 var foo2 = (Foo) deserializeOne(byteStream); in testReadUnshared() local
81 var foo2 = (Foo) deserializeOne(byteStream); in testWriteUnshared() local
89 var foo2 = (Foo) deserializeOneUnshared(byteStream); in testWriteUnshared() local
/aosp_15_r20/external/libchrome/base/containers/
H A Dunique_ptr_adapters_unittest.cc27 Foo* foo2 = new Foo(); in TEST() local
74 Foo* foo2 = foo_ptr2.get(); in TEST() local
108 Foo* foo2 = foo_ptr2.get(); in TEST() local
/aosp_15_r20/external/cronet/base/containers/
H A Dunique_ptr_adapters_unittest.cc28 Foo* foo2 = new Foo(); in TEST() local
75 Foo* foo2 = foo_ptr2.get(); in TEST() local
109 Foo* foo2 = foo_ptr2.get(); in TEST() local
/aosp_15_r20/external/grpc-grpc/test/core/gprpp/
H A Dref_counted_ptr_test.cc62 RefCountedPtr<Foo> foo2(std::move(foo)); in TEST() local
70 RefCountedPtr<Foo> foo2 = std::move(foo); in TEST() local
78 RefCountedPtr<Foo> foo2(foo); in TEST() local
85 RefCountedPtr<Foo> foo2 = foo; in TEST() local
92 RefCountedPtr<Foo> foo2; in TEST() local
106 RefCountedPtr<Foo> foo2(std::move(foo)); in TEST() local
195 RefCountedPtr<FooWithTracing> foo2 = foo->Ref(DEBUG_LOCATION, "foo"); in TEST() local
H A Dunique_type_name_test.cc66 Foo foo2; in TEST() local
80 Foo2 foo2; in TEST() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/test/
Dis_abstract_test.cpp32 struct TestL : public TestK { virtual void foo2(void) {} }; in foo2() function
44 struct TestX : public TestW { virtual void foo1(void) {} virtual void foo2(void) {} }; in foo1() function
67 template <class T> struct TTestL : public TTestK<T> { virtual void foo2(void) {} }; in foo2() function
79 template <class T> struct TTestX : public TTestW<T> { virtual void foo1(void) {} virtual void foo2 in foo1() function
/aosp_15_r20/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
H A DClassNameTest.kt245 val foo2 = ClassName(names = listOf("com.example", "Foo")) in equalsAndHashCode() constant
283 val foo2 = ClassName(names = listOf("com.example", "Foo")) in compareToConsistentWithEquals() constant
/aosp_15_r20/external/pytorch/test/inductor/
H A Dtest_cudagraph_trees.py502 def foo2(x): function
525 def foo2(x): function
969 def foo2(args): function
1033 def foo2(x): function
1071 def foo2(x): function
1335 def foo2(args): function
1429 def foo2(args): function
1467 def foo2(args): function
1754 def foo2(x): function
/aosp_15_r20/external/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/
H A Drwyw.rs155 let foo2 = Foo::deserialize(r).unwrap(); localVariable
175 let foo2 = Foo::deserialize(r).unwrap(); localVariable
190 let foo2 = Foo::deserialize(r).unwrap(); localVariable
204 let foo2 = Foo::deserialize(r).unwrap(); in empty_vectors() localVariable
/aosp_15_r20/external/llvm/test/Object/Inputs/
H A Delfver.S24 .globl foo2 symbol
26 foo2: label
/aosp_15_r20/external/llvm/test/MC/ELF/
H A Dalias.s6 .globl foo2 symbol
7 foo2 = bar2 define
/aosp_15_r20/external/javassist/src/test/test2/
H A DInherit.java8 void foo2(); in foo2() method
17 public void foo2() { System.out.println("foo2"); } in foo2() method in Inherit
/aosp_15_r20/art/test/408-move-bug/src/
H A DMain.java28 Main foo2 = create(); in crash() local
48 Main foo2 = create(); in npe() local
/aosp_15_r20/system/tools/aidl/tests/java/src/android/aidl/tests/
DJavaOnlyImmutableAnnotationTests.java56 Foo foo2 = Foo.CREATOR.createFromParcel(parcel); in testReadWriteJavaOnlyImmutableParcelable() local
119 Foo foo2 = new Foo.Builder() in testBuilder() local
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
H A DLongTest.java61 Foo foo2 = yaml.load(output); in testLongRepresenter() local
69 Foo foo2 = yaml.load(doc); in testLongConstructor() local
/aosp_15_r20/external/clang/test/CodeGenObjC/
H A Darc-foreach.m177 - (void) foo2; method
188 - (void) foo2 { method
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/core/test/
Deif_lazy_test.cpp67 foo2(T t) { return true; } in foo2() function
77 foo2(T t) { return false; } in foo2() function
/aosp_15_r20/external/pytorch/test/cpp/jit/
H A Dtest_qualified_name.cpp52 auto foo2 = QualifiedName("foo.bar.baz"); in TEST() local
64 auto foo2 = QualifiedName("foo.bar"); in TEST() local
/aosp_15_r20/external/federated-compute/fcp/testing/
H A Dtesting_test.cc66 testing::Foo foo2; in TEST() local
74 testing::Foo foo2; in TEST() local
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Daarch64-aapcs-zerolength-bitfield.cpp138 char foo2 : 1; member
192 long foo2 : 1; member
215 int foo2 : 16; member
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/classic/phoenix/test/
Dbinders_tests.cpp32 void foo2(int n0, int n1) { cout << "print_::foo2 " << n0 << ", " << n1 << " \n"; } in foo2() function
52 void foo2(int n0, int n1) // a function w/ 2 args in foo2() function

12345678910