Searched defs:Pieces (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Rewrite/
H A DRewriteRope.cpp139 /// Pieces array.
142 /// Pieces - This tracks the file chunks currently in this leaf.
144 RopePiece Pieces[2*WidthFactor]; member in class:__anon3255::RopePieceBTreeLeaf
163 Pieces[--NumPieces] = RopePiece();
171 return Pieces[i];
248 while (Offset >= PieceOffs+Pieces[i].size()) {
249 PieceOffs += Pieces[i].size();
263 RopePiece Tail(Pieces[i].StrData, Pieces[i].StartOffs+IntraPieceOffset,
264 Pieces[
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1401 SmallVector<AsmStmt::AsmStringPiece, 4> Pieces; local
1403 S.AnalyzeAsmString(Pieces, getContext(), DiagOffs);
1407 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
1408 if (Pieces[i].isString())
1409 AsmString += Pieces[i].getString();
1410 else if (Pieces[i].getModifier() == '\0')
1411 AsmString += '$' + llvm::utostr(Pieces[i].getOperandNo());
1413 AsmString += "${" + llvm::utostr(Pieces[i].getOperandNo()) + ':' +
1414 Pieces[i].getModifier() + '}';
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1600 PiecesTy Pieces; local
1623 Pieces.push_back(piece);
1668 Pieces.push_back(NewGroup);
1682 for (PiecesTy::iterator I=Pieces.begin(), E=Pieces.end(); I!=E; ++I)
/external/clang/lib/Sema/
H A DSemaStmt.cpp2280 SmallVector<AsmStmt::AsmStringPiece, 8> Pieces; local
2282 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
2349 if (isOperandMentioned(InputOpNo, Pieces)) {
2355 if (isOperandMentioned(TiedTo, Pieces)) {
2373 !isOperandMentioned(InputOpNo, Pieces) &&
/external/clang/tools/libclang/
H A DCIndex.cpp2348 RefNamePieces Pieces; local
2351 Pieces.push_back(QLoc);
2354 Pieces.push_back(NI.getLoc());
2357 Pieces.push_back(SourceRange(TemplateArgs->LAngleLoc,
2361 Pieces.push_back(SourceLocation::getFromRawEncoding(
2363 Pieces.push_back(SourceLocation::getFromRawEncoding(
2368 SourceRange R(Pieces.front().getBegin(), Pieces.back().getEnd());
2369 Pieces.clear();
2370 Pieces
4526 RefNamePieces Pieces; local
[all...]

Completed in 118 milliseconds