Searched defs:Piece (Results 1 - 11 of 11) sorted by relevance

/external/libchrome/base/strings/
H A Dstring_piece_unittest.cc198 typedef BasicStringPiece<TypeParam> Piece; typedef
211 Piece e;
215 Piece f(temp);
234 ASSERT_EQ(Piece::npos, TypeParam::npos);
237 ASSERT_EQ(a.find(b, 1), Piece::npos);
240 ASSERT_EQ(a.find(c, Piece::npos), Piece::npos);
241 ASSERT_EQ(b.find(c), Piece::npos);
242 ASSERT_EQ(b.find(c, Piece::npos), Piece
[all...]
/external/pdfium/xfa/fde/
H A Dcfde_txtedtparag.cpp65 const CFX_TxtPiece* Piece = pTxtBreak->GetBreakPiece(j); local
66 nTotal += Piece->GetLength();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp147 const DIExpression *Piece = I->first->getDebugExpression(); local
150 return !piecesOverlap(Piece, Pred.first->getDebugExpression());
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp68 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p]; local
69 if (!Piece.isOperand()) continue;
73 if (Piece.getOperandNo() == OpNo)
363 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i]; local
364 if (!Piece.isOperand()) continue;
367 unsigned ConstraintIdx = Piece.getOperandNo();
394 Literal->getString(), Piece.getModifier(), Size,
400 auto B = Diag(Piece.getRange().getBegin(),
403 SuggestedModifier = "%" + SuggestedModifier + Piece.getString();
404 B.AddFixItHint(FixItHint::CreateReplacement(Piece
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h303 uint32_t Piece = Read(NumBits); local
304 if ((Piece & (1U << (NumBits-1))) == 0)
305 return Piece;
310 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
312 if ((Piece & (1U << (NumBits-1))) == 0)
316 Piece = Read(NumBits);
323 uint32_t Piece = Read(NumBits); local
324 if ((Piece & (1U << (NumBits-1))) == 0)
325 return uint64_t(Piece);
330 Result |= uint64_t(Piece
[all...]
/external/pdfium/core/fxcrt/
H A Dfx_ucd.h170 enum class CFX_RTFBreakType { None = 0, Piece, Line, Paragraph, Page }; member in class:CFX_RTFBreakType
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
H A DBitstreamReader.h311 uint32_t Piece = Read(NumBits); local
312 if ((Piece & (1U << (NumBits-1))) == 0)
313 return Piece;
318 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
320 if ((Piece & (1U << (NumBits-1))) == 0)
324 Piece = Read(NumBits);
331 uint32_t Piece = Read(NumBits); local
332 if ((Piece & (1U << (NumBits-1))) == 0)
333 return uint64_t(Piece);
338 Result |= uint64_t(Piece
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp67 PathDiagnosticPiece *Piece = I->get(); local
69 switch (Piece->getKind()) {
71 PathDiagnosticCallPiece *Call = cast<PathDiagnosticCallPiece>(Piece);
84 PathDiagnosticMacroPiece *Macro = cast<PathDiagnosticMacroPiece>(Piece);
88 Current.push_back(Piece);
98 Current.push_back(Piece);
H A DBugReporter.cpp515 PathDiagnosticPiece *Piece = V->VisitNode(N, Pred, PDB, *R); local
516 delete Piece;
1967 PathDiagnosticControlFlowPiece *Piece = local
1970 if (!Piece)
1973 PathDiagnosticLocation SrcLoc = Piece->getStartLocation();
1989 const Stmt *Dst = getLocStmt(Piece->getEndLocation());
2004 Piece->setStartLocation(DstContext);
2026 Piece = new PathDiagnosticControlFlowPiece(SrcLoc, DstContext);
2027 I = pieces.insert(I, Piece);
3131 if (std::unique_ptr<PathDiagnosticPiece> Piece
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1683 Constant *Piece = ConstantExpr::getLShr(C, ConstantInt::get(C->getType(), local
1685 Piece = ConstantExpr::getTrunc(Piece, ElementIntTy);
1686 if (!collectInsertionElements(Piece, ShiftI, Elements, VecEltTy,
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1512 Constant *Piece = ConstantExpr::getLShr(C, ConstantInt::get(C->getType(), local
1514 Piece = ConstantExpr::getTrunc(Piece, ElementIntTy);
1515 if (!CollectInsertionElements(Piece, ElementIndex+i, Elements, VecEltTy))

Completed in 392 milliseconds