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

  /external/clang/include/clang/AST/
Type.h 785 /// desugar until we hit the type \c Integer, which has no qualifiers on it.
1857 QualType desugar() const { return QualType(this, 0); } function in class:clang::BuiltinType
1921 QualType desugar() const { return QualType(this, 0); } function in class:clang::ComplexType
1952 QualType desugar() const { return getInnerType(); } function in class:clang::ParenType
1983 QualType desugar() const { return QualType(this, 0); } function in class:clang::PointerType
2021 QualType desugar() const { return DecayedPointer; } function in class:clang::DecayedType
2054 QualType desugar() const { return QualType(this, 0); } function in class:clang::BlockPointerType
2125 QualType desugar() const { return QualType(this, 0); } function in class:clang::LValueReferenceType
2141 QualType desugar() const { return QualType(this, 0); } function in class:clang::RValueReferenceType
2186 QualType desugar() const { return QualType(this, 0); } function in class:clang::MemberPointerType
2278 QualType desugar() const { return QualType(this, 0); } function in class:clang::ConstantArrayType
2320 QualType desugar() const { return QualType(this, 0); } function in class:clang::IncompleteArrayType
2382 QualType desugar() const { return QualType(this, 0); } function in class:clang::VariableArrayType
2438 QualType desugar() const { return QualType(this, 0); } function in class:clang::DependentSizedArrayType
2483 QualType desugar() const { return QualType(this, 0); } function in class:clang::DependentSizedExtVectorType
2534 QualType desugar() const { return QualType(this, 0); } function in class:clang::VectorType
2616 QualType desugar() const { return QualType(this, 0); } function in class:clang::ExtVectorType
2797 QualType desugar() const { return QualType(this, 0); } function
3190 QualType desugar() const { return getUnderlyingType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TypeOfType
3259 QualType desugar() const { return UnderlyingType; } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::UnaryTransformType
3314 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::RecordType
3332 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::EnumType
3413 QualType desugar() const { return getEquivalentType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AttributedType
3488 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TemplateTypeParmType
3541 QualType desugar() const { return getReplacementType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::SubstTemplateTypeParmType
3596 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::SubstTemplateTypeParmPackType
3632 QualType desugar() const { return getCanonicalTypeInternal(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AutoType
3785 QualType desugar() const { return getCanonicalTypeInternal(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::TemplateSpecializationType
3858 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::InjectedClassNameType
3990 QualType desugar() const { return getNamedType(); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ElaboratedType
4056 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentNameType
4125 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::DependentTemplateSpecializationType
4205 QualType desugar() const { return isSugared() ? Pattern : QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::PackExpansionType
4390 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCInterfaceType
4533 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::ObjCObjectPointerType
4563 QualType desugar() const { return QualType(this, 0); } function in class:clang::FunctionType::ExtInfo::FunctionProtoType::AtomicType
4605 SplitQualType desugar = local
    [all...]
  /external/chromium_org/ppapi/tests/clang/
print_names_and_sizes.cc 77 return HasArchDependentSize(*(typedef_type->desugar().getTypePtr()));
  /external/clang/lib/AST/
ASTDiagnostic.cpp 27 static QualType Desugar(ASTContext &Context, QualType QT, bool &ShouldAKA) {
35 QT = ET->desugar();
40 QT = PT->desugar();
46 QT = ST->desugar();
51 QT = AT->desugar();
58 QT = AT->desugar();
62 // Don't desugar template specializations, unless it's an alias template.
68 // Don't desugar magic Objective-C types.
75 // Don't desugar va_list.
79 // Otherwise, do a single-step desugar
    [all...]
Type.cpp 227 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType(); local
228 return Context.getQualifiedType(desugar, split.Quals);
238 return ty->desugar(); \
258 Cur = Ty->desugar(); \
278 // Do a single-step desugar, aborting the loop if the type isn't
286 next = ty->desugar(); \
325 Cur = Ty->desugar().getTypePtr(); \
354 Cur = Ty->desugar().getTypePtr(); \
1751 QualType TypedefType::desugar() const { function in class:TypedefType
1767 QualType TypeOfExprType::desugar() const { function in class:TypeOfExprType
1793 QualType DecltypeType::desugar() const { function in class:DecltypeType
    [all...]
NSAPI.cpp 395 T = TDT->desugar();
TypePrinter.cpp 164 TC = AT->desugar()->getTypeClass();
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 86 return TypeHasMayAlias(TTy->desugar());
CGDebugInfo.cpp     [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructs.cpp 64 // ElaboratedTypes, desugar will unwrap too much.
69 return UnwrapType(typedefed->desugar().getTypePtr());
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/chromium_org/third_party/polymer/
polymer.min.js     [all...]

Completed in 326 milliseconds