Home
last modified time | relevance | path

Searched defs:Either (Results 1 – 11 of 11) 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>> { implementation
773 impl<L, R, E> Either<Result<L, E>, Result<R, E>> { implementation
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)> { impl
861 impl<T> Either<T, T> { impl
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/
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
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
/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/compiler/
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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h519 const static Kind Either = (Kind)(JIT | Interpreter); variable