Searched defs:hasValue (Results 1 - 25 of 64) sorted by relevance

123

/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
H A DIsMapContaining.java108 * <pre>assertThat(myMap, hasValue(equalTo("foo")))</pre>
113 public static <V> Matcher<Map<?, ? extends V>> hasValue(Matcher<? super V> valueMatcher) { method in class:IsMapContaining
121 * <pre>assertThat(myMap, hasValue("foo"))</pre>
126 public static <V> Matcher<Map<?, ? extends V>> hasValue(V value) { method in class:IsMapContaining
/external/junit/src/main/java/org/junit/internal/
H A DAssumptionViolatedException.java32 public AssumptionViolatedException(String assumption, boolean hasValue, Object value, Matcher<?> matcher) { argument
36 this.fValueMatcher = hasValue;
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DOptional.h45 bool hasValue() const { return hasVal; } function in class:llvm::Optional
/external/clang/lib/Analysis/
H A DFormatStringParsing.h69 bool hasValue() const { return Start != nullptr; } function in class:clang::analyze_format_string::SpecifierResult
71 assert(hasValue());
/external/protobuf/objectivec/google/protobuf/
H A DType.pbobjc.h363 @property(nonatomic, readwrite) BOOL hasValue; variable
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrieBuilder.java258 protected int writeValueAndType(boolean hasValue, int value, int node) { argument
260 if(hasValue) {
H A DCharsTrieBuilder.java225 protected int writeValueAndType(boolean hasValue, int value, int node) { argument
226 if(!hasValue) {
H A DBytesTrie.java166 public boolean hasValue() { return ordinal()>=2; } method in class:BytesTrie.Result
H A DStringTrieBuilder.java265 hasValue=true;
269 assert(!hasValue);
270 hasValue=true;
274 hasValue=true;
280 if(hasValue) {
294 return hasValue==o.hasValue && (!hasValue || value==o.value);
311 protected boolean hasValue; field in class:StringTrieBuilder.ValueNode
382 if(hasValue) {
866 writeValueAndType(boolean hasValue, int value, int node) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrieBuilder.java262 protected int writeValueAndType(boolean hasValue, int value, int node) { argument
264 if(hasValue) {
H A DCharsTrieBuilder.java229 protected int writeValueAndType(boolean hasValue, int value, int node) { argument
230 if(!hasValue) {
H A DBytesTrie.java179 public boolean hasValue() { return ordinal()>=2; } method in class:BytesTrie.Result
H A DStringTrieBuilder.java267 hasValue=true;
271 assert(!hasValue);
272 hasValue=true;
276 hasValue=true;
282 if(hasValue) {
296 return hasValue==o.hasValue && (!hasValue || value==o.value);
313 protected boolean hasValue; field in class:StringTrieBuilder.ValueNode
384 if(hasValue) {
868 writeValueAndType(boolean hasValue, int value, int node) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DOptional.h125 bool hasValue() const { return hasVal; } function in class:llvm::Optional
133 return hasValue() ? getValue() : std::forward<U>(value);
142 return hasValue() ? std::move(getValue()) : std::forward<U>(value);
164 return !X.hasValue();
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DOptional.h125 bool hasValue() const { return hasVal; } function in class:llvm::Optional
133 return hasValue() ? getValue() : std::forward<U>(value);
142 return hasValue() ? std::move(getValue()) : std::forward<U>(value);
157 return X.hasValue() == Y.hasValue();
169 return X.hasValue() < Y.hasValue();
212 return X.hasValue();
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h178 return Value->getTypedMatcher(TypedMatcherOps<T>()).hasValue();
261 explicit operator bool() const { return hasValue(); }
262 bool hasValue() const { return Type != VT_Nothing; } function in class:clang::ast_matchers::dynamic::VariantValue
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.cpp205 const bool hasValue = hasImmValue || (argNdx+1 < numArgs); local
207 if (hasValue)
209 const char* value = hasValue ? (hasImmValue ? nameEnd+1 : args[argNdx+1]) : DE_NULL;
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java529 public boolean hasValue() { method in class:FieldInfo
533 public void setHasValue(boolean hasValue) { argument
534 mHasValue = hasValue;
/external/icu/icu4c/source/common/unicode/
H A Dstringtriebuilder.h274 ValueNode(int32_t initialHash) : Node(initialHash), hasValue(FALSE), value(0) {}
277 hasValue=TRUE;
282 UBool hasValue; member in class:StringTrieBuilder::ValueNode
407 virtual int32_t writeValueAndType(UBool hasValue, int32_t value, int32_t node) = 0;
/external/icu/icu4c/source/common/
H A Dstringtriebuilder.cpp88 UBool hasValue=FALSE; local
97 hasValue=TRUE;
129 return writeValueAndType(hasValue, value, type);
212 UBool hasValue=FALSE; local
220 hasValue=TRUE;
247 if(hasValue && node!=NULL) {
425 return hasValue==o.hasValue && (!hasValue || value==o.value);
611 offset=builder.writeValueAndType(hasValue, valu
[all...]
H A Ducharstriebuilder.cpp310 offset=b.writeValueAndType(hasValue, value, b.getMinLinearMatch()+length-1);
399 UCharsTrieBuilder::writeValueAndType(UBool hasValue, int32_t value, int32_t node) { argument
400 if(!hasValue) {
H A Dbytestriebuilder.cpp462 BytesTrieBuilder::writeValueAndType(UBool hasValue, int32_t value, int32_t node) { argument
464 if(hasValue) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp699 bool hasValue = false; local
715 hasValue = true;
722 if (!hasValue)
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp750 bool hasValue; member in struct:__anon14946::MovedFrom
751 MovedFrom() : hasValue(true) {
753 MovedFrom(MovedFrom&& m) : hasValue(m.hasValue) {
754 m.hasValue = false;
757 hasValue = m.hasValue;
758 m.hasValue = false;
768 EXPECT_TRUE(m.hasValue);
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitCodes.h132 bool hasValue() const { function in class:llvm::NaClBitCodeAbbrevOp
133 return hasValue(Enc);
135 static bool hasValue(Encoding E) { function in class:llvm::NaClBitCodeAbbrevOp

Completed in 2246 milliseconds

123