HomeSort by relevance Sort by last modified time
    Searched defs:Pieces (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Rewrite/Core/
RewriteRope.cpp 27 /// references the whole string into two rope pieces that reference each half.
46 /// which results in two rope pieces, which is just like an insert) or it can
136 /// NumPieces - This holds the number of rope pieces currently active in the
137 /// Pieces array.
140 /// Pieces - This tracks the file chunks currently in this leaf.
142 RopePiece Pieces[2*WidthFactor];
158 /// clear - Remove all rope pieces from this leaf.
161 Pieces[--NumPieces] = RopePiece();
169 return Pieces[i];
245 while (Offset >= PieceOffs+Pieces[i].size())
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 461 /// it into pieces. If the asm string is erroneous, emit errors and return
463 unsigned GCCAsmStmt::AnalyzeAsmString(SmallVectorImpl<AsmStringPiece>&Pieces,
484 Pieces.push_back(AsmStringPiece(Result));
498 Pieces.push_back(AsmStringPiece(CurStringPiece));
535 // add it to the Pieces list.
537 Pieces.push_back(AsmStringPiece(CurStringPiece));
567 Pieces.push_back(AsmStringPiece(N, Modifier));
590 Pieces.push_back(AsmStringPiece(N, Modifier));
603 // Analyze the asm string to decompose it into its pieces. We know that Sema
605 SmallVector<GCCAsmStmt::AsmStringPiece, 4> Pieces;
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 215 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
217 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
224 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
225 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
332 if (isOperandMentioned(InputOpNo, Pieces)) {
338 if (isOperandMentioned(TiedTo, Pieces)) {
356 !isOperandMentioned(InputOpNo, Pieces) &&
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 154 /// can lead to redundant diagnostic pieces at the same point in a path.
184 // Check to see if we should keep one of the two pieces. If we
201 /// Recursively scan through a path and prune out calls and macros pieces
204 bool BugReporter::RemoveUnneededCalls(PathPieces &pieces, BugReport *R) {
206 const unsigned N = pieces.size();
211 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(pieces.front());
212 pieces.pop_front();
214 // Throw away pieces with invalid locations. Note that we can't throw away
256 pieces.push_back(piece);
262 /// Recursively scan through a path and make sure that all call pieces hav
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 29 milliseconds