Searched refs:transformValue (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DTransformBuilder.cpp97 CSSTransformValue* transformValue = toCSSTransformValue(i.value()); local
98 if (!transformValue->length())
102 for (unsigned j = 0; j < transformValue->length(); ++j) {
103 if (!transformValue->item(j)->isPrimitiveValue()) {
111 CSSPrimitiveValue* firstValue = toCSSPrimitiveValue(transformValue->item(0));
113 switch (transformValue->operationType()) {
119 if (transformValue->operationType() == CSSTransformValue::ScaleYTransformOperation)
123 if (transformValue->operationType() != CSSTransformValue::ScaleXTransformOperation) {
124 if (transformValue->length() > 1) {
125 CSSPrimitiveValue* secondValue = toCSSPrimitiveValue(transformValue
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParser-in.cpp711 static bool parseTransformTranslateArguments(CharType*& pos, CharType* end, unsigned expectedCount, CSSTransformValue* transformValue) argument
724 transformValue->append(cssValuePool().createValue(number, CSSPrimitiveValue::CSS_PX));
732 static bool parseTransformNumberArguments(CharType*& pos, CharType* end, unsigned expectedCount, CSSTransformValue* transformValue) argument
743 transformValue->append(cssValuePool().createValue(number, CSSPrimitiveValue::CSS_NUMBER));
791 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = CSSTransformValue::create(transformType); local
792 if (!parseTransformTranslateArguments(pos, end, expectedArgumentCount, transformValue.get()))
794 return transformValue.release();
809 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = CSSTransformValue::create(CSSTransformValue::Matrix3DTransformOperation); local
810 if (!parseTransformNumberArguments(pos, end, 16, transformValue.get()))
812 return transformValue
826 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = CSSTransformValue::create(CSSTransformValue::Scale3DTransformOperation); local
842 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = parseSimpleTransformValue(pos, end); local
[all...]
H A DCSSPropertyParser.cpp1111 RefPtrWillBeRawPtr<CSSValue> transformValue = parseTransform(propId); local
1112 if (transformValue) {
1113 addProperty(propId, transformValue.release(), important);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp721 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = nullptr; local
723 transformValue = CSSTransformValue::create(CSSTransformValue::MatrixTransformOperation);
725 transformValue->append(cssValuePool().createValue(transform.a(), CSSPrimitiveValue::CSS_NUMBER));
726 transformValue->append(cssValuePool().createValue(transform.b(), CSSPrimitiveValue::CSS_NUMBER));
727 transformValue->append(cssValuePool().createValue(transform.c(), CSSPrimitiveValue::CSS_NUMBER));
728 transformValue->append(cssValuePool().createValue(transform.d(), CSSPrimitiveValue::CSS_NUMBER));
729 transformValue->append(zoomAdjustedNumberValue(transform.e(), style));
730 transformValue->append(zoomAdjustedNumberValue(transform.f(), style));
732 transformValue = CSSTransformValue::create(CSSTransformValue::Matrix3DTransformOperation);
734 transformValue
[all...]

Completed in 2483 milliseconds