HomeSort by: relevance | last modified time | path
    Searched defs:TSI (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 301 const TypeSourceInfo *TSI;
303 TSI = VD->getTypeSourceInfo();
305 TSI = PD->getTypeSourceInfo();
307 TSI = nullptr;
308 if (TSI) {
309 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
327 const TypeSourceInfo *TSI =
331 if (!TSI)
333 TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
351 const TypeSourceInfo *TSI = TAD->getTypeSourceInfo()
    [all...]
DeclObjC.cpp 1181 const auto *TSI = getReturnTypeSourceInfo();
1182 if (TSI)
1183 return TSI->getTypeLoc().getSourceRange();
2281 TypeSourceInfo *TSI,
2283 return new (C, DC) ObjCPropertyDecl(DC, L, Id, AtLoc, LParenLoc, T, TSI,
ODRHash.cpp 364 TypeSourceInfo *TSI = D->getFriendType();
365 Hash.AddBoolean(TSI);
366 if (TSI) {
367 AddQualType(TSI->getType());
Decl.cpp 828 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo())
829 TypeAsWritten = TSI->getType();
979 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo())
980 TypeAsWritten = TSI->getType();
1855 TypeSourceInfo *TSI = getTypeSourceInfo();
1856 if (TSI) return TSI->getTypeLoc().getBeginLoc();
1861 TypeSourceInfo *TSI = getTypeSourceInfo();
1862 if (TSI) return TSI->getTypeLoc().getEndLoc()
    [all...]
TextNodeDumper.cpp 346 const TypeSourceInfo *TSI = A.getTypeSourceInfo();
347 if (TSI) {
349 dumpType(TSI->getType());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 210 const TypeSourceInfo *TSI = nullptr;
212 TSI =
215 TSI = i->ExplicitCastType;
233 if (TSI)
234 Ranges.push_back(TSI->getTypeLoc().getSourceRange());
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 725 section_iterator TSI = Obj.section_end();
727 TSI = *TSIOrErr;
730 assert(TSI != Obj.section_end() && "TSI should refer to a valid section");
732 bool IsCode = TSI->isText();
733 if (auto SectionIDOrErr = findOrEmitSection(Obj, *TSI, IsCode,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLambda.cpp 816 TypeSourceInfo *TSI = TLB.getTypeSourceInfo(Context, DeductType);
820 /*VarDecl*/nullptr, DeclarationName(Id), DeductType, TSI,
861 TypeSourceInfo *TSI = Context.getTrivialTypeSourceInfo(InitCaptureType, Loc);
862 if (auto PETL = TSI->getTypeLoc().getAs<PackExpansionTypeLoc>())
870 Loc, Id, InitCaptureType, TSI, SC_Auto);
1699 TypeSourceInfo *TSI = nullptr;
1703 TSI = Capture.getVariable()->getTypeSourceInfo();
1708 if (!TSI)
1709 TSI = Context.getTrivialTypeSourceInfo(FieldType, Loc);
1714 /*Id=*/nullptr, FieldType, TSI, /*BW=*/nullptr
    [all...]
SemaObjCProperty.cpp 183 TypeSourceInfo *TSI = GetTypeForDeclarator(FD.D, S);
184 QualType T = TSI->getType();
203 T, TSI, MethodImplKind);
213 ODS.getPropertyAttributes(), T, TSI,
417 TypeSourceInfo *TSI,
517 T, TSI, MethodImplKind, DC);
SemaTemplate.cpp 1285 QualType Sema::CheckNonTypeTemplateParameterType(TypeSourceInfo *&TSI,
1287 if (TSI->getType()->isUndeducedType()) {
1293 TSI = SubstAutoTypeSourceInfo(TSI, Context.DependentTy);
1296 return CheckNonTypeTemplateParameterType(TSI->getType(), Loc);
2096 TypeSourceInfo *transform(TypeSourceInfo *TSI) { return TransformType(TSI); }
2108 TypeSourceInfo *TSI = InnerTLB.getTypeSourceInfo(Context, Transformed);
2112 OrigDecl->getLocation(), OrigDecl->getIdentifier(), TSI);
2117 OrigDecl->getLocation(), OrigDecl->getIdentifier(), TSI);
    [all...]
SemaDecl.cpp 5512 TypeSourceInfo *TSI = nullptr;
5513 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
5519 if (!TSI)
5520 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
5523 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
5524 if (!TSI) return true;
5527 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
11643 TypeSourceInfo *TSI,
    [all...]
SemaDeclAttr.cpp 1335 TypeSourceInfo *TSI = nullptr;
1336 QualType T = S.GetTypeFromParser(PT, &TSI);
1337 if (!TSI)
1338 TSI = S.Context.getTrivialTypeSourceInfo(T, AL.getLoc());
1354 D->addAttr(::new (S.Context) PreferredNameAttr(S.Context, AL, TSI));
SemaChecking.cpp 11689 TypeSourceInfo *TSI = Bitfield->getTypeSourceInfo();
11691 TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange();
TreeTransform.h 2980 TypeSourceInfo *TSI, Expr *Sub,
2982 return getSema().BuildBuiltinBitCastExpr(KWLoc, TSI, Sub, RParenLoc);
4807 TypeSourceInfo *TSI =
4809 if (TSI)
4810 return TSI->getTypeLoc();
10301 TypeSourceInfo *TSI = Assoc.getTypeSourceInfo();
10302 if (TSI) {
10303 TypeSourceInfo *AssocType = getDerived().TransformType(TSI);
10666 TypeSourceInfo *TSI = getDerived().TransformType(D->getTypeSourceInfo());
10668 Data[I].Type = SemaRef.CreateParsedType(DeclTy, TSI);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAG.h 218 const SelectionDAGTargetInfo *TSI = nullptr;
445 const SelectionDAGTargetInfo &getSelectionDAGInfo() const { return *TSI; }
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 1804 TypeSourceInfo *TSI;
1807 TypeSourceInfo *TSI, ArrayRef<Expr *> Args,
1818 TypeSourceInfo *TSI, ArrayRef<Expr *> Args,
1826 TypeSourceInfo *getTypeSourceInfo() const { return TSI; }
3435 TypeSourceInfo *TSI;
3443 CXXUnresolvedConstructExpr(QualType T, TypeSourceInfo *TSI,
3448 : Expr(CXXUnresolvedConstructExprClass, Empty), TSI(nullptr) {
3454 QualType T, TypeSourceInfo *TSI,
3464 QualType getTypeAsWritten() const { return TSI->getType(); }
3468 TypeSourceInfo *getTypeSourceInfo() const { return TSI; }
    [all...]
Expr.h 2392 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
2403 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
2421 void setTypeSourceInfo(TypeSourceInfo *tsi) {
2422 TSInfo = tsi;
5599 TSIPtrTy TSI;
5601 AssociationTy(ExprPtrTy E, TSIPtrTy TSI, bool Selected)
5602 : E(E), TSI(TSI), Selected(Selected) {}
5606 TSIPtrTy getTypeSourceInfo() const { return TSI; }
5607 QualType getType() const { return TSI ? TSI->getType() : QualType();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 1180 const TargetSubtargetInfo &TSI = MF.getSubtarget();
1181 const TargetFrameLowering *TFI = TSI.getFrameLowering();
1182 const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1367 const TargetSubtargetInfo &TSI = MF->getSubtarget();
1368 const TargetRegisterInfo *TRI = TSI.getRegisterInfo();
1390 if (!TSI.getFrameLowering()->hasFP(*MF)) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1294 TypeSourceInfo *TSI = readTypeSourceInfo();
1295 D->setType(T, TSI);
3142 // The TSI of redeclarations might not match (due to calling conventions
3143 // being inherited onto the type but not the TSI), but the TSI type of
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 7060 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
7062 SDValue Val = TSI.EmitTargetCodeForSetTag(
7584 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
7585 std::pair<SDValue, SDValue> Res = TSI.EmitTargetCodeForMemcmp(
7670 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
7672 TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(),
7732 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
7734 TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(),
7755 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo();
7757 TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot()
    [all...]

Completed in 113 milliseconds