Searched refs:CSSTransformValue (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTransformValue.cpp27 #include "core/css/CSSTransformValue.h"
61 static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value)
63 if (operation != CSSTransformValue::UnknownTransformOperation) {
70 CSSTransformValue::CSSTransformValue(TransformOperationType op) function in class:WebCore::CSSTransformValue
76 String CSSTransformValue::customCssText() const
81 String CSSTransformValue::customSerializeResolvingVariables(const HashMap<AtomicString, String>& variables) const
86 CSSTransformValue::CSSTransformValue(const CSSTransformValue function in class:WebCore::CSSTransformValue
[all...]
H A DCSSTransformValue.h34 class CSSTransformValue : public CSSValueList { class in namespace:WebCore
62 static PassRefPtr<CSSTransformValue> create(TransformOperationType type)
64 return adoptRef(new CSSTransformValue(type));
68 bool equals(const CSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
73 PassRefPtr<CSSTransformValue> cloneForCSSOM() const;
76 CSSTransformValue(TransformOperationType);
77 CSSTransformValue(const CSSTransformValue& cloneFrom);
H A DWebKitCSSTransformValue.idl31 ImplementedAs=CSSTransformValue
H A DCSSValue.cpp53 #include "core/css/CSSTransformValue.h"
202 return compareCSSValues<CSSTransformValue>(*this, other);
292 return static_cast<const CSSTransformValue*>(this)->customCssText();
330 return static_cast<const CSSTransformValue*>(this)->customSerializeResolvingVariables(variables);
416 delete static_cast<CSSTransformValue*>(this);
472 return static_cast<const CSSTransformValue*>(this)->cloneForCSSOM();
H A DCSSParser-in.cpp59 #include "core/css/CSSTransformValue.h"
1071 static bool parseTransformArguments(CSSTransformValue* transformValue, CharacterType* characters, unsigned length, unsigned start, unsigned expectedCount)
1104 CSSTransformValue::TransformOperationType transformType;
1108 transformType = CSSTransformValue::TranslateXTransformOperation;
1110 transformType = CSSTransformValue::TranslateYTransformOperation;
1112 transformType = CSSTransformValue::TranslateZTransformOperation;
1114 transformType = CSSTransformValue::TranslateTransformOperation;
1118 transformType = CSSTransformValue::Translate3DTransformOperation;
1124 RefPtr<CSSTransformValue> transformValue = CSSTransformValue
[all...]
H A DCSSComputedStyleDeclaration.cpp47 #include "core/css/CSSTransformValue.h"
747 static PassRefPtr<CSSTransformValue> matrixTransformValue(const TransformationMatrix& transform, const RenderStyle* style)
749 RefPtr<CSSTransformValue> transformValue;
751 transformValue = CSSTransformValue::create(CSSTransformValue::MatrixTransformOperation);
760 transformValue = CSSTransformValue::create(CSSTransformValue::Matrix3DTransformOperation);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DTransformBuilder.cpp33 #include "core/css/CSSTransformValue.h"
59 static TransformOperation::OperationType getTransformOperationType(CSSTransformValue::TransformOperationType type)
62 case CSSTransformValue::ScaleTransformOperation: return TransformOperation::Scale;
63 case CSSTransformValue::ScaleXTransformOperation: return TransformOperation::ScaleX;
64 case CSSTransformValue::ScaleYTransformOperation: return TransformOperation::ScaleY;
65 case CSSTransformValue::ScaleZTransformOperation: return TransformOperation::ScaleZ;
66 case CSSTransformValue::Scale3DTransformOperation: return TransformOperation::Scale3D;
67 case CSSTransformValue::TranslateTransformOperation: return TransformOperation::Translate;
68 case CSSTransformValue::TranslateXTransformOperation: return TransformOperation::TranslateX;
69 case CSSTransformValue
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8CSSValueCustom.cpp49 return wrap(static_cast<CSSTransformValue*>(impl), creationContext, isolate);
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_remaining.target.darwin-arm.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \
H A Dwebcore_remaining.target.darwin-mips.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \
H A Dwebcore_remaining.target.darwin-x86.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \
H A Dwebcore_remaining.target.linux-arm.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \
H A Dwebcore_remaining.target.linux-mips.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \
H A Dwebcore_remaining.target.linux-x86.mk122 third_party/WebKit/Source/core/css/CSSTransformValue.cpp \

Completed in 195 milliseconds