HomeSort by: relevance | last modified time | path
    Searched refs:ParenType (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclPrinter.cpp 167 else if (const ParenType *PTy = BaseType->getAs<ParenType>())
664 while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
ASTDiagnostic.cpp 40 if (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
ODRHash.cpp 966 void VisitParenType(const ParenType *T) {
ASTContext.cpp 2314 return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr());
3075 if (const auto *PT = dyn_cast<ParenType>(Orig))
4834 ParenType::Profile(ID, InnerType);
4837 ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4844 ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos);
4849 T = new (*this, TypeAlignment) ParenType(InnerType, Canon);
8740 } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) {
ASTStructuralEquivalence.cpp 935 if (!IsStructurallyEquivalent(Context, cast<ParenType>(T1)->getInnerType(),
936 cast<ParenType>(T2)->getInnerType()))
Type.cpp 498 while (const auto *PT = T->getAs<ParenType>())
1081 QualType VisitParenType(const ParenType *T) {
1856 Type *VisitParenType(const ParenType *T) {
ASTImporter.cpp 353 ExpectedType VisitParenType(const ParenType *T);
1298 ExpectedType ASTNodeImporter::VisitParenType(const ParenType *T) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 994 if (isa<ParenType>(*this))
2608 class ParenType : public Type, public llvm::FoldingSetNode {
2613 ParenType(QualType InnerType, QualType CanonType)
7196 else if (const auto *P = dyn_cast<ParenType>(Ty))
TypeLoc.h 1114 : public ConcreteTypeLoc<UnqualTypeLoc, ParenTypeLoc, ParenType,
RecursiveASTVisitor.h 1034 DEF_TRAVERSE_TYPE(ParenType, { TRY_TO(TraverseType(T->getInnerType())); })
1311 DEF_TRAVERSE_TYPELOC(ParenType, { TRY_TO(TraverseTypeLoc(TL.getInnerLoc())); })
ASTContext.h 226 mutable llvm::FoldingSet<ParenType> ParenTypes;
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 1031 const AstTypeMatcher<ParenType> parenType;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 139 if (auto *PTT = T->getAs<ParenType>()) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 6612 /// Matches \c ParenType nodes.
6620 /// \c varDecl(hasType(pointsTo(parenType()))) matches \c ptr_to_array but not
6622 extern const AstTypeMatcher<ParenType> parenType;
6624 /// Matches \c ParenType nodes where the inner type is a specific type.
6632 /// \c varDecl(hasType(pointsTo(parenType(innerType(functionType()))))) matches
6635 /// Usable as: Matcher<ParenType>
6637 AST_POLYMORPHIC_SUPPORTED_TYPES(ParenType));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 4966 if (isa<ParenType>(T)) {
6824 } else if (isa<ParenType>(Ty)) {
6825 T = cast<ParenType>(Ty)->getInnerType();
6901 QualType New = wrap(C, cast<ParenType>(Old)->getInnerType(), I);
SemaExprObjC.cpp 4422 if (const ParenType *PT = dyn_cast<ParenType>(DT))
SemaTemplateInstantiate.cpp 2289 TemplateTypeParmDecl *VisitParenType(const ParenType *T) {
SemaDecl.cpp 5951 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 3177 T = cast<ParenType>(T)->getInnerType();

Completed in 77 milliseconds