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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.cpp296 String gridLineName; local
313 gridLineName = currentValue->getStringValue();
319 position.setSpanPosition(gridLineNumber, gridLineName);
321 position.setExplicitPosition(gridLineNumber, gridLineName);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp3180 bool CSSPropertyParser::parseIntegerOrCustomIdentFromGridPosition(RefPtrWillBeRawPtr<CSSPrimitiveValue>& numericValue, RefPtrWillBeRawPtr<CSSPrimitiveValue>& gridLineName) argument
3187 gridLineName = createPrimitiveStringValue(m_valueList->current());
3194 gridLineName = createPrimitiveStringValue(m_valueList->current());
3217 RefPtrWillBeRawPtr<CSSPrimitiveValue> gridLineName = nullptr; local
3220 if (parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName)) {
3229 if (!isForwardSlashOperator(nextValue) && !parseIntegerOrCustomIdentFromGridPosition(numericValue, gridLineName))
3240 if (!hasSeenSpanKeyword && !gridLineName && !numericValue)
3248 if (gridLineName && !numericValue && !hasSeenSpanKeyword)
3249 return cssValuePool().createValue(gridLineName->getStringValue(), CSSPrimitiveValue::CSS_STRING);
3256 if (gridLineName)
[all...]

Completed in 89 milliseconds