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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 9 // This file defines the CanQual class template, which provides access to
48 /// The CanQual template is a lightweight smart pointer that provides access
54 /// BuiltinType, etc.). The type stored within @c CanQual<T> will be of that
56 /// a shorthand for @c CanQual<Type>.
58 /// An instance of @c CanQual<T> can be implicitly converted to a
59 /// @c CanQual<U> when T is derived from U, which essentially provides an
60 /// implicit upcast. For example, @c CanQual<LValueReferenceType> can be
61 /// converted to @c CanQual<ReferenceType>. Note that any @c CanQual type can
65 class CanQual {
    [all...]
DeclarationName.h 34 template <typename> class CanQual;
43 using CanQualType = CanQual<Type>;
Type.h 110 template <typename> class CanQual;
133 using CanQualType = CanQual<Type>;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenABITypes.cpp 44 CanQual<FunctionProtoType> Ty) {
50 CanQual<FunctionNoProtoType> Ty) {
CodeGenTypes.h 32 template <typename> class CanQual;
47 typedef CanQual<Type> CanQualType;
205 const CGFunctionInfo &arrangeFreeFunctionType(CanQual<FunctionProtoType> Ty);
206 const CGFunctionInfo &arrangeFreeFunctionType(CanQual<FunctionNoProtoType> Ty);
CodeGenTypes.cpp 363 CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)));
367 CanQual<FunctionNoProtoType>::CreateUnsafe(QualType(FNPT, 0)));
CGCall.cpp 90 static CanQual<FunctionProtoType> GetFormalType(const CXXMethodDecl *MD) {
106 CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionNoProtoType> FTNP) {
148 CanQual<FunctionProtoType> FPT) {
180 CanQual<FunctionProtoType> FTP) {
196 CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType> FTP) {
325 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
407 CanQual<FunctionProtoType> FPT = GetFormalType(D);
449 if (CanQual<FunctionNoProtoType> noProto = FTy.getAs<FunctionNoProtoType>()) {
535 CanQual<FunctionProtoType> FTP = GetFormalType(MD);
547 CanQual<FunctionProtoType> FTP = GetFormalType(CD)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CodeGenABITypes.h 75 CanQual<FunctionProtoType> Ty);
78 CanQual<FunctionNoProtoType> Ty);
CGFunctionInfo.h 511 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype,
520 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAccess.cpp 385 CanQual<FunctionProtoType> FriendTy
388 CanQual<FunctionProtoType> ContextTy
SemaOverload.cpp 10414 if (CanQual<ReferenceType> RT = CToTy->getAs<ReferenceType>())
10418 if (CanQual<PointerType> FromPT = CFromTy->getAs<PointerType>())
10419 if (CanQual<PointerType> ToPT = CToTy->getAs<PointerType>()) {

Completed in 47 milliseconds