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

1 2

  /external/clang/lib/AST/
TypePrinter.cpp 665 // while traversing the AttributedType. If the type has been desugared, let
    [all...]
Type.cpp 334 template <> const AttributedType *Type::getAs() const {
335 return getAsSugar<AttributedType>(this);
522 if (auto attributed = dyn_cast<AttributedType>(cur)) {
524 AttributedType::attr_objc_inert_unsafe_unretained)
926 QualType VisitAttributedType(const AttributedType *T) {
    [all...]
TypeLoc.cpp 370 if (attributedLoc.getAttrKind() == AttributedType::attr_nullable ||
371 attributedLoc.getAttrKind() == AttributedType::attr_nonnull ||
372 attributedLoc.getAttrKind() == AttributedType::attr_null_unspecified)
ASTDiagnostic.cpp 52 if (const AttributedType *AT = dyn_cast<AttributedType>(Ty)) {
75 if (auto nullability = AttributedType::stripOuterNullability(SugarRT)) {
77 AttributedType::getNullabilityAttrKind(*nullability), RT, RT);
87 AttributedType::stripOuterNullability(SugarPT)) {
89 AttributedType::getNullabilityAttrKind(*nullability), PT, PT);
    [all...]
DeclPrinter.cpp 997 if (auto nullability = AttributedType::stripOuterNullability(T))
    [all...]
ASTImporter.cpp 70 QualType VisitAttributedType(const AttributedType *T);
636 cast<AttributedType>(T1)->getModifiedType(),
637 cast<AttributedType>(T2)->getModifiedType()))
640 cast<AttributedType>(T1)->getEquivalentType(),
641 cast<AttributedType>(T2)->getEquivalentType()))
    [all...]
ASTDumper.cpp 363 void VisitAttributedType(const AttributedType *T) {
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaObjCProperty.cpp     [all...]
SemaDeclObjC.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 106 if (isa<AttributedType>(ty.getTypePtr()))
Transforms.cpp 366 if (const AttributedType *AttrT = T->getAs<AttributedType>()) {
367 if (AttrT->getAttrKind() == AttributedType::attr_objc_ownership)
TransGCAttrs.cpp 84 if (TL.getAttrKind() != AttributedType::attr_objc_ownership)
TransProperties.cpp 322 if (isa<AttributedType>(I->IvarD->getType()))
  /external/clang/include/clang/AST/
TypeLoc.h 726 AttributedType,
729 AttributedType::Kind getAttrKind() const {
734 return (getAttrKind() >= AttributedType::FirstExprOperandKind &&
735 getAttrKind() <= AttributedType::LastExprOperandKind);
739 return (getAttrKind() >= AttributedType::FirstEnumOperandKind &&
740 getAttrKind() <= AttributedType::LastEnumOperandKind);
    [all...]
ASTContext.h 132 llvm::FoldingSet<AttributedType> AttributedTypes;
    [all...]
Type.h     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 320 const auto *AttrType = Type->getAs<AttributedType>();
323 if (AttrType->getAttrKind() == AttributedType::attr_nullable)
325 else if (AttrType->getAttrKind() == AttributedType::attr_nonnull)
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 134 AttributedType,
CodeGenFunction.cpp 113 if (Source) *Source = AlignmentSource::AttributedType;
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 106 if (auto *ATT = T->getAs<AttributedType>()) {

Completed in 135 milliseconds

1 2