/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/fixedbugs/ |
D | issue51229.go | 12 func f00[S1 ~[]E1, S2 ~[]E2, E1 ~byte, E2 ~byte](S1, S2) {} 13 func f01[S2 ~[]E2, S1 ~[]E1, E1 ~byte, E2 ~byte](S1, S2) {} 14 func f02[E1 ~byte, S1 ~[]E1, S2 ~[]E2, E2 ~byte](S1, S2) {} 15 func f03[S1 ~[]E1, E1 ~byte, S2 ~[]E2, E2 ~byte](S1, S2) {} 16 func f04[S2 ~[]E2, E1 ~byte, S1 ~[]E1, E2 ~byte](S1, S2) {} 17 func f05[E1 ~byte, S2 ~[]E2, S1 ~[]E1, E2 ~byte](S1, S2) {} 18 func f06[E2 ~byte, S2 ~[]E2, S1 ~[]E1, E1 ~byte](S1, S2) {} 19 func f07[S2 ~[]E2, E2 ~byte, S1 ~[]E1, E1 ~byte](S1, S2) {} 20 func f08[S1 ~[]E1, E2 ~byte, S2 ~[]E2, E1 ~byte](S1, S2) {} 21 func f09[E2 ~byte, S1 ~[]E1, S2 ~[]E2, E1 ~byte](S1, S2) {} [all …]
|
/aosp_15_r20/external/clang/INPUTS/ |
H A D | c99-intconst-1.c | 41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument 44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument 50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument 57 #define first_of6p(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument 67 #define first_of2(T1, E1, T2, E2) \ argument 69 #define first_of3(T1, E1, T2, E2, T3, E3) \ argument 71 #define first_of4(T1, E1, T2, E2, T3, E3, T4, E4) \ argument 73 #define first_of6(T1, E1, T2, E2, T3, E3, T4, E4, T5, E5, T6, E6) \ argument
|
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | _swizzle.hpp | 334 #define _GLM_SWIZZLE3_2_MEMBERS(T, P, V, E0,E1,E2) \ argument 345 #define _GLM_SWIZZLE3_3_MEMBERS(T, P, V ,E0,E1,E2) \ argument 374 #define _GLM_SWIZZLE3_4_MEMBERS(T, P, V, E0,E1,E2) \ argument 457 #define _GLM_SWIZZLE4_2_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument 475 #define _GLM_SWIZZLE4_3_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument 541 #define _GLM_SWIZZLE4_4_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument
|
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/detail/ |
D | _swizzle.hpp | 334 #define _GLM_SWIZZLE3_2_MEMBERS(T, P, V, E0,E1,E2) \ argument 345 #define _GLM_SWIZZLE3_3_MEMBERS(T, P, V ,E0,E1,E2) \ argument 374 #define _GLM_SWIZZLE3_4_MEMBERS(T, P, V, E0,E1,E2) \ argument 457 #define _GLM_SWIZZLE4_2_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument 475 #define _GLM_SWIZZLE4_3_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument 541 #define _GLM_SWIZZLE4_4_MEMBERS(T, P, V, E0,E1,E2,E3) \ argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/nom/src/bits/ |
D | mod.rs | 40 pub fn bits<I, O, E1, E2, P>(mut parser: P) -> impl FnMut(I) -> IResult<I, O, E2> in bits() argument 42 E1: ParseError<(I, usize)> + ErrorConvert<E2>, in bits() argument 86 pub fn bytes<I, O, E1, E2, P>(mut parser: P) -> impl FnMut((I, usize)) -> IResult<(I, usize), O, E2> in bytes() argument 88 E1: ParseError<I> + ErrorConvert<E2>, in bytes()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/bits/ |
H A D | mod.rs | 40 pub fn bits<I, O, E1, E2, P>(mut parser: P) -> impl FnMut(I) -> IResult<I, O, E2> in bits() argument 42 E1: ParseError<(I, usize)> + ErrorConvert<E2>, in bits() argument 86 pub fn bytes<I, O, E1, E2, P>(mut parser: P) -> impl FnMut((I, usize)) -> IResult<(I, usize), O, E2> in bytes() argument 88 E1: ParseError<I> + ErrorConvert<E2>, in bytes()
|
/aosp_15_r20/external/rust/android-crates-io/crates/axum/src/ |
D | boxed.rs | 166 fn clone_box(&self) -> Box<dyn ErasedIntoRoute<S, B2, E2>> { in clone_box() argument 173 fn into_route(self: Box<Self>, state: S) -> Route<B2, E2> { in into_route() argument 177 fn call_with_state(self: Box<Self>, request: Request<B2>, state: S) -> RouteFuture<B2, E2> { in call_with_state() argument 183 fn clone_box(&self) -> Box<dyn LayerFn<B, E, B2, E2>>; in clone_box() argument 190 fn clone_box(&self) -> Box<dyn LayerFn<B, E, B2, E2>> { in clone_box() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/binary/bits/ |
D | mod.rs | 49 pub fn bits<I, O, E1, E2, P>(mut parser: P) -> impl Parser<I, O, E2> in bits() argument 51 E1: ParserError<(I, usize)> + ErrorConvert<E2>, in bits() argument 108 pub fn bytes<I, O, E1, E2, P>(mut parser: P) -> impl Parser<(I, usize), O, E2> in bytes() argument 110 E1: ParserError<I> + ErrorConvert<E2>, in bytes()
|
/aosp_15_r20/external/webrtc/modules/audio_processing/aec3/ |
H A D | erle_estimator_unittest.cc | 84 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> E2, in FormFarendFrame() 109 rtc::ArrayView<std::array<float, kFftLengthBy2Plus1>> E2, in FormNearendFrame() 158 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(num_capture_channels); in TEST_P() local 223 std::vector<std::array<float, kFftLengthBy2Plus1>> E2(num_capture_channels); in TEST_P() local
|
/aosp_15_r20/external/compiler-rt/test/cfi/ |
H A D | simple-pass.cpp | 71 struct E2 : virtual E { struct 72 virtual void f() {} in f() 73 void g() {} in g()
|
/aosp_15_r20/external/mtools/ |
H A D | hash.c | 162 static int _hash_lookup(T_HashTable *H,T_HashTableEl *E, T_HashTableEl **E2, in _hash_lookup() 197 int hash_lookup(T_HashTable *H,T_HashTableEl *E, T_HashTableEl **E2, in hash_lookup() 206 T_HashTableEl *E2; in hash_remove() local
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | COFFPlatform.cpp | 412 if (auto E2 = setupJITDylib(PlatformJD)) { in COFFPlatform() local 418 if (auto E2 = LoadDynLibrary(PlatformJD, Lib)) { in COFFPlatform() local 424 if (auto E2 = VCRuntimeBootstrap->initializeStaticVCRuntime(PlatformJD)) { in COFFPlatform() local 430 if (auto E2 = associateRuntimeSupportFunctions(PlatformJD)) { in COFFPlatform() local 438 if (auto E2 = bootstrapCOFFRuntime(PlatformJD)) { in COFFPlatform() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/nom/src/combinator/ |
D | mod.rs | 104 pub fn map_res<I: Clone, O1, O2, E: FromExternalError<I, E2>, E2, F, G>( in map_res() argument 663 pub fn into<I, O1, O2, E1, E2, F>(mut parser: F) -> impl FnMut(I) -> IResult<I, O2, E2> in into() argument 666 E1: Into<E2>, in into()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/combinator/ |
H A D | mod.rs | 104 pub fn map_res<I: Clone, O1, O2, E: FromExternalError<I, E2>, E2, F, G>( in map_res() argument 663 pub fn into<I, O1, O2, E1, E2, F>(mut parser: F) -> impl FnMut(I) -> IResult<I, O2, E2> in into() argument 666 E1: Into<E2>, in into()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/core/test/ |
D | pointer_traits_element_type_test.cpp | 27 struct E2 { struct 28 typedef bool element_type;
|
D | pointer_traits_rebind_test.cpp | 29 struct E2 { struct 31 using rebind = E2<bool, T2>; argument
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | class-names.cpp | 52 enum E2 { E2 }; enum
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/testdata/check/ |
D | issues0.go | 343 E2 anonMember 347 type E2 struct{ f int } argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 315 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() 341 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() 375 bool compare(const SExpr *E1, const SExpr *E2) { in compare() 393 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs()
|
D | ThreadSafetyCommon.h | 65 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { in equals() 69 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { in matches() 81 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { in partiallyMatches()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 315 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() 341 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() 375 bool compare(const SExpr *E1, const SExpr *E2) { in compare() 393 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 315 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() 341 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() 375 bool compare(const SExpr *E1, const SExpr *E2) { in compare() 393 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 315 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() 341 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 355 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() 375 bool compare(const SExpr *E1, const SExpr *E2) { in compare() 393 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs()
|
/aosp_15_r20/external/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyTraverse.h | 289 bool compareByCase(const SExpr *E1, const SExpr* E2) { in compareByCase() 316 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 330 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs() 352 bool compare(const SExpr *E1, const SExpr* E2) { in compare() 370 static bool compareExprs(const SExpr *E1, const SExpr* E2) { in compareExprs()
|
H A D | ThreadSafetyCommon.h | 43 inline bool equals(const til::SExpr *E1, const til::SExpr *E2) { in equals() 47 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { in matches() 59 inline bool partiallyMatches(const til::SExpr *E1, const til::SExpr *E2) { in partiallyMatches()
|