Searched defs:Piece (Results 1 - 13 of 13) 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/core/fxcrt/
H A Dcfx_char.h14 enum class CFX_BreakType { None = 0, Piece, Line, Paragraph, Page }; member in class:CFX_BreakType
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp147 const DIExpression *Piece = I->first->getDebugExpression(); local
150 return !piecesOverlap(Piece, Pred.first->getDebugExpression());
/external/tensorflow/tensorflow/core/lib/strings/
H A Dstrcat.h138 StringPiece Piece() const { return piece_; } function in class:tensorflow::strings::AlphaNum
198 return internal::CatPieces({a.Piece(), b.Piece(), c.Piece(), d.Piece(),
199 e.Piece(),
200 static_cast<const AlphaNum &>(args).Piece()...});
237 {a.Piece(), b.Piece(), c.Piece(),
[all...]
/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/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/tensorflow/tensorflow/compiler/xla/
H A Dliteral_util.h660 class Piece { class in class:xla::Literal
707 Status CopyFrom(const Piece& src);
711 bool EqualElements(const Piece& other) const;
726 bool EqualElementsInternal(const Piece& other,
746 Piece& piece(const ShapeIndex& shape_index) {
749 const Piece& piece(const ShapeIndex& shape_index) const {
754 Piece& root_piece() { return piece({}); }
755 const Piece& root_piece() const { return piece({}); }
762 ShapeTree<Piece> pieces_;
802 tensorflow::gtl::ArraySlice<NativeT> Literal::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))
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitstreamReader.h722 uint32_t Piece = Read(NumBits); local
723 if ((Piece & (1U << (NumBits-1))) == 0)
724 return Piece;
729 Result |= (Piece & ((1U << (NumBits-1))-1)) << NextBit;
731 if ((Piece & (1U << (NumBits-1))) == 0)
735 Piece = Read(NumBits);
742 uint32_t Piece = Read(NumBits); local
743 if ((Piece & (1U << (NumBits-1))) == 0)
744 return uint64_t(Piece);
749 Result |= uint64_t(Piece
[all...]

Completed in 341 milliseconds