HomeSort by relevance Sort by last modified time
    Searched refs:expValue (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryExp.h 67 bool equals(const MediaQueryExpValue& expValue) const
70 return (id == expValue.id);
72 return (value == expValue.value);
74 return (numerator == expValue.numerator && denominator == expValue.denominator);
75 return !expValue.isValid();
87 MediaQueryExpValue expValue() const { return m_expValue; }
MediaQueryExp.cpp 214 , m_expValue(other.expValue())
218 MediaQueryExp::MediaQueryExp(const String& mediaFeature, const MediaQueryExpValue& expValue)
220 , m_expValue(expValue)
228 MediaQueryExpValue expValue;
240 expValue.id = value->id;
241 expValue.unit = CSSPrimitiveValue::CSS_VALUE_ID;
242 expValue.isID = true;
247 expValue.value = value->fValue;
248 expValue.unit = (CSSPrimitiveValue::UnitType)value->unit;
249 expValue.isValue = true
    [all...]
MediaList.cpp 304 MediaQueryExpValue expValue = expression->expValue();
305 if (expValue.isValue) {
306 if (CSSPrimitiveValue::isDotsPerPixel(expValue.unit))
308 else if (CSSPrimitiveValue::isDotsPerInch(expValue.unit) || CSSPrimitiveValue::isDotsPerCentimeter(expValue.unit))
309 suspiciousType = expValue.unit;
MediaQueryEvaluator.cpp 657 return func(expr->expValue(), NoPrefix, *m_mediaValues);
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 155 Object expValue = entry.getValue();
157 if (!compare(expValue, gotValue)) {
158 fail("Bad value: expected " + expValue + ", got " + gotValue
166 Object expValue = map.get(key);
167 if (!compare(expValue, gotValue)) {
168 fail("Bad value: expected " + expValue + ", got " + gotValue
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ArrayMapTests.java 129 Object expValue = entry.getValue();
131 if (!compare(expValue, gotValue)) {
132 Log.e("test", "Bad value: expected " + expValue + ", got " + gotValue
141 Object expValue = map.get(key);
142 if (!compare(expValue, gotValue)) {
143 Log.e("test", "Bad value: expected " + expValue + ", got " + gotValue
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp     [all...]

Completed in 275 milliseconds