HomeSort by relevance Sort by last modified time
    Searched refs:transformValue (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 97 CSSTransformValue* transformValue = toCSSTransformValue(i.value());
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->item(1))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser-in.cpp     [all...]
CSSPropertyParser.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp 721 RefPtrWillBeRawPtr<CSSTransformValue> transformValue = nullptr;
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->append(cssValuePool().createValue(transform.m11(), CSSPrimitiveValue::CSS_NUMBER))
    [all...]

Completed in 149 milliseconds