Home
last modified time | relevance | path

Searched defs:O2 (Results 1 – 25 of 30) sorted by relevance

12

/external/rust/crates/nom/src/sequence/
Dmod.rs29 pub fn pair<I, O1, O2, E: ParseError<I>, F, G>( in pair() argument
32 ) -> impl FnMut(I) -> IResult<I, (O1, O2), E> in pair() argument
63 pub fn preceded<I, O1, O2, E: ParseError<I>, F, G>( in preceded() argument
97 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>( in terminated() argument
133 pub fn separated_pair<I, O1, O2, O3, E: ParseError<I>, F, G, H>( in separated_pair() argument
172 pub fn delimited<I, O1, O2, O3, E: ParseError<I>, F, G, H>( in delimited() argument
/external/rust/crates/nom/src/combinator/
Dmod.rs73 pub fn map<I, O1, O2, E, F, G>(mut parser: F, mut f: G) -> impl FnMut(I) -> IResult<I, O2, E> in map() argument
76 G: FnMut(O1) -> O2, in map()
104 pub fn map_res<I: Clone, O1, O2, E: FromExternalError<I, E2>, E2, F, G>( in map_res() argument
110 G: FnMut(O1) -> Result<O2, E2>, in map_res()
142 pub fn map_opt<I: Clone, O1, O2, E: ParseError<I>, F, G>( in map_opt() argument
148 G: FnMut(O1) -> Option<O2>, in map_opt()
176 pub fn map_parser<I, O1, O2, E: ParseError<I>, F, G>( in map_parser() argument
206 pub fn flat_map<I, O1, O2, E: ParseError<I>, F, G, H>( in flat_map() argument
417 pub fn verify<I: Clone, O1, O2, E: ParseError<I>, F, G>( in verify() argument
424 O1: Borrow<O2>, in verify()
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DFunctions.java294 …public static <O1, O2, T extends Throwable> void accept(final FailableBiConsumer<O1, O2, T> consum… in accept() argument
323 …public static <O1, O2, O, T extends Throwable> O apply(final FailableBiFunction<O1, O2, O, T> func… in apply() argument
351 …public static <O1, O2> BiConsumer<O1, O2> asBiConsumer(final FailableBiConsumer<O1, O2, ?> consume… in asBiConsumer() argument
365 …public static <O1, O2, O> BiFunction<O1, O2, O> asBiFunction(final FailableBiFunction<O1, O2, O, ?… in asBiFunction() argument
378 …public static <O1, O2> BiPredicate<O1, O2> asBiPredicate(final FailableBiPredicate<O1, O2, ?> pred… in asBiPredicate() argument
592 …public static <O1, O2, T extends Throwable> boolean test(final FailableBiPredicate<O1, O2, T> pred… in test() argument
/external/rust/crates/nom/src/
Dinternal.rs249 G: Fn(O) -> O2, in map()
260 fn flat_map<G, H, O2>(self, g: G) -> FlatMap<Self, G, O> in flat_map() argument
274 fn and_then<G, O2>(self, g: G) -> AndThen<Self, G, O> in and_then() argument
287 fn and<G, O2>(self, g: G) -> And<Self, G> in and() argument
306 fn into<O2: From<O>, E2: From<E>>(self) -> Into<Self, O, O2, E, E2> in into() argument
348 fn parse(&mut self, i: I) -> IResult<I, O2, E> { in parse() argument
367 fn parse(&mut self, i: I) -> IResult<I, O2, E> { in parse() argument
384 fn parse(&mut self, i: I) -> IResult<I, O2, E> { in parse() argument
401 fn parse(&mut self, i: I) -> IResult<I, (O1, O2), E> { in parse() argument
449 fn parse(&mut self, i: I) -> IResult<I, O2, E2> { in parse() argument
/external/webp/src/dsp/
Dmips_macro.h41 #define LOAD_WITH_OFFSET_X4(O0, O1, O2, O3, \ argument
51 #define MUL_SHIFT_SUM(O0, O1, O2, O3, O4, O5, O6, O7, \ argument
84 #define SRA_16(O0, O1, O2, O3, \ argument
97 #define SHIFT_R_SUM_X2(O0, O1, O2, O3, O4, O5, O6, O7, \ argument
123 #define PACK_2_HALVES_TO_WORD(O0, O1, O2, O3, \ argument
141 #define CONVERT_2_BYTES_TO_HALF(O0, O1, O2, O3, O4, O5, O6, O7, \ argument
/external/libcxx/test/std/utilities/optional/optional.relops/
Dless_equal.pass.cpp71 using O2 = optional<long>; in main() typedef
78 using O2 = optional<const int>; in main() typedef
Dless_than.pass.cpp69 using O2 = optional<long>; in main() typedef
76 using O2 = optional<const int>; in main() typedef
Dgreater_than.pass.cpp69 using O2 = optional<long>; in main() typedef
76 using O2 = optional<const int>; in main() typedef
Dgreater_equal.pass.cpp71 using O2 = optional<long>; in main() typedef
78 using O2 = optional<const int>; in main() typedef
Dnot_equal.pass.cpp74 using O2 = optional<long>; in main() typedef
81 using O2 = optional<const int>; in main() typedef
Dequal.pass.cpp74 using O2 = optional<long>; in main() typedef
81 using O2 = optional<const int>; in main() typedef
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/optional/optional.relops/
Dgreater_equal.pass.cpp72 using O2 = optional<long>; in main() typedef
79 using O2 = optional<const int>; in main() typedef
Dless_than.pass.cpp70 using O2 = optional<long>; in main() typedef
77 using O2 = optional<const int>; in main() typedef
Dgreater_than.pass.cpp70 using O2 = optional<long>; in main() typedef
77 using O2 = optional<const int>; in main() typedef
Dless_equal.pass.cpp72 using O2 = optional<long>; in main() typedef
79 using O2 = optional<const int>; in main() typedef
Dnot_equal.pass.cpp75 using O2 = optional<long>; in main() typedef
82 using O2 = optional<const int>; in main() typedef
Dequal.pass.cpp75 using O2 = optional<long>; in main() typedef
82 using O2 = optional<const int>; in main() typedef
/external/llvm/include/llvm/Passes/
DPassBuilder.h84 O2, enumerator
/external/clang/test/SemaObjCXX/
Ddelay-parsing-cplusfuncs.mm39 S::S(MyClass *O1, MyClass *O2) : Obj1(O1), Obj2(O2) { category
/external/rust/crates/nom/src/bytes/
Dstreaming.rs525 pub fn escaped<Input, Error, F, G, O1, O2>( in escaped() argument
627 pub fn escaped_transform<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transform() argument
Dcomplete.rs509 pub fn escaped<'a, Input: 'a, Error, F, G, O1, O2>( in escaped() argument
623 pub fn escaped_transform<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transform() argument
/external/rust/crates/nom/src/multi/
Dmod.rs228 pub fn separated_list0<I, O, O2, E, F, G>( in separated_list0() argument
302 pub fn separated_list1<I, O, O2, E, F, G>( in separated_list1() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Passes/
DPassBuilder.h184 O2, enumerator
/external/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp667 static bool notDifferentParent(const Value *O1, const Value *O2) { in notDifferentParent()
1420 const Value *O2 = GetUnderlyingObject(V2, DL, MaxLookupSearchDepth); in aliasCheck() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp831 static bool notDifferentParent(const Value *O1, const Value *O2) { in notDifferentParent()
1738 const Value *O2) { in aliasCheck()

12