Searched refs:Pieces (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp137 /// Pieces array.
140 /// Pieces - This tracks the file chunks currently in this leaf.
141 RopePiece Pieces[2*WidthFactor]; member in class:__anon1980::RopePieceBTreeLeaf
162 Pieces[--NumPieces] = RopePiece();
170 return Pieces[i];
247 while (Offset >= PieceOffs+Pieces[i].size()) {
248 PieceOffs += Pieces[i].size();
262 RopePiece Tail(Pieces[i].StrData, Pieces[i].StartOffs+IntraPieceOffset,
263 Pieces[
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp137 std::pair<StringRef, StringRef> Pieces = FormatString.split("$"); local
138 OS << Pieces.first.str();
139 if (Pieces.second.empty()) break;
141 const char Next = Pieces.second.front();
142 FormatString = Pieces.second.drop_front();
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp257 const PathPieces &Pieces,
259 const SourceManager &SMgr = Pieces.front()->getLocation().getManager();
261 for (const auto &Piece : Pieces) {
275 const PathPieces &Pieces,
278 {"threadFlows", json::Array{createThreadFlow(LO, Pieces, Artifacts)}}};
256 createThreadFlow(const LangOptions &LO, const PathPieces &Pieces, json::Array &Artifacts) argument
274 createCodeFlow(const LangOptions &LO, const PathPieces &Pieces, json::Array &Artifacts) argument
H A DBugReporter.cpp493 adjustCallLocations(PathPieces &Pieces, argument
495 for (const auto &I : Pieces) {
526 static void removeEdgesToDefaultInitializers(PathPieces &Pieces) { argument
527 for (PathPieces::iterator I = Pieces.begin(), E = Pieces.end(); I != E;) {
538 I = Pieces.erase(I);
548 I = Pieces.erase(I);
560 static void removePiecesWithInvalidLocations(PathPieces &Pieces) { argument
561 for (PathPieces::iterator I = Pieces.begin(), E = Pieces
2658 PiecesTy Pieces; local
3064 PathPieces &Pieces = PD->getMutablePieces(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp523 MultiPiece(std::vector<Piece *> Pieces) argument
524 : Piece(MultiPieceClass), Pieces(std::move(Pieces)) {}
526 std::vector<Piece *> Pieces; member in struct:__anon2438::MultiPiece
816 std::vector<std::pair<Piece *, ModifierMappingsType>> &Pieces) const {
820 return gatherNodes(Builder.getSubstitution(Sub), NewMappings, Pieces);
823 for (Piece *Node : MD->Pieces)
824 gatherNodes(Node, CurrentMappings, Pieces);
827 Pieces.push_back(std::make_pair(OrigP, CurrentMappings));
831 if (P->Pieces
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp480 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces; local
482 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
489 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
490 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
638 if (isOperandMentioned(InputOpNo, Pieces)) {
644 if (isOperandMentioned(TiedTo, Pieces)) {
662 !isOperandMentioned(InputOpNo, Pieces) &&
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp534 unsigned GCCAsmStmt::AnalyzeAsmString(SmallVectorImpl<AsmStringPiece>&Pieces,
555 Pieces.push_back(AsmStringPiece(Result));
572 Pieces.push_back(AsmStringPiece(CurStringPiece));
611 // add it to the Pieces list.
613 Pieces.push_back(AsmStringPiece(CurStringPiece));
663 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc);
699 Pieces.emplace_back(N, std::move(Str), BeginLoc, EndLoc);
714 SmallVector<GCCAsmStmt::AsmStringPiece, 4> Pieces; local
716 AnalyzeAsmString(Pieces, C, DiagOffs);
719 for (const auto &Piece : Pieces) {
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3001 unsigned AnalyzeAsmString(SmallVectorImpl<AsmStringPiece> &Pieces,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp94 unsigned Pieces = (Size + 63) / 64;
95 unsigned NewNumElts = (Ty.getNumElements() + 1) / Pieces;
H A DSIISelLowering.cpp5382 SmallVector<SDValue, 4> Pieces;
5391 Pieces.push_back(SubVec);
5407 Pieces.push_back(DAG.getBuildVector(PackVT, SL, { Elt0, Elt1 }));
5411 return DAG.getNode(ISD::CONCAT_VECTORS, SL, ResultVT, Pieces);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2201 static void getUnmergePieces(SmallVectorImpl<Register> &Pieces, argument
2205 Pieces.push_back(Unmerge.getReg(I));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 436 milliseconds