Home
last modified time | relevance | path

Searched defs:Either (Results 1 – 14 of 14) sorted by relevance

/third_party/rust/crates/either/src/
Dlib.rs50 pub enum Either<L, R> { enum
134 impl<L: Clone, R: Clone> Clone for Either<L, R> { implementation
151 impl<L, R> Either<L, R> { impl
752 impl<L, R> Either<Option<L>, Option<R>> { impl
773 impl<L, R, E> Either<Result<L, E>, Result<R, E>> { impl
796 impl<T, L, R> Either<Result<T, L>, Result<T, R>> { impl
819 impl<T, L, R> Either<(T, L), (T, R)> { implementation
840 impl<T, L, R> Either<(L, T), (R, T)> { implementation
861 impl<T> Either<T, T> { implementation
900 impl<L, R> From<Result<R, L>> for Either<L, R> { implementation
[all …]
Dserde_untagged.rs40 enum Either<L, R> { enum
Dserde_untagged_optional.rs40 enum Either<L, R> { enum
/third_party/vk-gl-cts/framework/common/
DtcuEither.hpp40 class Either class
155 Either<First, Second>::Either (const First& first) in Either() function in tcu::Either
162 Either<First, Second>::Either (const Second& second) in Either() function in tcu::Either
175 Either<First, Second>::Either (const Either<First, Second>& other) in Either() function in tcu::Either
/third_party/typescript/tests/baselines/reference/
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign.js10 map<B>(f: (a: A) => B): Either<L, B> { field in Left
23 map<B>(f: (a: A) => B): Either<L, B> { field in Right
26 ap<B>(fab: Either<L, (a: A) => B>): Either<L, B> { field in Right
46 decode(i: I): Either<{}[], A> { return null as any; } field in Type
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign2.js10 map<B>(f: (a: A) => B): Either<L, B> { field in Left
23 map<B>(f: (a: A) => B): Either<L, B> { field in Right
26 ap<B>(fab: Either<L, (a: A) => B>): Either<L, B> { field in Right
46 decode(i: I): Either<{}[], A> { return null as any; } field in Type
/third_party/rust/crates/regex/regex-syntax/src/
Deither.rs5 pub enum Either<Left, Right> { enum
/third_party/rust/crates/either/
DREADME.rst2 Either title
/third_party/typescript/tests/cases/conformance/async/es2017/
Dawait_incorrectThisType.ts6 type Either<E, A> = Left<E> | Right<A>; alias
/third_party/typescript/tests/cases/compiler/
DnonInferrableTypePropagation2.ts17 type Either<E, A> = Left<E> | Right<A>; alias
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign.ts2 type Either<L, A> = Left<L, A> | Right<L, A>; alias
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign2.ts2 type Either<L, A> = Left<L, A> | Right<L, A>; alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownControlFlow.ts437 type Either = Left | Right; alias
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h519 const static Kind Either = (Kind)(JIT | Interpreter); variable