Searched defs:classType (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGNumberList.h62 static AnimatedPropertyType classType() { return AnimatedNumberList; } function in class:blink::FINAL
H A DSVGPointList.h62 static AnimatedPropertyType classType() { return AnimatedPoints; } function in class:blink::FINAL
H A DSVGTransformList.h70 static AnimatedPropertyType classType() { return AnimatedTransformList; } function in class:blink::FINAL
H A DSVGLengthList.h64 static AnimatedPropertyType classType() { return AnimatedLengthList; } function in class:blink::FINAL
H A DSVGAnimatedColor.h57 static AnimatedPropertyType classType() { return AnimatedColor; } function in class:blink::FINAL
61 : SVGPropertyBase(classType())
72 ASSERT(base->type() == SVGColorProperty::classType());
H A DSVGInteger.h62 static AnimatedPropertyType classType() { return AnimatedInteger; } function in class:blink::SVGInteger
73 ASSERT(base->type() == SVGInteger::classType());
H A DSVGIntegerOptionalInteger.h59 static AnimatedPropertyType classType() { return AnimatedIntegerOptionalInteger; } function in class:blink::SVGIntegerOptionalInteger
74 ASSERT(base->type() == SVGIntegerOptionalInteger::classType());
H A DSVGNumberOptionalNumber.h59 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumber; } function in class:blink::SVGNumberOptionalNumber
74 ASSERT(base->type() == SVGNumberOptionalNumber::classType());
H A DSVGStringList.h84 static AnimatedPropertyType classType() { return AnimatedStringList; } function in class:blink::FINAL
H A DSVGBoolean.h61 static AnimatedPropertyType classType() { return AnimatedBoolean; } function in class:blink::SVGBoolean
75 ASSERT(base->type() == SVGBoolean::classType());
H A DSVGNumber.h64 static AnimatedPropertyType classType() { return AnimatedNumber; } function in class:blink::SVGNumber
78 ASSERT(base->type() == SVGNumber::classType());
H A DSVGPoint.h75 static AnimatedPropertyType classType() { return AnimatedPoint; } function in class:blink::SVGPoint
90 ASSERT(base->type() == SVGPoint::classType());
H A DSVGString.h72 static AnimatedPropertyType classType() { return AnimatedString; } function in class:blink::SVGString
76 : SVGPropertyBase(classType())
81 : SVGPropertyBase(classType())
92 ASSERT(base->type() == SVGString::classType());
H A DSVGLength.h103 static AnimatedPropertyType classType() { return AnimatedLength; } function in class:blink::FINAL
117 ASSERT(base->type() == SVGLength::classType());
H A DSVGRect.h75 static AnimatedPropertyType classType() { return AnimatedRect; } function in class:blink::SVGRect
92 ASSERT(base->type() == SVGRect::classType());
H A DSVGAngle.h109 static AnimatedPropertyType classType() { return AnimatedAngle; } function in class:blink::SVGAngle
123 ASSERT(base->type() == SVGAngle::classType());
H A DSVGEnumeration.h65 static AnimatedPropertyType classType() { return AnimatedEnumeration; } function in class:blink::SVGEnumerationBase
74 : SVGPropertyBase(classType())
H A DSVGPathSegList.h143 static AnimatedPropertyType classType() { return AnimatedPath; } function in class:blink::SVGPathSegList
173 ASSERT(base->type() == SVGPathSegList::classType());
H A DSVGPreserveAspectRatio.h87 static AnimatedPropertyType classType() { return AnimatedPreserveAspectRatio; } function in class:blink::SVGPreserveAspectRatio
103 ASSERT(base->type() == SVGPreserveAspectRatio::classType());
H A DSVGTransform.h101 static AnimatedPropertyType classType() { return AnimatedTransform; } function in class:blink::SVGTransform
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DTestUtils.java43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) { argument
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) { argument
49 return new ImmutableClassDef(classType, AccessFlags.INTERFACE.getValue(), "Ljava/lang/Object;",
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageGeneratorValue.cpp36 CSSImageGeneratorValue::CSSImageGeneratorValue(ClassType classType) argument
37 : CSSValue(classType)
127 switch (classType()) {
144 switch (classType()) {
161 switch (classType()) {
178 switch (classType()) {
195 switch (classType()) {
212 switch (classType()) {
H A DCSSValue.cpp83 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text) argument
85 return adoptRefWillBeNoop(new TextCloneCSSValue(classType, text));
93 TextCloneCSSValue(ClassType classType, const String& text) argument
94 : CSSValue(classType, /*isCSSOMSafe*/ true)
130 if (classType() == FontFaceSrcClass)
132 if (classType() == ImageClass)
134 if (classType() == CrossfadeClass)
136 if (classType() == ImageSetClass)
234 switch (classType()) {
307 switch (classType()) {
[all...]
H A DCSSValueList.cpp29 CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator) argument
30 : CSSValue(classType)
141 : CSSValue(cloneFrom.classType(), /* isCSSOMSafe */ true)
H A DCSSGradientValue.h112 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType) argument
113 : CSSImageGeneratorValue(classType)
120 CSSGradientValue(const CSSGradientValue& other, ClassType classType, CSSGradientType gradientType) argument
121 : CSSImageGeneratorValue(classType)

Completed in 2686 milliseconds

12