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

  /external/chromium_org/base/strings/
string_piece_unittest.cc 196 typedef BasicStringPiece<TypeParam> Piece;
209 Piece e;
213 Piece f(temp);
232 ASSERT_EQ(Piece::npos, TypeParam::npos);
235 ASSERT_EQ(a.find(b, 1), Piece::npos);
238 ASSERT_EQ(a.find(c, Piece::npos), Piece::npos);
239 ASSERT_EQ(b.find(c), Piece::npos);
240 ASSERT_EQ(b.find(c, Piece::npos), Piece::npos)
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 66 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p];
67 if (!Piece.isOperand()) continue;
71 if (Piece.getOperandNo() == OpNo)
220 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
221 if (!Piece.isOperand()) continue;
228 if (Idx == Piece.getOperandNo())
233 if (Idx == Piece.getOperandNo())
241 if (Idx == Piece.getOperandNo())
246 if (Idx == Piece.getOperandNo())
260 .validateConstraintModifier(Literal->getString(), Piece.getModifier()
    [all...]
  /external/chromium_org/ui/gfx/
render_text.h 91 typedef std::pair<int, SkColor> Piece;
97 std::vector<Piece> pieces_;
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 404 uint32_t Piece = Read(NumBits);
405 if ((Piece & (1U << (NumBits-1))) == 0)
406 return Piece;
411 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
413 if ((Piece & (1U << (NumBits-1))) == 0)
417 Piece = Read(NumBits);
424 uint32_t Piece = Read(NumBits);
425 if ((Piece & (1U << (NumBits-1))) == 0)
426 return uint64_t(Piece);
431 Result |= uint64_t(Piece & ((1U << (NumBits-1))-1)) << NextBit
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 70 PathDiagnosticPiece *Piece = I->get();
72 switch (Piece->getKind()) {
74 PathDiagnosticCallPiece *Call = cast<PathDiagnosticCallPiece>(Piece);
87 PathDiagnosticMacroPiece *Macro = cast<PathDiagnosticMacroPiece>(Piece);
91 Current.push_back(Piece);
94 // FIXME: This probably shouldn't mutate the original path piece.
101 Current.push_back(Piece);
135 "The call piece should be in the main file.");
145 // Check if the last piece in the callee path is a call to a function outside
152 // Otherwise, the last piece is in the main file
225 const PathDiagnosticPiece *piece = I->get(); local
1040 const PathDiagnosticPiece *piece = it->get(); local
    [all...]
BugReporter.cpp 111 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(path.front());
114 switch (piece->getKind()) {
116 removeRedundantMsgs(cast<PathDiagnosticCallPiece>(piece)->path);
119 removeRedundantMsgs(cast<PathDiagnosticMacroPiece>(piece)->subPieces);
130 cast<PathDiagnosticEventPiece>(piece);
132 // come up with a preference, record which piece to keep, and consume
133 // another piece from the path.
136 piece = pieceToKeep;
144 path.push_back(piece);
162 // Remove the front piece from the path. If it is still something w
2998 PathDiagnosticPiece *piece = I->get(); local
3452 PathDiagnosticPiece *piece = local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]

Completed in 206 milliseconds