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

1234567891011>>

/external/deqp/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);
92 TCU_CHECK(either.isFirst());
93 TCU_CHECK(!either.isSecond());
95 TCU_CHECK(either.is<int>());
96 TCU_CHECK(!either.is<float>());
98 TCU_CHECK(either.getFirst() == intValue);
99 TCU_CHECK(either.get<int>() == intValue);
105 const Either<int, float> either (floatValu
[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) argument
94 return either.getFirst();
101 static const Second& get (const Either<First, Second>& either) argument
103 return either.getSecond();
108 const Type& get (const Either<First, Second>& either) argument
110 return Get<Type, First, Second>::get(either);
119 static bool is (const Either<First, Second>& either) argument
121 return either
128 is(const Either<First, Second>& either) argument
135 is(const Either<First, Second>& either) argument
[all...]
/external/scrypt/
H A Dscrypt_platform.h9 #error Need either CONFIG_H_FILE or HAVE_CONFIG_H defined.
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DTimeValue.inc35 // This ban may be lifted by either:
37 // (ii) configure tests for either the time_t or __time64_t type.
/external/curl/docs/cmdline-opts/
H A Dnetrc-optional.d2 Help: Use either .netrc or URL
H A Dnoproxy.d8 effectively disables the proxy. Each name in this list is matched as either
H A Dnetrc.d10 either world- or group-readable). The environment variable "HOME" is used to
/external/ltp/
H A DMakefile.release8 # the Free Software Foundation; either version 2 of the License, or
38 TARBALL_VERSION ?= $(error you must either make Version via make $$PWD/Version or specify an LTP version via TARBALL_VERSION)
/external/clang/test/SemaCXX/
H A Ddiscrim-union.cpp67 class either { class
74 constexpr either(a<U> &&t) : function in class:either
80 //~either() { impl.destroy(elem); }
101 typedef either<int, char, double> icd;
114 constexpr either<const icd*, non_triv> icd4 = a<const icd*>(&icd2);
115 constexpr either<const icd*, non_triv> icd5 = a<non_triv>();
/external/compiler-rt/lib/builtins/
H A Dfp_fixuint_impl.inc25 // If either the value or the exponent is negative, the result is zero.
/external/junit/src/main/java/org/junit/matchers/
H A DJUnitMatchers.java86 * This is useful for fluently combining matchers where either may pass, for example:
88 * assertThat(string, either(containsString("a")).or(containsString("b")));
91 * @deprecated Please use {@link CoreMatchers#either(Matcher)} instead.
94 public static <T> CombinableEitherMatcher<T> either(Matcher<? super T> matcher) { method in class:JUnitMatchers
95 return CoreMatchers.either(matcher);
/external/llvm/test/MC/Sparc/
H A Dsparc-directives.s5 ! so it should do nothing for clang either, i.e. not be an error.
/external/ImageMagick/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/ImageMagick/filters/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/c-ares/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/deqp/android/cts/runner/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/eyes-free/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/flatbuffers/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/ims/rcs/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/jacoco/
H A Dconfig.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/jline/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/jmdns/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/jsilver/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/mp4parser/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/external/owasp/sanitizer/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

Completed in 826 milliseconds

1234567891011>>