Searched refs:hasValue (Results 1 - 25 of 95) sorted by relevance

1234

/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DTestCallbackHelperContainer.java127 public boolean hasValue() { method in class:TestCallbackHelperContainer.OnEvaluateJavaScriptResultHelper
137 assert hasValue();
151 return hasValue();
163 return hasValue();
168 return hasValue();
172 assert !hasValue();
H A DJavaScriptUtils.java57 Assert.assertTrue("Failed to retrieve JavaScript evaluation results.", helper.hasValue());
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.cpp47 bool hasValue; local
48 float timelineValue = m_timeline.valueForContextTime(context(), narrowPrecisionToFloat(m_value), hasValue);
50 if (hasValue)
128 bool hasValue; local
129 float timelineValue = m_timeline.valueForContextTime(context(), narrowPrecisionToFloat(m_value), hasValue);
131 if (hasValue)
H A DAudioParamTimeline.h53 // hasValue is set to true if a valid timeline value is returned.
55 float valueForContextTime(AudioContext*, float defaultValue, bool& hasValue);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h42 return Val.hasValue() && Val.getValue();
47 return Val.hasValue() && !Val.getValue();
52 return Val.hasValue();
58 return !Val.hasValue();
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeSymbolicFieldElement.cpp90 bool DateTimeSymbolicFieldElement::hasValue() const
119 if (hasValue()) {
129 if (hasValue()) {
139 return hasValue() ? m_symbols[m_selectedIndex] : emptyString();
160 return hasValue() ? m_symbols[m_selectedIndex] : visibleEmptyValue();
H A DDateTimeFieldElements.cpp60 if (hasValue())
96 dateTimeFieldsState.setDayOfMonth(hasValue() ? valueAsInteger() : DateTimeFieldsState::emptyValue);
182 if (!hasValue()) {
230 dateTimeFieldsState.setHour(hasValue() ? valueAsInteger() : DateTimeFieldsState::emptyValue);
258 if (!hasValue()) {
300 if (!hasValue()) {
339 dateTimeFieldsState.setMillisecond(hasValue() ? valueAsInteger() : DateTimeFieldsState::emptyValue);
380 dateTimeFieldsState.setMinute(hasValue() ? valueAsInteger() : DateTimeFieldsState::emptyValue);
421 dateTimeFieldsState.setMonth(hasValue() ? valueAsInteger() : DateTimeFieldsState::emptyValue);
462 dateTimeFieldsState.setSecond(hasValue()
[all...]
H A DDateTimeSymbolicFieldElement.h43 virtual bool hasValue() const OVERRIDE FINAL;
H A DDateTimeFieldElement.h66 virtual bool hasValue() const = 0;
H A DDateTimeNumericFieldElement.h73 virtual bool hasValue() const OVERRIDE FINAL;
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp29 EXPECT_TRUE(Value.hasValue());
42 EXPECT_TRUE(Value.hasValue());
50 EXPECT_TRUE(Value.hasValue());
80 EXPECT_TRUE(Value.hasValue());
86 EXPECT_TRUE(Value.hasValue());
97 EXPECT_TRUE(Value.hasValue());
102 EXPECT_FALSE(Value.hasValue());
/external/clang/lib/StaticAnalyzer/Core/
H A DAnalyzerOptions.cpp114 if (!V.hasValue())
213 if (!AlwaysInlineSize.hasValue())
219 if (!MaxInlinableSize.hasValue()) {
240 if (!GraphTrimInterval.hasValue())
246 if (!MaxTimesInlineLarge.hasValue())
252 if (!MaxNodesPerTopLevelFunction.hasValue()) {
/external/llvm/unittests/Support/
H A DProcessTest.cpp57 EXPECT_TRUE(val.hasValue());
64 EXPECT_FALSE(val.hasValue());
72 EXPECT_TRUE(val.hasValue());
/external/clang/lib/Analysis/
H A DFormatStringParsing.h63 bool hasValue() const { return Start != nullptr; } function in class:clang::analyze_format_string::SpecifierResult
65 assert(hasValue());
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsMapContaining.java62 public static <K,V> Matcher<Map<K,V>> hasValue(Matcher<V> valueMatcher) { method in class:IsMapContaining
67 public static <K,V> Matcher<Map<K,V>> hasValue(V value) { method in class:IsMapContaining
68 return hasValue(equalTo(value));
/external/clang/lib/Lex/
H A DMacroInfo.cpp136 !isPublic.hasValue() || isPublic.getValue());
144 if (!isPublic.hasValue())
149 !isPublic.hasValue() || isPublic.getValue());
/external/chromium_org/third_party/icu/source/common/
H A Dstringtriebuilder.cpp86 UBool hasValue=FALSE; local
95 hasValue=TRUE;
127 return writeValueAndType(hasValue, value, type);
210 UBool hasValue=FALSE; local
218 hasValue=TRUE;
245 if(hasValue && node!=NULL) {
423 return hasValue==o.hasValue && (!hasValue || value==o.value);
609 offset=builder.writeValueAndType(hasValue, valu
[all...]
/external/icu/icu4c/source/common/
H A Dstringtriebuilder.cpp86 UBool hasValue=FALSE; local
95 hasValue=TRUE;
127 return writeValueAndType(hasValue, value, type);
210 UBool hasValue=FALSE; local
218 hasValue=TRUE;
245 if(hasValue && node!=NULL) {
423 return hasValue==o.hasValue && (!hasValue || value==o.value);
609 offset=builder.writeValueAndType(hasValue, valu
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DJSUtils.java74 onEvaluateJavaScriptResultHelper.hasValue());
/external/llvm/lib/Support/
H A DProcess.cpp77 if (!OptPath.hasValue())
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp681 bool hasValue; member in struct:__anon26457::MovedFrom
682 MovedFrom() : hasValue(true) {
684 MovedFrom(MovedFrom&& m) : hasValue(m.hasValue) {
685 m.hasValue = false;
688 hasValue = m.hasValue;
689 m.hasValue = false;
699 EXPECT_TRUE(m.hasValue);
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h213 LLVM_EXPLICIT operator bool() const { return hasValue(); }
214 bool hasValue() const { return Type != VT_Nothing; } function in class:clang::ast_matchers::dynamic::VariantValue
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dstringtriebuilder.h265 ValueNode(int32_t initialHash) : Node(initialHash), hasValue(FALSE), value(0) {}
268 hasValue=TRUE;
273 UBool hasValue; member in class:StringTrieBuilder::ValueNode
393 virtual int32_t writeValueAndType(UBool hasValue, int32_t value, int32_t node) = 0;
/external/icu/icu4c/source/common/unicode/
H A Dstringtriebuilder.h267 ValueNode(int32_t initialHash) : Node(initialHash), hasValue(FALSE), value(0) {}
270 hasValue=TRUE;
275 UBool hasValue; member in class:StringTrieBuilder::ValueNode
395 virtual int32_t writeValueAndType(UBool hasValue, int32_t value, int32_t node) = 0;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseMultipleFieldsDateAndTimeInputType.cpp517 bool hasValue = false; local
519 hasValue = parseToDateComponents(element().suggestedValue(), &date);
521 hasValue = parseToDateComponents(element().value(), &date);
522 if (!hasValue)
536 if (hasValue)

Completed in 597 milliseconds

1234