Home
last modified time | relevance | path

Searched refs:either (Results 1 - 25 of 281) sorted by relevance

12345678910>>...12

/third_party/vk-gl-cts/framework/common/
H A DtcuEither.cpp15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * \brief Template class that is either type of Left or Right.
90 const Either<int, float> either (intValue); in Either_selfTest()
92 TCU_CHECK(either.isFirst()); in Either_selfTest()
93 TCU_CHECK(!either.isSecond()); in Either_selfTest()
95 TCU_CHECK(either.is<int>()); in Either_selfTest()
96 TCU_CHECK(!either.is<float>()); in Either_selfTest()
98 TCU_CHECK(either.getFirst() == intValue); in Either_selfTest()
99 TCU_CHECK(either.get<int>() == intValue); in Either_selfTest()
105 const Either<int, float> either (floatValu in Either_selfTest()
[all...]
H A DtcuEither.hpp17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * \brief Template class that is either type of First or Second.
92 static const First& get (const Either<First, Second>& either) in get()
94 return either.getFirst(); in get()
101 static const Second& get (const Either<First, Second>& either) in get()
103 return either.getSecond(); in get()
108 const Type& get (const Either<First, Second>& either) in get() argument
110 return Get<Type, First, Second>::get(either); in get()
119 static bool is (const Either<First, Second>& either) in is()
121 return either in is()
135 is(const Either<First, Second>& either) is() argument
[all...]
/third_party/rust/crates/which-rs/src/
H A Dlib.rs239 cwd: Option<either::Either<bool, path::PathBuf>>,
249 cwd: Some(either::Either::Left(true)), in default()
279 self.cwd = Some(either::Either::Left(use_cwd)); in system_cwd()
293 self.cwd = Some(either::Either::Right(cwd)); in custom_cwd()
315 if self.cwd != Some(either::Either::Left(false)) && self.cwd.is_some() { in regex()
374 Some(either::Either::Left(false)) => None, in all_results()
375 Some(either::Either::Right(custom)) => Some(custom), in all_results()
376 None | Some(either::Either::Left(true)) => env::current_dir().ok(), in all_results()
/third_party/python/Include/internal/
H A Dpycore_gil.h15 # error You need either a POSIX-compatible or a Windows system!
/third_party/skia/third_party/externals/angle2/util/
H A Dutil_gl.h22 # error Config error. Should either be using the ANGLE GL loader or header prototypes.
/third_party/vk-gl-cts/external/amber/src/kokoro/windows-msvc-2017-debug/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/vk-gl-cts/external/amber/src/kokoro/windows-msvc-2017-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2013-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2015-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2017-debug/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/spirv-tools/kokoro/windows-msvc-2017-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/windows-msvc-2013-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/windows-msvc-2015-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/windows-msvc-2017-debug/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/windows-msvc-2017-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/spirv-tools/kokoro/windows-msvc-2017-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/spirv-tools/kokoro/windows-msvc-2019-debug/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/spirv-tools/kokoro/windows-msvc-2019-release/
H A Dbuild.bat11 :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/vulkan-loader/loader/
H A Dasm_test_x86.S14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/ffmpeg/libavcodec/arm/
H A Dvideodsp_armv5te.S9 @ License as published by the Free Software Foundation; either
/third_party/curl/winbuild/
H A Dgen_resp_file.bat20 rem * KIND, either express or implied.
/third_party/ffmpeg/libavutil/x86/
H A Demms.asm8 ;* License as published by the Free Software Foundation; either
/third_party/skia/third_party/externals/tint/kokoro/windows/cmake-msvc2019-debug/
H A Dbuild.bat11 @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/skia/third_party/externals/tint/kokoro/windows/cmake-msvc2019-release/
H A Dbuild.bat11 @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/third_party/rust/crates/regex/regex-syntax/src/
H A Dlib.rs166 mod either; modules
221 /// is considered a word character if it is in either of the `Alphabetic` or
241 /// is considered a word character if it is in either of the `Alphabetic` or

Completed in 6 milliseconds

12345678910>>...12