Searched refs:CSSParserValue (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSPropertyParser.h | 89 … PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseValidPrimitive(CSSValueID ident, CSSParserValue*); 108 bool isPotentialPositionValue(CSSParserValue*); 153 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); 167 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); 180 bool parseColorParameters(CSSParserValue*, int* colorValues, bool parseAlpha); 181 bool parseHSLParameters(CSSParserValue*, double* colorValues, bool parseAlpha); 182 …PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseColor(CSSParserValue* = 0, bool acceptQuirkyColors … 183 bool parseColorFromValue(CSSParserValue*, RGBA32&, bool acceptQuirkyColors = false); 236 PassRefPtrWillBeRawPtr<CSSValue> parseTransformValue(CSSPropertyID, CSSParserValue*); 249 bool parseCalculation(CSSParserValue*, ValueRange); [all …]
|
D | CSSParserValues.h | 140 struct CSSParserValue { struct 172 void addValue(const CSSParserValue&); argument 173 void insertValueAt(unsigned, const CSSParserValue&); 178 CSSParserValue* current() { return m_current < m_values.size() ? &m_values[m_current] : 0; } in current() 179 CSSParserValue* next() { ++m_current; return current(); } in next() 180 CSSParserValue* previous() in previous() 194 CSSParserValue* valueAt(unsigned i) { return i < m_values.size() ? &m_values[i] : 0; } in valueAt() 201 Vector<CSSParserValue, 4> m_values; 259 inline void CSSParserValue::setFromNumber(double value, int unit) in setFromNumber() 270 inline void CSSParserValue::setFromFunction(CSSParserFunction* function) in setFromFunction() [all …]
|
D | CSSPropertyParser.cpp | 99 static bool equalIgnoringCase(CSSParserValue* value, const char (&b)[N]) in equalIgnoringCase() 188 bool CSSPropertyParser::validCalculationUnit(CSSParserValue* value, Units unitflags, ReleaseParsedC… in validCalculationUnit() 249 inline bool CSSPropertyParser::shouldAcceptUnitLessValues(CSSParserValue* value, Units unitflags, C… in shouldAcceptUnitLessValues() 255 bool CSSPropertyParser::validUnit(CSSParserValue* value, Units unitflags, CSSParserMode cssParserMo… in validUnit() 277 case CSSParserValue::Q_EMS: in validUnit() 320 …llBeRawPtr<CSSPrimitiveValue> CSSPropertyParser::createPrimitiveNumericValue(CSSParserValue* value) in createPrimitiveNumericValue() 334 …illBeRawPtr<CSSPrimitiveValue> CSSPropertyParser::createPrimitiveStringValue(CSSParserValue* value) in createPrimitiveStringValue() 347 static inline bool isComma(CSSParserValue* value) in isComma() 349 return value && value->unit == CSSParserValue::Operator && value->iValue == ','; in isComma() 360 static inline bool isForwardSlashOperator(CSSParserValue* value) in isForwardSlashOperator() [all …]
|
D | CSSParserValues.cpp | 32 static void destroy(Vector<CSSParserValue, 4>& values) in destroy() argument 36 if (values[i].unit == CSSParserValue::Function) in destroy() 38 else if (values[i].unit == CSSParserValue::ValueList) in destroy() 54 void CSSParserValueList::addValue(const CSSParserValue& v) in addValue() 59 void CSSParserValueList::insertValueAt(unsigned i, const CSSParserValue& v) in insertValueAt()
|
D | CSSParserValuesTest.cpp | 91 CSSParserValue value; in TEST()
|
D | MediaQueryParser.cpp | 240 CSSParserValue value; in addParserValue() 245 value.unit = CSSParserValue::Operator; in addParserValue()
|
D | BisonCSSParser.h | 114 CSSParserValue& sinkFloatingValue(CSSParserValue&);
|
D | CSSGrammar.y | 91 CSSParserValue value; 132 inline static CSSParserValue makeOperatorValue(int value) in makeOperatorValue() 134 CSSParserValue v; in makeOperatorValue() 137 v.unit = CSSParserValue::Operator; in makeOperatorValue() 142 inline static CSSParserValue makeIdentValue(CSSParserString string) in makeIdentValue() 144 CSSParserValue v; in makeIdentValue() 1654 | QEMS { $$.setFromNumber($1, CSSParserValue::Q_EMS); }
|
D | BisonCSSParser-in.cpp | 1280 for (CSSParserValue* value = m_valueList->current(); value; value = m_valueList->next()) { in parseTransform() 1291 …awPtr<CSSValue> CSSPropertyParser::parseTransformValue(CSSPropertyID propId, CSSParserValue *value) in parseTransformValue() 1293 if (value->unit != CSSParserValue::Function || !value->function) in parseTransformValue() 1316 CSSParserValue* a = args->current(); in parseTransformValue() 1348 if (a->unit != CSSParserValue::Operator || a->iValue != ',') in parseTransformValue() 1447 CSSParserValue& BisonCSSParser::sinkFloatingValue(CSSParserValue& value) in sinkFloatingValue() 1449 if (value.unit == CSSParserValue::Function) { in sinkFloatingValue()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | MediaQueryExp.cpp | 46 static inline bool featureWithCSSValueID(const String& mediaFeature, const CSSParserValue* value) in featureWithCSSValueID() 96 static inline bool featureWithValidPositiveLength(const String& mediaFeature, const CSSParserValue*… in featureWithValidPositiveLength() 116 static inline bool featureWithValidDensity(const String& mediaFeature, const CSSParserValue* value) in featureWithValidDensity() 126 static inline bool featureWithPositiveInteger(const String& mediaFeature, const CSSParserValue* val… in featureWithPositiveInteger() 142 static inline bool featureWithPositiveNumber(const String& mediaFeature, const CSSParserValue* valu… in featureWithPositiveNumber() 153 static inline bool featureWithZeroOrOne(const String& mediaFeature, const CSSParserValue* value) in featureWithZeroOrOne() 235 CSSParserValue* value = valueList->current(); in createIfValid() 272 const CSSParserValue* value = valueList->current(); in createIfValid() 278 … } else if (i == 1 && value->unit == CSSParserValue::Operator && value->iValue == '/') { in createIfValid()
|
D | CSSCalculationValue.cpp | 630 CSSParserValue* value = tokens->valueAt(index); in operatorValue() 631 if (value->unit != CSSParserValue::Operator) in operatorValue() 639 CSSParserValue* parserValue = tokens->valueAt(*index); in parseValue() 640 if (parserValue->unit >= CSSParserValue::Operator) in parseValue()
|
/external/chromium_org/tools/deep_memory_profiler/tests/data/heap.01234.symmap/ |
D | chrome.abcdef.nm | 417 …0 t void WTF::Vector<WebCore::CSSParserValue, 4ul>::insert<WebCore::CSSParserValue>(unsigned long,… 418 000000000327e220 t WTF::Vector<WebCore::CSSParserValue, 4ul>::remove(unsigned long)<000000000327e22…
|