HomeSort by: relevance | last modified time | path
    Searched refs:TypedefType (Results 1 - 25 of 61) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CocoaConventions.cpp 27 while (const TypedefType *TD = RetTy->getAs<TypedefType>()) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
BoolAssignmentChecker.cpp 47 if (const TypedefType *TT = Ty->getAs<TypedefType>())
NonnullGlobalConstantsChecker.cpp 112 if (const auto *TT = dyn_cast<TypedefType>(T)) {
139 } else if (auto *T = dyn_cast<TypedefType>(Ty)) {
LLVMConventionsChecker.cpp 53 const TypedefType *TT = T->getAs<TypedefType>();
NSErrorChecker.cpp 316 const TypedefType* TT = PPT->getPointeeType()->getAs<TypedefType>();
FuchsiaHandleChecker.cpp 261 if (const auto *HandleType = S->getType()->getAs<TypedefType>())
291 if (const auto *HandleType = QT->getAs<TypedefType>()) {
378 if (const auto *TypeDefTy = FuncDecl->getReturnType()->getAs<TypedefType>())
  /src/external/apache2/llvm/dist/clang/lib/AST/
NSAPI.cpp 383 const TypedefType *TDT = T->getAs<TypedefType>();
518 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
575 while (const TypedefType *TDT = T->getAs<TypedefType>()) {
ASTImporterLookupTable.cpp 66 } else if (isa<TypedefType>(Ty)) {
QualTypeNames.cpp 251 } else if (const auto *TDD = dyn_cast<TypedefType>(Type)) {
323 if (const auto *TDT = dyn_cast<TypedefType>(TypePtr)) {
FormatString.cpp 979 assert(isa<TypedefType>(QT) && "Expected a TypedefType");
980 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl();
1003 if (!isa<TypedefType>(T))
1006 Typedef = cast<TypedefType>(T)->getDecl();
ODRHash.cpp 712 const auto *TypedefT = dyn_cast<TypedefType>(T);
1032 void VisitTypedefType(const TypedefType *T) {
1037 if (const TypedefType *Underlying =
1038 dyn_cast<TypedefType>(UnderlyingType.getTypePtr())) {
CommentSema.cpp 895 if (QT->getAs<TypedefType>())
898 if (P->getPointeeType()->getAs<TypedefType>())
901 if (P->getPointeeType()->getAs<TypedefType>())
Type.cpp 83 ND = ty->castAs<TypedefType>()->getDecl();
504 /// sugar, such as a TypedefType) by removing any existing sugar until it
524 template <> const TypedefType *Type::getAs() const {
525 return getAsSugar<TypedefType>(this);
3380 TypedefType::TypedefType(TypeClass tc, const TypedefNameDecl *D,
3384 assert(!isa<TypedefType>(can) && "Invalid canonical type");
3387 QualType TypedefType::desugar() const {
4255 if (const auto *typedefType = dyn_cast<TypedefType>(cur)
    [all...]
PrintfFormatString.cpp 846 if (isa<TypedefType>(QT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
876 if (!isa<TypedefType>(QT) && QT->isCharType()) {
ScanfFormatString.cpp 503 if (isa<TypedefType>(PT) && (LangOpt.C99 || LangOpt.CPlusPlus11))
ASTDiagnostic.cpp 171 if (const TypedefType *QTT = dyn_cast<TypedefType>(QT))
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 434 const TypedefType *TT = T->getAs<TypedefType>();
496 D = cast<TypedefType>(TP)->getDecl();
1299 if (auto *TT = dyn_cast_or_null<TypedefType>(T.getTypePtrOrNull())) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h 209 void VisitTypedefType(const TypedefType *TT);
TextNodeDumper.h 309 void VisitTypedefType(const TypedefType *T);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTBAA.cpp 88 while (auto *TT = QTy->getAs<TypedefType>()) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 88 if (!PT.isNull() && !QT->getAs<TypedefType>())
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 470 if (const auto* TT = Loc.getType()->getAs<clang::TypedefType>())
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 509 if (!isa<TypedefType>(RT)) {
1057 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr()))
1360 while (const TypedefType *TD = dyn_cast<TypedefType>(Ty.getTypePtr()))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 3846 static inline T *getObjCBridgeAttr(const TypedefType *TD) {
3863 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
4010 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
4076 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) {
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 56 $(LREF TypedefType)
7837 static if (isFloatingPoint!T1 || isFloatingPoint!(TypedefType!T1))
7871 you can use the `TypedefType` template to extract the
7978 static assert(is(TypedefType!MyIntInit == int));
8028 template TypedefType(T)
8031 alias TypedefType = Arg;
8033 alias TypedefType = T;
8042 static assert(is(TypedefType!MyInt == int));
8045 static assert(is(TypedefType!int == int));
8050 MyInt myInt = MyInt( num.to!(TypedefType!MyInt) )
    [all...]

Completed in 108 milliseconds

1 2 3