Home
last modified time | relevance | path

Searched refs:valueId (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/resources/options/
Dwebsite_settings.js234 var valueId = permissionString + permissions[i];
235 if (loadTimeData.valueExists(valueId)) {
236 options.add(new Option(loadTimeData.getString(valueId),
Dcontent_settings.js129 var valueId =
131 settingLabel.textContent = loadTimeData.getString(valueId);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DFontBuilder.cpp118 void FontBuilder::fromSystemFont(CSSValueID valueId, float effectiveZoom) in fromSystemFont() argument
123 RenderTheme::theme().systemFont(valueId, fontDescription); in fromSystemFont()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp1018 CSSValueID valueId = CSSValueInvalid; in createTimingFunctionValue() local
1021 valueId = CSSValueEase; in createTimingFunctionValue()
1024 valueId = CSSValueEaseIn; in createTimingFunctionValue()
1027 valueId = CSSValueEaseOut; in createTimingFunctionValue()
1030 valueId = CSSValueEaseInOut; in createTimingFunctionValue()
1036 return cssValuePool().createIdentifierValue(valueId); in createTimingFunctionValue()
1050 … CSSValueID valueId = position == StepsTimingFunction::Start ? CSSValueStepStart : CSSValueStepEnd; in createTimingFunctionValue() local
1051 return cssValuePool().createIdentifierValue(valueId); in createTimingFunctionValue()
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSPropertyParser.cpp4300 static bool isBoxValue(CSSValueID valueId) in isBoxValue() argument
4302 switch (valueId) { in isBoxValue()
4318 CSSValueID valueId = value->id; in parseShapeProperty() local
4320 if (valueId == CSSValueNone) { in parseShapeProperty()
4321 RefPtrWillBeRawPtr<CSSPrimitiveValue> keywordValue = parseValidPrimitive(valueId, value); in parseShapeProperty()
4327 if (valueId != CSSValueNone && parseFillImage(m_valueList, imageValue)) { in parseShapeProperty()
4341 CSSValueID valueId; in parseBasicShapeAndOrBox() local
4347 valueId = value->id; in parseBasicShapeAndOrBox()
4355 } else if (isBoxValue(valueId) && !boxFound) { in parseBasicShapeAndOrBox()
4356 list->append(parseValidPrimitive(valueId, value)); in parseBasicShapeAndOrBox()