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

1 2

  /external/clang/include/clang/AST/
TypeOrdering.h 58 template<> struct DenseMapInfo<clang::CanQualType> {
59 static inline clang::CanQualType getEmptyKey() {
60 return clang::CanQualType();
63 static inline clang::CanQualType getTombstoneKey() {
64 using clang::CanQualType;
65 return CanQualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1));
68 static unsigned getHashValue(clang::CanQualType Val) {
73 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) {
ASTContext.h 739 CanQualType VoidTy;
740 CanQualType BoolTy;
741 CanQualType CharTy;
742 CanQualType WCharTy; // [C++ 3.9.1p5].
743 CanQualType WideCharTy; // Same as WCharTy in C++, integer type in C99.
744 CanQualType WIntTy; // [C99 7.24.1], integer type unchanged by default promotions.
745 CanQualType Char16Ty; // [C++0x 3.9.1p5], integer type in C99.
746 CanQualType Char32Ty; // [C++0x 3.9.1p5], integer type in C99.
747 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty;
748 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy
    [all...]
CanonicalType.h 36 /// syntactic sugar has been eliminated. A CanQualType may also have various
41 /// type (or some subclass of that type). The typedef @c CanQualType is just
199 typedef CanQual<Type> CanQualType;
201 inline CanQualType Type::getCanonicalTypeUnqualified() const {
202 return CanQualType::CreateUnsafe(getCanonicalTypeInternal());
206 CanQualType T) {
216 CanQualType Accessor() const { \
217 return CanQualType::CreateUnsafe(this->getTypePtr()->Accessor()); \
320 /// that provide accessors returning canonical types (@c CanQualType) rather
390 typedef CanQualType value_type
    [all...]
DeclarationName.h 38 typedef CanQual<Type> CanQualType;
360 DeclarationName getCXXConstructorName(CanQualType Ty);
364 DeclarationName getCXXDestructorName(CanQualType Ty);
368 DeclarationName getCXXConversionFunctionName(CanQualType Ty);
374 CanQualType Ty);
CXXInheritance.h 199 bool isAmbiguous(CanQualType BaseType);
  /external/clang/include/clang/Sema/
SemaFixItUtils.h 35 static bool compareTypesSimple(CanQualType From,
36 CanQualType To,
52 typedef bool (*TypeComparisonFuncTy) (const CanQualType FromTy,
53 const CanQualType ToTy,
CodeCompleteConsumer.h 120 SimplifiedTypeClass getSimplifiedTypeClass(CanQualType T);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.h 184 CanQualType type;
224 CanQualType resultType,
225 ArrayRef<CanQualType> argTypes,
276 CanQualType getReturnType() const { return getArgsBuffer()[0].type; }
295 CanQualType resultType,
296 ArrayRef<CanQualType> argTypes) {
304 for (ArrayRef<CanQualType>::iterator
CodeGenTypes.h 50 typedef CanQual<Type> CanQualType;
221 const CGFunctionInfo &arrangeLLVMFunctionInfo(CanQualType returnType,
222 ArrayRef<CanQualType> argTypes,
CGCXXABI.h 231 CanQualType &ResTy,
232 SmallVectorImpl<CanQualType> &ArgTys) = 0;
247 CanQualType &ResTy,
248 SmallVectorImpl<CanQualType> &ArgTys) = 0;
CGCall.cpp 54 static CanQualType GetThisType(ASTContext &Context, const CXXRecordDecl *RD) {
56 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
69 static CanQualType GetReturnType(QualType RetTy) {
87 SmallVectorImpl<CanQualType> &prefix,
94 CanQualType resultType = FTP->getResultType().getUnqualifiedType();
101 SmallVectorImpl<CanQualType> &prefix,
120 SmallVectorImpl<CanQualType> &prefix,
131 SmallVector<CanQualType, 16> argTypes;
168 SmallVector<CanQualType, 16> argTypes;
201 SmallVector<CanQualType, 16> argTypes
    [all...]
ItaniumCXXABI.cpp 112 CanQualType &ResTy,
113 SmallVectorImpl<CanQualType> &ArgTys);
119 CanQualType &ResTy,
120 SmallVectorImpl<CanQualType> &ArgTys);
765 CanQualType &ResTy,
766 SmallVectorImpl<CanQualType> &ArgTys) {
    [all...]
MicrosoftCXXABI.cpp 63 CanQualType &ResTy,
64 SmallVectorImpl<CanQualType> &ArgTys);
105 CanQualType &ResTy,
106 SmallVectorImpl<CanQualType> &ArgTys);
346 CanQualType &ResTy,
347 SmallVectorImpl<CanQualType> &ArgTys) {
408 CanQualType &ResTy,
409 SmallVectorImpl<CanQualType> &ArgTys) {
    [all...]
CGVTables.cpp 154 static bool similar(const ABIArgInfo &infoL, CanQualType typeL,
155 const ABIArgInfo &infoR, CanQualType typeR) {
    [all...]
CGObjCMac.cpp 237 SmallVector<CanQualType,4> Params;
238 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
239 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
255 SmallVector<CanQualType,6> Params;
256 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
257 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
283 SmallVector<CanQualType,4> Params;
284 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType());
285 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType());
311 SmallVector<CanQualType,5> Params
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 23 bool ConversionFixItGenerator::compareTypesSimple(CanQualType From,
24 CanQualType To,
42 const CanQualType FromUnq = From.getUnqualifiedType();
43 const CanQualType ToUnq = To.getUnqualifiedType();
58 const CanQualType FromQTy = S.Context.getCanonicalType(FromTy);
59 const CanQualType ToQTy = S.Context.getCanonicalType(ToTy);
SemaAccess.cpp 346 static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) {
412 CanQualType FriendTy
417 CanQualType ContextTy
429 CanQualType Friend) {
    [all...]
SemaExceptionSpec.cpp 490 llvm::SmallPtrSet<CanQualType, 8> OldTypes, NewTypes;
497 CanQualType TypePtr = Context.getCanonicalType(*I).getUnqualifiedType();
    [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 356 DeclarationName DeclarationNameTable::getCXXConstructorName(CanQualType Ty) {
361 DeclarationName DeclarationNameTable::getCXXDestructorName(CanQualType Ty) {
367 DeclarationNameTable::getCXXConversionFunctionName(CanQualType Ty) {
373 CanQualType Ty) {
DeclCXX.cpp 139 llvm::SmallPtrSet<CanQualType, 8> SeenVBaseTypes;
    [all...]
ASTContext.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 598 CanQualType locTy;
600 BlockTextRegion(const BlockDecl *bd, CanQualType lTy,
620 CanQualType, const AnalysisDeclContext*,
    [all...]
SValBuilder.h 202 DefinedSVal getBlockPointer(const BlockDecl *block, CanQualType locTy,
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 226 ArgType(CanQualType t) : K(SpecificTy), T(t), Name(0), Ptr(false) {}
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 434 CanQualType CanRetTy = Ctx.getCanonicalType(RetTy);

Completed in 250 milliseconds

1 2