Searched defs:ClassType (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A Dmock.py86 ClassType = type(OldStyleClass) variable
156 isinstance(self.side_effect, (type, ClassType)) and
272 if isinstance(spec, (type, ClassType)):
/external/clang/lib/AST/
H A DDeclarationName.cpp149 QualType ClassType = N.getCXXNameType(); local
150 if (const RecordType *ClassRec = ClassType->getAs<RecordType>())
152 return OS << ClassType.getAsString();
H A DDeclCXX.cpp1169 QualType ClassType = Context.getTypeDeclType(this); local
1173 Context.getCanonicalType(ClassType));
1418 QualType ClassType local
1420 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1439 QualType ClassType local
1441 return Context.hasSameUnqualifiedType(ClassType, ParamType);
/external/chromium/base/metrics/
H A Dhistogram.h279 enum ClassType { enum in class:base::Histogram
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/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValue.h119 enum ClassType { enum in class:WebCore::CSSValue
179 ClassType classType() const { return static_cast<ClassType>(m_classType); }
181 explicit CSSValue(ClassType classType, bool isCSSOMSafe = false)
214 unsigned m_classType : ClassTypeBits; // ClassType
/external/clang/lib/CodeGen/
H A DCGRTTI.cpp307 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass()); local
308 if (IsIncompleteClassType(ClassType))
912 const RecordType *ClassType = cast<RecordType>(Ty->getClass()); local
920 if (IsIncompleteClassType(ClassType))
938 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0)));
H A DCGVTables.cpp529 QualType ClassType = CGM.getContext().getTagDeclType(RD); local
530 llvm::Constant *RTTI = CGM.GetAddrOfRTTIDescriptor(ClassType);
H A DCGDebugInfo.cpp1786 llvm::DIType ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U); local
1789 getOrCreateTypeDeclaration(Ty->getPointeeType(), U), ClassType);
1794 ClassType);
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java177 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 { class in class:SignatureAttribute
465 static ClassType make(String s, int b, int e,
466 TypeArgument[] targs, ClassType parent) {
468 return new ClassType(
473 ClassType(String signature, int begin, int end, TypeArgument[] targs) { method in class:SignatureAttribute.ClassType
[all...]
/external/chromium_org/third_party/pymock/
H A Dmock.py370 ClassType = type(OldStyleClass) variable
381 ClassTypes = (type, ClassType)
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java469 ClassType.ORDINARY);
537 * ClassType exists solely to tell buildClassName which type of ClassInfo is being built.
539 private enum ClassType { enum in class:InfoBuilder
555 String commentText, SourcePositionInfo position, ClassType classType) {
566 // set appropriate flags based on ClassType
1201 commentAndPosition.getPosition(), ClassType.ENUM);
1321 commentAndPosition.getPosition(), ClassType.INTERFACE);
1416 commentAndPosition.getPosition(), ClassType.INTERFACE);
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp224 typedef Derives ClassType; typedef
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/clang/lib/Sema/
H A DSemaExprObjC.cpp2057 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); local
2058 if (!ClassType || !(Class = ClassType->getInterface())) {
H A DSemaTemplate.cpp4988 QualType ClassType local
4992 ClassType.getTypePtr());
H A DSemaDecl.cpp7411 QualType ClassType = Context.getTypeDeclType(Record); local
7415 if (!ClassType->isDependentType()) {
7418 Context.getCanonicalType(ClassType));
8256 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
H A DSemaDeclCXX.cpp6194 QualType ClassType local
6203 if (ConvType == ClassType)
6205 << ClassType;
6206 else if (IsDerivedFrom(ClassType, ConvType))
6208 << ClassType << ConvType;
6211 << ClassType << ConvType;
7895 CanQualType ClassType local
7899 = Context.DeclarationNames.getCXXConstructorName(ClassType);
8359 CanQualType ClassType
8363 = Context.DeclarationNames.getCXXDestructorName(ClassType);
9919 QualType ClassType = Context.getTypeDeclType(ClassDecl); local
[all...]
H A DSemaOverload.cpp1461 const Type *ClassType local
1463 FromType = S.Context.getMemberPointerType(FromType, ClassType);
4639 QualType ClassType = S.Context.getTypeDeclType(ActingContext); local
4644 QualType ImplicitParamType = S.Context.getCVRQualifiedType(ClassType, Quals);
4691 QualType ClassTypeCanon = S.Context.getCanonicalType(ClassType);
4695 } else if (S.IsDerivedFrom(FromType, ClassType))
5452 QualType ClassType = Context.getTypeDeclType(Constructor->getParent()); local
5455 (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) ||
5456 IsDerivedFrom(Args[0]->getType(), ClassType)))
11798 QualType ClassType local
[all...]
H A DTreeTransform.h641 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
9248 QualType ClassType,
9250 return SemaRef.BuildMemberPointerType(PointeeType, ClassType,
9247 RebuildMemberPointerType(QualType PointeeType, QualType ClassType, SourceLocation Sigil) argument
/external/clang/include/clang/Sema/
H A DDeclSpec.h971 /// \param ClassType the class type referred to by the constructor name.
976 void setConstructorName(ParsedType ClassType, argument
982 ConstructorName = ClassType;
998 /// \param ClassType the name of the class referred to by the destructor name.
1000 ParsedType ClassType,
1005 DestructorName = ClassType;
999 setDestructorName(SourceLocation TildeLoc, ParsedType ClassType, SourceLocation EndLoc) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp4581 QualType ClassType = readType(*Loc.F, Record, Idx); local
4582 if (PointeeType.isNull() || ClassType.isNull())
4585 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 830 milliseconds