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

1 2 3 4

  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 177 ClassType superClass;
178 ClassType[] interfaces;
179 ClassSignature(TypeParameter[] p, ClassType s, ClassType[] i) {
197 public ClassType getSuperClass() { return superClass; }
204 public ClassType[] getInterfaces() { return interfaces; }
461 public static class ClassType extends ObjectType {
465 static ClassType make(String s, int b, int e,
466 TypeArgument[] targs, ClassType parent) {
468 return new ClassType(s, b, e, targs)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 11 from types import ClassType as classobj
types.py 53 ClassType = type(_C)
abc.py 107 if not isinstance(subclass, (type, types.ClassType)):
copy_reg.py 7 from types import ClassType as _ClassType
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 11 from types import ClassType as classobj
types.py 53 ClassType = type(_C)
abc.py 107 if not isinstance(subclass, (type, types.ClassType)):
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGColor.cpp 38 SVGColor::SVGColor(ClassType classType, const SVGColorType& colorType)
39 : CSSValue(classType)
97 SVGColor::SVGColor(ClassType classType, const SVGColor& cloneFrom)
98 : CSSValue(classType, /*isCSSOMSafe*/ true)
SVGColor.h 89 SVGColor(ClassType, const SVGColorType&);
90 SVGColor(ClassType, const SVGColor& cloneFrom);
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.h 35 base::Histogram::ClassType type,
extension_metrics_module.cc 72 Histogram::ClassType type,
116 Histogram::ClassType histogram_type(type == "histogram-linear" ?
extension_metrics_apitest.cc 32 base::Histogram::ClassType type;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageGeneratorValue.h 71 CSSImageGeneratorValue(ClassType);
CSSValue.h 119 enum ClassType {
179 ClassType classType() const { return static_cast<ClassType>(m_classType); }
181 explicit CSSValue(ClassType classType, bool isCSSOMSafe = false)
188 , m_classType(classType)
214 unsigned m_classType : ClassTypeBits; // ClassType
CSSValueList.h 74 CSSValueList(ClassType, ValueListSeparator);
CSSGradientValue.h 79 bool isLinearGradient() const { return classType() == LinearGradientClass; }
80 bool isRadialGradient() const { return classType() == RadialGradientClass; }
96 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType)
97 : CSSImageGeneratorValue(classType)
104 CSSGradientValue(const CSSGradientValue& other, ClassType classType, CSSGradientType gradientType)
105 : CSSImageGeneratorValue(classType)
CSSImageGeneratorValue.cpp 36 CSSImageGeneratorValue::CSSImageGeneratorValue(ClassType classType)
37 : CSSValue(classType)
111 switch (classType()) {
128 switch (classType()) {
145 switch (classType()) {
162 switch (classType()) {
179 switch (classType()) {
196 switch (classType()) {
CSSValueList.cpp 29 CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator)
30 : CSSValue(classType)
187 : CSSValue(cloneFrom.classType(), /* isCSSOMSafe */ true)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
102 self.assertIsInstance(py_item, (ClassType, type))
140 if isinstance(item, ClassType):
147 if isinstance(item, (ClassType, FunctionType)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
102 self.assertIsInstance(py_item, (ClassType, type))
140 if isinstance(item, ClassType):
147 if isinstance(item, (ClassType, FunctionType)):
  /external/clang/test/SemaCXX/
type-traits.cpp 224 typedef Derives ClassType;
230 { int arr[T(__is_class(ClassType))]; }
274 { int arr[F(__is_enum(ClassType))]; }
304 { int arr[F(__is_final(ClassType))]; }
325 { int arr[F(__is_polymorphic(ClassType))]; }
353 int t27[F(__is_integral(ClassType))];
382 int t27[F(__is_floating_point(ClassType))];
411 int t27[F(__is_arithmetic(ClassType))];
466 int t27[F(__is_void(ClassType))];
497 int t28[F(__is_array(ClassType))];
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
mock.py 86 ClassType = type(OldStyleClass)
156 isinstance(self.side_effect, (type, ClassType)) and
272 if isinstance(spec, (type, ClassType)):
  /external/chromium/base/metrics/
histogram.h 279 enum ClassType {
439 virtual ClassType histogram_type() const;
602 virtual ClassType histogram_type() const;
644 virtual ClassType histogram_type() const;
665 virtual ClassType histogram_type() const;
  /external/clang/lib/AST/
DeclarationName.cpp 149 QualType ClassType = N.getCXXNameType();
150 if (const RecordType *ClassRec = ClassType->getAs<RecordType>())
152 return OS << ClassType.getAsString();

Completed in 584 milliseconds

1 2 3 4