Home
last modified time | relevance | path

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

12

/external/rust/crates/nom/src/sequence/
Dmod.rs28 pub fn pair<I, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> IResult<I, (O1… in pair() argument
41 pub fn pairc<I, O1, O2, E: ParseError<I>, F, G>(input: I, first: F, second: G) -> IResult<I, (O1, O… in pairc() argument
68 pub fn preceded<I, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> IResult<I,… in preceded() argument
81 pub fn precededc<I, O1, O2, E: ParseError<I>, F, G>(input: I, first: F, second: G) -> IResult<I, O2… in precededc() argument
108 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> IResult<… in terminated() argument
121 pub fn terminatedc<I, O1, O2, E: ParseError<I>, F, G>(input: I, first: F, second: G) -> IResult<I, … in terminatedc() argument
150 pub fn separated_pair<I, O1, O2, O3, E: ParseError<I>, F, G, H>(first: F, sep: G, second: H) -> imp… in separated_pair() argument
165 pub fn separated_pairc<I, O1, O2, O3, E: ParseError<I>, F, G, H>(input: I, first: F, sep: G, second… in separated_pairc() argument
195 pub fn delimited<I, O1, O2, O3, E: ParseError<I>, F, G, H>(first: F, sep: G, second: H) -> impl Fn(… in delimited() argument
210 pub fn delimitedc<I, O1, O2, O3, E: ParseError<I>, F, G, H>(input: I, first: F, sep: G, second: H) … in delimitedc() argument
/external/rust/crates/nom/src/combinator/
Dmod.rs75 pub fn map<I, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> IResult<I, O2, … in map() argument
78 G: Fn(O1) -> O2, in map()
87 pub fn mapc<I, O1, O2, E: ParseError<I>, F, G>(input: I, first: F, second: G) -> IResult<I, O2, E> in mapc() argument
90 G: Fn(O1) -> O2, in mapc()
116 pub fn map_res<I: Clone, O1, O2, E: ParseError<I>, E2, F, G>(first: F, second: G) -> impl Fn(I) -> … in map_res() argument
119 G: Fn(O1) -> Result<O2, E2>, in map_res()
132 pub fn map_resc<I: Clone, O1, O2, E: ParseError<I>, E2, F, G>(input: I, first: F, second: G) -> IRe… in map_resc() argument
135 G: Fn(O1) -> Result<O2, E2>, in map_resc()
161 pub fn map_opt<I: Clone, O1, O2, E: ParseError<I>, F, G>(first: F, second: G) -> impl Fn(I) -> IRes… in map_opt() argument
164 G: Fn(O1) -> Option<O2>, in map_opt()
[all …]
/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
Dgreater_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
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/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/llvm-project/libcxx/test/std/utilities/optional/optional.relops/
Dless_equal.pass.cpp72 using O2 = optional<long>; in main() typedef
79 using O2 = optional<const int>; in main() typedef
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
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/rust/crates/nom/src/bytes/
Dstreaming.rs456 pub fn escaped<Input, Error, F, G, O1, O2>(normal: F, control_char: char, escapable: G) -> impl Fn(… in escaped() argument
512 pub fn escapedc<Input, Error, F, G, O1, O2>(i: Input, normal: F, control_char: char, escapable: G) … in escapedc() argument
553 pub fn escaped_transform<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transform() argument
624 pub fn escaped_transformc<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transformc() argument
Dcomplete.rs446 pub fn escaped<Input, Error, F, G, O1, O2>(normal: F, control_char: char, escapable: G) -> impl Fn(… in escaped() argument
505 pub fn escapedc<Input, Error, F, G, O1, O2>(i: Input, normal: F, control_char: char, escapable: G) … in escapedc() argument
546 pub fn escaped_transform<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transform() argument
620 pub fn escaped_transformc<Input, Error, F, G, O1, O2, ExtendItem, Output>( in escaped_transformc() argument
/external/llvm/include/llvm/Passes/
DPassBuilder.h84 O2, enumerator
/external/llvm-project/clang/test/SemaObjCXX/
Ddelay-parsing-cplusfuncs.mm39 S::S(MyClass *O1, MyClass *O2) : Obj1(O1), Obj2(O2) { category
/external/clang/test/SemaObjCXX/
Ddelay-parsing-cplusfuncs.mm39 S::S(MyClass *O1, MyClass *O2) : Obj1(O1), Obj2(O2) { category
/external/rust/crates/nom/src/multi/
Dmod.rs238 pub fn separated_list<I, O, O2, E, F, G>(sep: G, f: F) -> impl Fn(I) -> IResult<I, Vec<O>, E> in separated_list() argument
292 pub fn separated_listc<I, O, O2, E, F, G>(i: I, sep: G, f: F) -> IResult<I, Vec<O>, E> in separated_listc() argument
325 pub fn separated_nonempty_list<I, O, O2, E, F, G>(sep: G, f: F) -> impl Fn(I) -> IResult<I, Vec<O>,… in separated_nonempty_list() argument
379 pub fn separated_nonempty_listc<I, O, O2, E, F, G>(i: I, sep: G, f: F) -> IResult<I, Vec<O>, E> in separated_nonempty_listc() argument
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dperformance-for-range-copy-allowed-types.cpp118 auto O2 = O; in positiveOtherType() local
/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/llvm-project/llvm/include/llvm/Passes/
DPassBuilder.h223 static const OptimizationLevel O2; variable

12