HomeSort by relevance Sort by last modified time
    Searched refs:desugar (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/AST/
ASTDiagnostic.cpp 24 static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) {
32 QT = ET->desugar();
37 QT = PT->desugar();
43 QT = ST->desugar();
48 QT = AT->desugar();
55 QT = AT->desugar();
59 // Don't desugar template specializations, unless it's an alias template.
65 // Don't desugar magic Objective-C types.
72 // Don't desugar va_list.
76 // Otherwise, do a single-step desugar
    [all...]
Type.cpp 206 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType(); local
207 return Context.getQualifiedType(desugar, split.Quals);
217 return ty->desugar(); \
237 Cur = Ty->desugar(); \
257 // Do a single-step desugar, aborting the loop if the type isn't
265 next = ty->desugar(); \
304 Cur = Ty->desugar().getTypePtr(); \
1657 QualType TypedefType::desugar() const { function in class:TypedefType
1673 QualType TypeOfExprType::desugar() const { function in class:TypeOfExprType
1699 QualType DecltypeType::desugar() const { function in class:DecltypeType
    [all...]
TypePrinter.cpp 101 TC = AT->desugar()->getTypeClass();
    [all...]
  /external/clang/include/clang/AST/
Type.h 740 /// desugar until we hit the type \c Integer, which has no qualifiers on it.
1758 QualType desugar() const { return QualType(this, 0); } function in class:clang::BuiltinType
1823 QualType desugar() const { return QualType(this, 0); } function in class:clang::ComplexType
1855 QualType desugar() const { return getInnerType(); } function in class:clang::ParenType
1887 QualType desugar() const { return QualType(this, 0); } function in class:clang::PointerType
1921 QualType desugar() const { return QualType(this, 0); } function in class:clang::BlockPointerType
1994 QualType desugar() const { return QualType(this, 0); } function in class:clang::LValueReferenceType
2011 QualType desugar() const { return QualType(this, 0); } function in class:clang::RValueReferenceType
2057 QualType desugar() const { return QualType(this, 0); } function in class:clang::MemberPointerType
2151 QualType desugar() const { return QualType(this, 0); } function in class:clang::ConstantArrayType
2194 QualType desugar() const { return QualType(this, 0); } function in class:clang::IncompleteArrayType
2257 QualType desugar() const { return QualType(this, 0); } function in class:clang::VariableArrayType
2314 QualType desugar() const { return QualType(this, 0); } function in class:clang::DependentSizedArrayType
2360 QualType desugar() const { return QualType(this, 0); } function in class:clang::DependentSizedExtVectorType
2409 QualType desugar() const { return QualType(this, 0); } function in class:clang::VectorType
2492 QualType desugar() const { return QualType(this, 0); } function in class:clang::ExtVectorType
2675 QualType desugar() const { return QualType(this, 0); } function
3061 QualType desugar() const { return getUnderlyingType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TypeOfType
3132 QualType desugar() const { return UnderlyingType; } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::UnaryTransformType
3189 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::RecordType
3208 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::EnumType
3283 QualType desugar() const { return getEquivalentType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AttributedType
3355 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TemplateTypeParmType
3409 QualType desugar() const { return getReplacementType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::SubstTemplateTypeParmType
3465 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::SubstTemplateTypeParmPackType
3499 QualType desugar() const { return getCanonicalTypeInternal(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AutoType
3650 QualType desugar() const { return getCanonicalTypeInternal(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TemplateSpecializationType
3724 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::InjectedClassNameType
3853 QualType desugar() const { return getNamedType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ElaboratedType
3920 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentNameType
3990 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentTemplateSpecializationType
4073 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::PackExpansionType
4260 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCInterfaceType
4402 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCObjectPointerType
4433 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AtomicType
4476 SplitQualType desugar = local
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 69 return TypeHasMayAlias(TTy->desugar());
CGDebugInfo.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]

Completed in 38 milliseconds