Home | History | Annotate | Download | only in parser

Lines Matching defs:nextValue

3228         if (CSSParserValue* nextValue = m_valueList->next()) {
3229 if (!isForwardSlashOperator(nextValue) && !parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName))
4522 CSSParserValue* nextValue = m_valueList->next();
4523 bool nextValBreaksFont = !nextValue ||
4524 (nextValue->unit == CSSParserValue::Operator && nextValue->iValue == ',');
4525 bool nextValIsFontName = nextValue &&
4526 ((nextValue->id >= CSSValueSerif && nextValue->id <= CSSValueWebkitBody) ||
4527 (nextValue->unit == CSSPrimitiveValue::CSS_STRING || nextValue->unit == CSSPrimitiveValue::CSS_IDENT));
4533 value = nextValue;
4566 if (!nextValue)
4575 value = nextValue;