Home
last modified time | relevance | path

Searched refs:getToContext (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/AST/
DASTImporter.cpp1556 return Importer.getToContext().SingletonId; in VisitBuiltinType()
1560 case BuiltinType::Id: return Importer.getToContext().SingletonId; in VisitBuiltinType()
1573 if (Importer.getToContext().getLangOpts().CharIsSigned) in VisitBuiltinType()
1574 return Importer.getToContext().UnsignedCharTy; in VisitBuiltinType()
1576 return Importer.getToContext().CharTy; in VisitBuiltinType()
1582 if (!Importer.getToContext().getLangOpts().CharIsSigned) in VisitBuiltinType()
1583 return Importer.getToContext().SignedCharTy; in VisitBuiltinType()
1585 return Importer.getToContext().CharTy; in VisitBuiltinType()
1591 return Importer.getToContext().WCharTy; in VisitBuiltinType()
1602 return Importer.getToContext().getComplexType(ToElementType); in VisitComplexType()
[all …]
/external/clang/include/clang/AST/
DASTImporter.h256 ASTContext &getToContext() const { return ToContext; } in getToContext() function