HomeSort by relevance Sort by last modified time
    Searched refs:piece (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/pcre/pcrecpp/
pcre_stringpiece.cc 37 std::ostream& operator<<(std::ostream& o, const pcrecpp::StringPiece& piece) {
38 return (o << piece.as_string());
  /external/libchrome/base/strings/
string_split.cc 19 // non-piece string type.
24 OutputType PieceToOutputType(BasicStringPiece<Str> piece) {
25 return piece;
28 std::string PieceToOutputType<std::string, std::string>(StringPiece piece) {
29 return piece.as_string();
32 string16 PieceToOutputType<string16, string16>(StringPiece16 piece) {
33 return piece.as_string();
51 size_t FindFirstOf(StringPiece piece, char c, size_t pos) {
52 return piece.find(c, pos);
54 size_t FindFirstOf(StringPiece16 piece, char16 c, size_t pos)
86 BasicStringPiece<Str> piece; local
    [all...]
  /external/valgrind/memcheck/tests/
memalign2.c 29 int* piece;
43 // We allocate (and then free) a piece of memory smaller than
50 piece = malloc(1024 * 1000); assert (piece);
51 free (piece);
56 piece = malloc(1024 * 100); assert (piece);
58 free (piece);
  /frameworks/base/tools/aapt2/util/
Util.cpp 124 for (const StringPiece& piece : Tokenize(str, '.')) {
126 if (piece.empty()) {
131 if (piece.data()[0] == '$' || piece.data()[piece.size() - 1] == '$') {
135 if (FindNonAlphaNumericAndNotInSet(piece, "$_") != piece.end()) {
148 for (const StringPiece& piece : Tokenize(str, '.')) {
150 if (piece.empty()) {
154 if (piece.data()[0] == '_' || piece.data()[piece.size() - 1] == '_')
    [all...]
  /external/pdfium/xfa/fde/
cfde_txtedtpage.cpp 65 for (const auto& piece : m_Pieces) {
66 if (nIndex >= piece.nStart && nIndex < piece.nStart + piece.nCount) {
67 std::vector<CFX_RectF> rectArr = m_pTextSet->GetCharRects(&piece, bBBox);
68 rect = rectArr[nIndex - piece.nStart];
69 return piece.nBidiLevel;
156 for (const auto& piece : m_Pieces) {
157 if (!rtClip.IntersectWith(m_pTextSet->GetRect(piece)))
160 int32_t nCount = m_pTextSet->GetDisplayPos(piece, pos, false)
    [all...]
cfde_txtedttextset.cpp 48 int32_t CFDE_TxtEdtTextSet::GetDisplayPos(const FDE_TEXTEDITPIECE& piece,
52 int32_t nLength = piece.nCount;
63 tr.pIdentity = &piece;
69 tr.dwCharStyles = piece.dwCharStyles;
70 tr.pRect = &piece.rtPiece;
  /external/curl/lib/
http_chunks.c 114 size_t piece; local
187 more or less than 'datasize'. Get the smallest piece.
189 piece = curlx_sotouz((ch->datasize >= length)?length:ch->datasize);
200 piece);
211 (ssize_t)piece);
218 (ssize_t)piece);
233 *wrote += piece;
235 ch->datasize -= piece; /* decrease amount left to expect */
236 datap += piece; /* move read pointer forward */
237 length -= piece; /* decrease space left in this round *
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
string_piece.h 313 friend std::ostream& operator<<(std::ostream& os, const string_piece& piece);
323 inline std::ostream& operator<<(std::ostream& os, const string_piece& piece) {
325 assert(((piece.end_ == nullptr) == (piece.begin_ == nullptr)));
326 if (piece.end_ != piece.begin_) {
327 os.write(piece.begin_, piece.end_ - piece.begin_);
344 size_t operator()(const shaderc_util::string_piece& piece) const
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
bytestream.cc 174 StringPiece piece(source_->Peek());
175 if (piece.size() > limit_) {
176 piece.set(piece.data(), limit_);
179 return piece;
stringpiece.cc 40 std::ostream& operator<<(std::ostream& o, StringPiece piece) {
41 o.write(piece.data(), piece.size());
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTestData.java 103 String piece = parts[i];
104 if (piece.startsWith("#")) continue;
105 String[] nameAndValue = piece.split(":", 2);
  /external/regex-re2/util/
stringpiece.cc 10 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
11 o.write(piece.data(), piece.size());
  /art/compiler/debug/
elf_debug_loc_writer.h 215 for (int piece = 0; piece < (is64bitValue ? 2 : 1); piece++) {
216 DexRegisterLocation reg_loc = (piece == 0 ? reg_lo : reg_hi);
222 if (piece == 0 && reg_hi.GetKind() == Kind::kInStack &&
228 if (piece == 0 && reg_hi.GetKind() == Kind::kInRegisterHigh &&
234 piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegister &&
241 if (piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegisterHigh &&
  /art/runtime/base/
stringpiece.cc 96 std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
97 o.write(piece.data(), piece.size());
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
CaseIterator.java 426 // each piece becomes an array of equivalent values
429 String piece = null; local
431 for (int i = 0; i < source.length(); i += piece.length()) {
433 // find *longest* matching piece
438 piece = UTF16.valueOf(source, i);
439 caseFold = (String) toCaseFold.get(piece);
444 piece = source.substring(i, j);
445 caseFold = (String) toCaseFold.get(piece);
452 piece = UTF16.valueOf(source, i);
453 variants[count++] = new String[] {piece}; // single item strin
    [all...]
  /external/elfutils/tests/
run-varlocs.sh 46 [80483f0,80483f6) {implicit_value(8){0200000000000000}, piece(8), implicit_value(8){1500000000000000}, piece(8)}
  /external/libmojo/third_party/jinja2/
loaders.py 27 for piece in template.split('/'):
28 if path.sep in piece \
29 or (path.altsep and path.altsep in piece) or \
30 piece == path.pardir:
32 elif piece and piece != '.':
33 pieces.append(piece)
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
DisablePaging64.S 44 sub %rsi, %rax # rax <- The size of transition piece code
50 mov %rax, %rcx # rcx <- The size of transition piece code
DisablePaging64.asm 42 sub rax, rsi ; rax <- The size of transition piece code
48 mov rcx, rax ; rcx <- The size of transition piece code
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 314 const PathDiagnosticPiece *piece = I->get(); local
315 AddFID(FM, Fids, *SM, piece->getLocation().asLocation());
316 ArrayRef<SourceRange> Ranges = piece->getRanges();
324 dyn_cast<PathDiagnosticCallPiece>(piece)) {
333 dyn_cast<PathDiagnosticMacroPiece>(piece)) {
  /build/soong/
doc.go 23 // A device is a piece of hardware that will be running Android. It may specify
26 // piece of hardware, or multiple devices may be used for different variants.
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 126 llvm::StringRef piece() const { function in class:clang::RopePieceBTreeIterator
  /external/pcre/pcrecpp/include/
pcre_stringpiece.h 32 // A string like object that points into another piece of memory.
178 const pcrecpp::StringPiece& piece);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Rewrite/Core/
RewriteRope.h 126 llvm::StringRef piece() const { function in class:clang::RopePieceBTreeIterator
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Rewrite/Core/
RewriteRope.h 126 llvm::StringRef piece() const { function in class:clang::RopePieceBTreeIterator

Completed in 2560 milliseconds

1 2 3 4 5