OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSSTransformValue
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSTransformValue.cpp
27
#include "core/css/
CSSTransformValue
.h"
59
static inline String transformValueToCssString(
CSSTransformValue
::TransformOperationType operation, const String& value)
61
if (operation !=
CSSTransformValue
::UnknownTransformOperation) {
68
CSSTransformValue
::
CSSTransformValue
(TransformOperationType op)
74
String
CSSTransformValue
::customCSSText() const
79
String
CSSTransformValue
::customSerializeResolvingVariables(const HashMap<AtomicString, String>& variables) const
84
CSSTransformValue
::
CSSTransformValue
(const
CSSTransformValue
& cloneFrom
[
all
...]
CSSTransformValue.h
34
class
CSSTransformValue
: public CSSValueList {
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);
82
DEFINE_CSS_VALUE_TYPE_CASTS(
CSSTransformValue
, isTransformValue());
WebKitCSSTransformValue.idl
31
ImplementedAs=
CSSTransformValue
CSSParser-in.cpp
63
#include "core/css/
CSSTransformValue
.h"
[
all
...]
CSSValue.cpp
57
#include "core/css/
CSSTransformValue
.h"
205
return compareCSSValues<
CSSTransformValue
>(*this, other);
CSSComputedStyleDeclaration.cpp
52
#include "core/css/
CSSTransformValue
.h"
738
static PassRefPtr<
CSSTransformValue
> valueForMatrixTransform(const TransformationMatrix& transform, const RenderStyle& style)
740
RefPtr<
CSSTransformValue
> transformValue;
742
transformValue =
CSSTransformValue
::create(
CSSTransformValue
::MatrixTransformOperation);
751
transformValue =
CSSTransformValue
::create(
CSSTransformValue
::Matrix3DTransformOperation);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp
33
#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
::TranslateYTransformOperation: return TransformOperation::TranslateY
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
webcore_remaining.target.darwin-mips.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
webcore_remaining.target.darwin-x86.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
webcore_remaining.target.linux-arm.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
webcore_remaining.target.linux-mips.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
webcore_remaining.target.linux-x86.mk
154
third_party/WebKit/Source/core/css/
CSSTransformValue
.cpp \
[
all
...]
Completed in 138 milliseconds