Home
last modified time | relevance | path

Searched defs:either (Results 1 – 4 of 4) sorted by relevance

/third_party/vk-gl-cts/framework/common/
DtcuEither.cpp90 const Either<int, float> either (intValue); in Either_selfTest() local
105 const Either<int, float> either (floatValue); in Either_selfTest() local
121 Either<int, float> either (floatValue); in Either_selfTest() local
139 Either<int, float> either (intValue); in Either_selfTest() local
157 Either<int, float> either (floatValue); in Either_selfTest() local
176 Either<int, float> either (intValue); in Either_selfTest() local
194 const Either<TestClassWithConstructor, int> either (testObject); in Either_selfTest() local
209 const Either<int, TestClassWithConstructor> either (testObject); in Either_selfTest() local
225 Either<TestClassWithConstructor, int> either (intValue); in Either_selfTest() local
243 Either<int, TestClassWithConstructor> either (intValue); in Either_selfTest() local
[all …]
DtcuEither.hpp108 const Type& get (const Either<First, Second>& either) in get()
135 bool is (const Either<First, Second>& either) in is()
/third_party/rust/crates/regex/regex-syntax/src/
Dlib.rs166 mod either; module
/third_party/rust/crates/either/src/
Dlib.rs367 pub fn either<F, G, T>(self, f: F, g: G) -> T in either() method