HomeSort by relevance Sort by last modified time
    Searched refs:pieces (Results 26 - 50 of 366) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
repr.py 48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
49 if n > maxiter: pieces.append('...')
50 s = ', '.join(pieces)
82 pieces = []
86 pieces.append('%s: %s' % (keyrepr, valrepr))
87 if n > self.maxdict: pieces.append('...')
88 s = ', '.join(pieces)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
repr.py 48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
49 if n > maxiter: pieces.append('...')
50 s = ', '.join(pieces)
82 pieces = []
86 pieces.append('%s: %s' % (keyrepr, valrepr))
87 if n > self.maxdict: pieces.append('...')
88 s = ', '.join(pieces)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
repr.py 48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
49 if n > maxiter: pieces.append('...')
50 s = ', '.join(pieces)
82 pieces = []
86 pieces.append('%s: %s' % (keyrepr, valrepr))
87 if n > self.maxdict: pieces.append('...')
88 s = ', '.join(pieces)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 89 for (int i = 0; i < pieces.length; ++i) {
90 buffer.append(pieces[i][current[i]]);
102 if (current[i] < pieces[i].length) break; // got sequence
119 pieces = new String[1][];
121 pieces[0] = new String[]{""};
145 pieces = new String[segmentList.size()][];
147 for (i = 0; i < pieces.length; ++i) {
149 pieces[i] = getEquivalents(segmentList.get(i));
235 private String[][] pieces; field in class:CanonicalIterator
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 92 for (int i = 0; i < pieces.length; ++i) {
93 buffer.append(pieces[i][current[i]]);
105 if (current[i] < pieces[i].length) break; // got sequence
123 pieces = new String[1][];
125 pieces[0] = new String[]{""};
149 pieces = new String[segmentList.size()][];
151 for (i = 0; i < pieces.length; ++i) {
153 pieces[i] = getEquivalents(segmentList.get(i));
239 private String[][] pieces; field in class:CanonicalIterator
  /external/python/cpython3/Mac/Tools/
plistlib_generate_testdata.py 97 pieces = []
100 pieces.append(binascii.b2a_base64(chunk))
101 return b' '.join(pieces)
  /external/tensorflow/tensorflow/core/lib/strings/
strcat_test.cc 70 StringPiece pieces[] = {"Hello", "Cruel", "World"}; local
86 result = tensorflow::strings::StrCat(strs[1], pieces[2]);
89 result = tensorflow::strings::StrCat(strs[0], ", ", pieces[2]);
97 tensorflow::strings::StrCat(pieces[0], ", ", pieces[1], " ", pieces[2]);
217 StringPiece pieces[] = {"Hello", "Cruel", "World"}; local
229 tensorflow::strings::StrAppend(&result, strs[1], pieces[2]);
233 tensorflow::strings::StrAppend(&result, strs[0], ", ", pieces[2]);
242 tensorflow::strings::StrAppend(&result, pieces[0], ", ", pieces[1], " "
    [all...]
strcat.cc 124 string CatPieces(std::initializer_list<StringPiece> pieces) {
127 for (const StringPiece piece : pieces) total_size += piece.size();
132 for (const StringPiece piece : pieces) {
148 void AppendPieces(string *result, std::initializer_list<StringPiece> pieces) {
151 for (const StringPiece piece : pieces) {
159 for (const StringPiece piece : pieces) {
  /external/autotest/client/site_tests/buffet_BasicDBusAPI/
buffet_BasicDBusAPI.py 68 pieces = line.split('=', 1)
69 if len(pieces) != 2:
71 key = pieces[0].strip()
73 expected_version = pieces[1].strip()
  /external/tensorflow/tensorflow/compiler/xla/
literal_util.cc 130 // We need to iterate through the pieces to set the subshape pointer
148 // We need to iterate through the pieces to set the subshape pointer
1241 std::vector<string> pieces; local
    [all...]
text_literal_reader.cc 108 std::vector<tensorflow::StringPiece> pieces; local
113 SplitByDelimToStringPieces(line, ':', &pieces);
114 tensorflow::StringPiece coordinates_string = pieces[0];
115 tensorflow::StringPiece value_string = pieces[1];
  /external/tensorflow/tensorflow/contrib/py2tf/impl/
naming.py 118 pieces = name_root.split('_')
119 if pieces[-1].isdigit():
120 name_root = '_'.join(pieces[:-1])
121 n = int(pieces[-1])
  /external/tensorflow/tensorflow/core/framework/
attr_value_util.cc 89 std::vector<string> pieces; local
92 pieces.push_back(SummarizeString(attr_value.list().s(i)));
96 pieces.push_back(strings::StrCat(attr_value.list().i(i)));
100 pieces.push_back(strings::StrCat(attr_value.list().f(i)));
104 pieces.push_back(attr_value.list().b(i) ? "true" : "false");
108 pieces.push_back(EnumName_DataType(attr_value.list().type(i)));
112 pieces.push_back(
117 pieces.push_back(SummarizeTensor(attr_value.list().tensor(i)));
121 pieces.push_back(SummarizeFunc(attr_value.list().func(i)));
125 if (pieces.size() >= kMaxListSummarySize)
    [all...]
  /external/tensorflow/tensorflow/examples/speech_commands/
accuracy_utils.cc 37 std::vector<string> pieces = tensorflow::str_util::Split(line, ','); local
38 if (pieces.size() != 2) {
42 if (!tensorflow::strings::safe_strtof(pieces[1].c_str(), &timestamp)) {
46 string label = pieces[0];
  /frameworks/base/tools/aapt2/jni/
aapt2_jni.cpp 68 * The returned pieces can only be used while the original ones have not been
72 std::vector<StringPiece> pieces; local
76 [&pieces](const ScopedUtfChars &p) { pieces.push_back(p.c_str()); });
78 return pieces;
  /device/generic/armv7-a-neon/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /bootable/recovery/otautil/
rangeset.cpp 48 std::vector<std::string> pieces = android::base::Split(range_text, ","); local
49 if (pieces.size() < 3) {
55 if (!android::base::ParseUint(pieces[0], &num, static_cast<size_t>(INT_MAX))) {
67 if (num != pieces.size() - 1) {
76 if (!android::base::ParseUint(pieces[i + 1], &first, static_cast<size_t>(INT_MAX)) ||
77 !android::base::ParseUint(pieces[i + 2], &second, static_cast<size_t>(INT_MAX))) {
  /external/tensorflow/tensorflow/contrib/all_reduce/python/
all_reduce.py 78 def _padded_split(tensor, pieces):
79 """Like split for 1D tensors but pads-out case where len % pieces != 0.
83 pieces: a positive integer specifying the number of pieces into which
87 list of T @{tf.Tensor} of length pieces, which hold the values of
100 if tensor_len % pieces != 0:
102 chunk_size = 1 + tensor_len // pieces
103 if pieces > tensor_len:
107 pad_len = pieces - tensor_len
110 parts = array_ops.split(extended_whole, pieces)
    [all...]
  /frameworks/minikin/include/minikin/
Layout.h 94 const LayoutPieces& pieces);
99 const LayoutPieces& pieces);
104 LayoutPieces* pieces);
  /frameworks/minikin/libs/minikin/
LineBreakerUtil.h 76 LayoutPieces* pieces) { // An output of layout pieces. Maybe null.
95 nullptr /* advances */, pieces);
99 nullptr /* advances */, pieces);
  /device/generic/arm64/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /device/generic/x86_64/
BoardConfig.mk 6 # The generic product target doesn't have any hardware-specific pieces.
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationUtils.java 171 * Split the string into pieces that are likely to be common
177 ArrayList<String> pieces = new ArrayList<String>(20); local
205 pieces.add(raw.substring(at, endAt));
209 int size = pieces.size();
213 list.set(i, new CstString(pieces.get(i)));
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 172 * Split the string into pieces that are likely to be common
178 ArrayList<String> pieces = new ArrayList<String>(20); local
206 pieces.add(raw.substring(at, endAt));
210 int size = pieces.size();
214 list.set(i, new CstString(pieces.get(i)));
  /external/autotest/client/cros/faft/utils/
saft_flashrom_util.py 96 pieces = item.split('=')
97 if len(pieces) != 2:
99 rv[pieces[0]] = pieces[1].strip('"')

Completed in 805 milliseconds

12 3 4 5 6 7 8 91011>>