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

1 2 3 4

  /external/pcre/dist/
pcre_stringpiece.cc 41 std::ostream& operator<<(std::ostream& o, const pcrecpp::StringPiece& piece) {
42 return (o << piece.as_string());
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.c 58 * Piece 0 Piece 1 Piece 2 Piece 3 Piece 4
64 * Piece 5 Piece 6 Piece 7 Piece 8 Piece
388 char piece, index; local
555 int piece, rotation, max_rots; local
    [all...]
meteor-contest.go 70 * Piece 0 Piece 1 Piece 2 Piece 3 Piece 4
76 * Piece 5 Piece 6 Piece 7 Piece 8 Piece
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.c 58 * Piece 0 Piece 1 Piece 2 Piece 3 Piece 4
64 * Piece 5 Piece 6 Piece 7 Piece 8 Piece
388 char piece, index; local
555 int piece, rotation, max_rots; local
    [all...]
meteor-contest.go 70 * Piece 0 Piece 1 Piece 2 Piece 3 Piece 4
76 * Piece 5 Piece 6 Piece 7 Piece 8 Piece
    [all...]
  /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);
  /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);
234 *wrote += piece;
236 ch->datasize -= piece; /* decrease amount left to expect */
237 datap += piece; /* move read pointer forward */
238 length -= piece; /* decrease space left in this round *
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
FileUtilities.java 50 * Replaces all occurances of piece with replacement, and returns new String
52 public static String replace(String source, String piece, String replacement) {
53 if (source == null || source.length() < piece.length()) return source;
56 pos = source.indexOf(piece, pos);
58 source = source.substring(0,pos) + replacement + source.substring(pos + piece.length());
CaseIterator.java 428 // each piece becomes an array of equivalent values
431 String piece = null; local
433 for (int i = 0; i < source.length(); i += piece.length()) {
435 // find *longest* matching piece
440 piece = UTF16.valueOf(source, i);
441 caseFold = (String) toCaseFold.get(piece);
446 piece = source.substring(i, j);
447 caseFold = (String) toCaseFold.get(piece);
454 piece = UTF16.valueOf(source, i);
455 variants[count++] = new String[] {piece}; // single item strin
    [all...]
DataOutputCompressor.java 164 String piece = s.substring(common); local
167 int inPool = trailingPool.getIndex(piece);
170 writeUTF(piece);
171 trailingPool.put(piece);
Tabber.java 119 String piece = source.substring(lastPos, pos);
125 result.append(piece);
136 String piece = source.substring(start, limit); local
144 startPos = endPos - piece.length();
147 startPos = (startPos + endPos - piece.length() + 1)/2;
154 output.append(piece);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
FileUtilities.java 49 * Replaces all occurances of piece with replacement, and returns new String
51 public static String replace(String source, String piece, String replacement) {
52 if (source == null || source.length() < piece.length()) return source;
55 pos = source.indexOf(piece, pos);
57 source = source.substring(0,pos) + replacement + source.substring(pos + piece.length());
CaseIterator.java 427 // each piece becomes an array of equivalent values
430 String piece = null; local
432 for (int i = 0; i < source.length(); i += piece.length()) {
434 // find *longest* matching piece
439 piece = UTF16.valueOf(source, i);
440 caseFold = (String) toCaseFold.get(piece);
445 piece = source.substring(i, j);
446 caseFold = (String) toCaseFold.get(piece);
453 piece = UTF16.valueOf(source, i);
454 variants[count++] = new String[] {piece}; // single item strin
    [all...]
  /frameworks/base/tools/aapt2/util/
Util.cpp 123 for (const StringPiece16& piece : tokenize(str, u'.')) {
125 if (piece.empty()) {
130 if (piece.data()[0] == u'$' || piece.data()[piece.size() - 1] == u'$') {
134 if (findNonAlphaNumericAndNotInSet(piece, u"$_") != piece.end()) {
147 for (const StringPiece16& piece : tokenize(str, u'.')) {
149 if (piece.empty()) {
153 if (piece.data()[0] == u'_' || piece.data()[piece.size() - 1] == u'_')
    [all...]
  /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 213 for (int piece = 0; piece < (is64bitValue ? 2 : 1); piece++) {
214 DexRegisterLocation reg_loc = (piece == 0 ? reg_lo : reg_hi);
220 if (piece == 0 && reg_hi.GetKind() == Kind::kInStack &&
226 if (piece == 0 && reg_hi.GetKind() == Kind::kInRegisterHigh &&
232 piece == 0 && reg_hi.GetKind() == Kind::kInFpuRegister &&
239 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/opencv3/platforms/android/service/engine/src/org/opencv/engine/manager/
ManagerActivity.java 99 for (String piece : vars) {
100 res += "\n\t" + piece + " -> "
101 + engine.getLibraryList(piece);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
CaseIterator.java 424 // each piece becomes an array of equivalent values
427 String piece = null; local
429 for (int i = 0; i < source.length(); i += piece.length()) {
431 // find *longest* matching piece
436 piece = UTF16.valueOf(source, i);
437 caseFold = (String) toCaseFold.get(piece);
442 piece = source.substring(i, j);
443 caseFold = (String) toCaseFold.get(piece);
450 piece = UTF16.valueOf(source, i);
451 variants[count++] = new String[] {piece}; // single item strin
    [all...]
  /external/pdfium/xfa/src/fee/src/fee/
fde_txtedtpage.cpp 323 FDE_LPTEXTEDITPIECE piece = m_PieceMassArr.GetPtrAt(i); local
325 if (nStart >= piece->nStart && nStart < (piece->nStart + piece->nCount)) {
326 int32_t nRangeEnd = piece->nCount - 1;
328 if (nEnd >= piece->nStart && nEnd < (piece->nStart + piece->nCount)) {
329 nRangeEnd = nEnd - piece->nStart;
333 m_pTextSet->GetCharRects((FDE_HVISUALOBJ)piece, rcArr);
    [all...]
  /external/elfutils/tests/
run-varlocs.sh 46 [80483f0,80483f6) {implicit_value(8){0200000000000000}, piece(8), implicit_value(8){1500000000000000}, piece(8)}
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DataOutputCompressor.java 163 String piece = s.substring(common); local
166 int inPool = trailingPool.getIndex(piece);
169 writeUTF(piece);
170 trailingPool.put(piece);
Tabber.java 118 String piece = source.substring(lastPos, pos);
124 result.append(piece);
135 String piece = source.substring(start, limit); local
143 startPos = endPos - piece.length();
146 startPos = (startPos + endPos - piece.length() + 1)/2;
153 output.append(piece);

Completed in 1504 milliseconds

1 2 3 4