HomeSort by relevance Sort by last modified time
    Searched refs:classType (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) {
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) {
49 return new ImmutableClassDef(classType, AccessFlags.INTERFACE.getValue(), "Ljava/lang/Object;",
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.h 57 static AnimatedPropertyType classType() { return AnimatedColor; }
61 : SVGPropertyBase(classType())
72 ASSERT(base->type() == SVGColorProperty::classType());
SVGString.h 70 static AnimatedPropertyType classType() { return AnimatedString; }
74 : SVGPropertyBase(classType())
79 : SVGPropertyBase(classType())
90 ASSERT(base->type() == SVGString::classType());
SVGBoolean.h 65 static AnimatedPropertyType classType() { return AnimatedBoolean; }
69 : SVGPropertyBase(classType())
80 ASSERT(base->type() == SVGBoolean::classType());
SVGInteger.h 63 static AnimatedPropertyType classType() { return AnimatedInteger; }
74 ASSERT(base->type() == SVGInteger::classType());
SVGIntegerOptionalInteger.h 59 static AnimatedPropertyType classType() { return AnimatedIntegerOptionalInteger; }
74 ASSERT(base->type() == SVGIntegerOptionalInteger::classType());
SVGNumber.h 66 static AnimatedPropertyType classType() { return AnimatedNumber; }
80 ASSERT(base->type() == SVGNumber::classType());
SVGNumberOptionalNumber.h 59 static AnimatedPropertyType classType() { return AnimatedNumberOptionalNumber; }
74 ASSERT(base->type() == SVGNumberOptionalNumber::classType());
SVGNumberList.h 65 static AnimatedPropertyType classType() { return AnimatedNumberList; }
SVGPointList.h 65 static AnimatedPropertyType classType() { return AnimatedPoints; }
SVGAngle.h 107 static AnimatedPropertyType classType() { return AnimatedAngle; }
121 ASSERT(base->type() == SVGAngle::classType());
SVGEnumeration.h 66 static AnimatedPropertyType classType() { return AnimatedEnumeration; }
73 : SVGPropertyBase(classType())
SVGLength.h 103 static AnimatedPropertyType classType() { return AnimatedLength; }
117 ASSERT(base->type() == SVGLength::classType());
SVGPoint.h 79 static AnimatedPropertyType classType() { return AnimatedPoint; }
94 ASSERT(base->type() == SVGPoint::classType());
SVGPreserveAspectRatio.h 88 static AnimatedPropertyType classType() { return AnimatedPreserveAspectRatio; }
104 ASSERT(base->type() == SVGPreserveAspectRatio::classType());
SVGRect.h 79 static AnimatedPropertyType classType() { return AnimatedRect; }
96 ASSERT(base->type() == SVGRect::classType());
SVGRect.cpp 36 : SVGPropertyBase(classType())
42 : SVGPropertyBase(classType())
48 : SVGPropertyBase(classType())
SVGPoint.cpp 46 : SVGPropertyBase(classType())
51 : SVGPropertyBase(classType())
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageGeneratorValue.cpp 36 CSSImageGeneratorValue::CSSImageGeneratorValue(ClassType classType)
37 : CSSValue(classType)
127 switch (classType()) {
144 switch (classType()) {
161 switch (classType()) {
178 switch (classType()) {
195 switch (classType()) {
212 switch (classType()) {
CSSValue.cpp 70 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text)
72 return adoptRefWillBeNoop(new TextCloneCSSValue(classType, text));
80 TextCloneCSSValue(ClassType classType, const String& text)
81 : CSSValue(classType, /*isCSSOMSafe*/ true)
117 if (classType() == FontFaceSrcClass)
119 if (classType() == ImageClass)
121 if (classType() == CrossfadeClass)
123 if (classType() == ImageSetClass
    [all...]
CSSValue.h 130 enum ClassType {
186 ClassType classType() const { return static_cast<ClassType>(m_classType); }
188 explicit CSSValue(ClassType classType, bool isCSSOMSafe = false)
195 , m_classType(classType)
221 unsigned m_classType : ClassTypeBits; // ClassType
CSSValueList.cpp 29 CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator)
30 : CSSValue(classType)
152 : CSSValue(cloneFrom.classType(), /* isCSSOMSafe */ true)
  /frameworks/base/core/java/android/text/
SpanSet.java 31 private final Class<? extends E> classType;
40 classType = type;
46 final E[] allSpans = spanned.getSpans(start, limit, classType);
51 spans = (E[]) Array.newInstance(classType, length);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
FieldIdItem.java 73 String classType = dexFile.getType(classIndex);
81 return String.format("%s->%s:%s", classType, fieldName, fieldType);
MethodIdItem.java 73 String classType = dexFile.getType(classIndex);
81 return String.format("%s->%s%s", classType, methodName, protoString);

Completed in 310 milliseconds

1 2 3