Home
last modified time | relevance | path

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

/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/typescript/tests/cases/compiler/
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign2.ts2 type Either<L, A> = Left<L, A> | Right<L, A>; alias
DvarianceProblingAndZeroOrderIndexSignatureRelationsAlign.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