Searched defs:gridLineName (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.cpp133 String gridLineName; local
150 gridLineName = currentValue->getStringValue();
156 position.setSpanPosition(gridLineNumber, gridLineName);
158 position.setExplicitPosition(gridLineNumber, gridLineName);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp3310 bool CSSPropertyParser::parseIntegerOrCustomIdentFromGridPosition(RefPtrWillBeRawPtr<CSSPrimitiveValue>& numericValue, RefPtrWillBeRawPtr<CSSPrimitiveValue>& gridLineName) argument
3317 gridLineName = createPrimitiveStringValue(m_valueList->current());
3324 gridLineName = createPrimitiveStringValue(m_valueList->current());
3347 RefPtrWillBeRawPtr<CSSPrimitiveValue> gridLineName = nullptr; local
3350 if (parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName)) {
3359 if (!isForwardSlashOperator(nextValue) && !parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName))
3370 if (!hasSeenSpanKeyword && !gridLineName && !numericValue)
3378 if (gridLineName && !numericValue && !hasSeenSpanKeyword)
3379 return cssValuePool().createValue(gridLineName->getStringValue(), CSSPrimitiveValue::CSS_STRING);
3386 if (gridLineName)
[all...]

Completed in 2004 milliseconds