Searched defs:split (Results 76 - 100 of 244) sorted by relevance

12345678910

/external/icu/icu4c/source/i18n/
H A Drepattrn.cpp639 // split
642 int32_t RegexPattern::split(const UnicodeString &input, function in class:RegexPattern
655 r = m.split(input, dest, destCapacity, status);
661 // split, UText mode
663 int32_t RegexPattern::split(UText *input, function in class:RegexPattern
676 r = m.split(input, dest, destCapacity, status);
/external/icu/icu4c/source/test/intltest/
H A Dcpdtrtst.cpp250 UnicodeString *array=split(ID, 0x003b, count);
264 array=split(ID2, 0x003b, count);
323 UnicodeString* CompoundTransliteratorTest::split(const UnicodeString& str, UChar seperator, int32_t& count) { function in class:CompoundTransliteratorTest
H A Dfldset.cpp70 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
82 int32_t split = 0; local
86 src.extractBetween(start, end, result[split++]);
90 src.extractBetween(start, src.length(), result[split]);
105 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
109 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
/external/libchrome/base/trace_event/
H A Dtrace_config_category_filter.cc48 std::vector<StringPiece> split = SplitStringPiece( local
50 for (const StringPiece& category : split) {
/external/libmojo/third_party/markupsafe/
H A D__init__.py111 def split(self, *args, **kwargs): member in class:Markup
112 return list(map(self.__class__, text_type.split(self, *args, **kwargs)))
113 split.__doc__ = text_type.split.__doc__
153 stripped = u' '.join(_striptags_re.sub('', self).split())
/external/libvpx/libvpx/vp8/decoder/
H A Ddetokenize.c56 int split = (br->range + 1) >> 1; local
57 VP8_BD_VALUE bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
63 br->range = split;
66 br->range = br->range - split;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c34 const unsigned int split = (*range * prob + (256 - prob)) >> CHAR_BIT; local
35 const BD_VALUE bigsplit = (BD_VALUE)split << (BD_VALUE_SIZE - CHAR_BIT);
46 *range = *range - split;
56 *range = split;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_context_tree.h88 struct PC_TREE *split[4]; member in union:PC_TREE::__anon12851
/external/llvm/lib/IR/
H A DDataLayout.cpp196 /// Checked version of split, to ensure mandatory subparts.
197 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { function
199 std::pair<StringRef, StringRef> Split = Str.split(Separator);
227 std::pair<StringRef, StringRef> Split = split(Desc, '-');
231 Split = split(Split.first, ':');
261 Split = split(Rest, ':');
270 Split = split(Rest, ':');
279 Split = split(Rest, ':');
314 Split = split(Rest, ':');
323 Split = split(Res
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dopt_array_splitting.cpp28 * split it apart into its elements, making it more amenable to other
53 this->split = true;
66 /** Whether this array should be split or not. */
67 bool split; member in class:__anon15884::opt_array_splitting::variable_entry
87 * variables that could be split by looking to see if they are arrays
137 /* If the array hasn't been sized yet, we can't split it. After
187 /* Allow whole-array assignments on the LHS. We can split those
195 * (see the visit_continue_with_parent below), so we can't split
199 entry->split = false;
214 * know which split variabl
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog.c245 struct rc_swizzle_split * split)
257 split->NumPhases = 0;
263 split->Phase[split->NumPhases++] = negatebase[i];
244 r500_swizzle_split(struct rc_src_register src, unsigned int usemask, struct rc_swizzle_split * split) argument
/external/python/cpython2/Lib/plat-riscos/
H A Driscospath.py57 split filing system name (including special field) and drive specifier from rest
123 def split(p): function
140 (tail, head)= split(p)
161 return split(p)[1]
168 return split(p)[0]
294 fsname= string.split(fsname, '#', 1)[0] # remove special field from fs
335 (path, el)= split(path)
/external/python/cpython2/Lib/
H A Dposixpath.py21 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
82 def split(p): function
110 # Return the tail (basename) part of a path, same as split(path)[1].
118 # Return the head (dirname) part of a path, same as split(path)[0].
341 comps = path.split('/')
393 path, name = split(path)
430 start_list = [x for x in abspath(start).split(sep) if x]
431 path_list = [x for x in abspath(path).split(sep) if x]
H A Dstringold.py104 def split(s, sep=None, maxsplit=0): function
105 """split(str [,sep [,maxsplit]]) -> list of strings
112 (split and splitfields are synonymous)
115 return s.split(sep, maxsplit)
116 splitfields = split
372 Split the argument into words using split, capitalize each
378 return join(map(capitalize, s.split(sep)), sep or ' ')
/external/python/cpython3/Lib/
H A Dre.py93 split Split a string by the occurrences of a pattern.
133 "match", "fullmatch", "search", "sub", "subn", "split",
204 def split(pattern, string, maxsplit=0, flags=0): function
212 return _compile(pattern, flags).split(string, maxsplit)
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp287 Splitsville* split = &splits[index]; local
288 split->fT[0] = index ? splitT[index - 1] : 0;
289 split->fT[1] = index < breaks ? splitT[index] : 1;
290 SkDCubic part = SkDCubic::SubDivide(pointsPtr, split->fT[0], split->fT[1]);
291 if (!part.toFloatPoints(split->fPts)) {
294 split->fVerb = SkReduceOrder::Cubic(split->fPts, split->fReduced);
296 ? split
300 Splitsville* split = &splits[index]; local
[all...]
/external/skqp/src/pathops/
H A DSkOpEdgeBuilder.cpp287 Splitsville* split = &splits[index]; local
288 split->fT[0] = index ? splitT[index - 1] : 0;
289 split->fT[1] = index < breaks ? splitT[index] : 1;
290 SkDCubic part = SkDCubic::SubDivide(pointsPtr, split->fT[0], split->fT[1]);
291 if (!part.toFloatPoints(split->fPts)) {
294 split->fVerb = SkReduceOrder::Cubic(split->fPts, split->fReduced);
296 ? split
300 Splitsville* split = &splits[index]; local
[all...]
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
H A Dcandidate_graph_runner.cc46 const string& graph_dir, const decision_trees::BinaryNode& split)
47 : split_(split) {
59 const auto& oblique = split.inequality_left_child_test().oblique();
45 CandidateGraphRunner( const string& graph_dir, const decision_trees::BinaryNode& split) argument
/external/tensorflow/tensorflow/core/kernels/
H A Dconcat_lib_gpu_impl.cu.cc45 IntType split = gidx / split_size; local
46 const T* input_ptr = input_ptrs[split];
/external/tensorflow/tensorflow/python/ops/
H A Dtensor_array_ops.py85 (write operations include `write`, `unstack`, and `split`). If `False`,
359 def split(self, value, lengths, name=None): member in class:_GraphTensorArray
669 def split(self, value, lengths, name=None): member in class:_EagerTensorArray
697 tensor_array = array_ops.split(value, lengths, name=name)
768 (write operations include `write`, `unstack`, and `split`). If `False`,
966 def split(self, value, lengths, name=None): member in class:TensorArray
970 value: (N+1)-D. Tensor of type `dtype`. The Tensor to split.
976 A new TensorArray object with flow that ensures the split occurs.
982 return self._implementation.split(value, lengths, name=name)
/external/webp/src/utils/
H A Dbit_writer_utils.c109 const int split = (bw->range_ * prob) >> 8; local
111 bw->value_ += split + 1;
112 bw->range_ -= split + 1;
114 bw->range_ = split;
127 const int split = bw->range_ >> 1; local
129 bw->value_ += split + 1;
130 bw->range_ -= split + 1;
132 bw->range_ = split;
/external/webrtc/webrtc/modules/video_coding/utility/
H A Dvp8_header_parser.cc80 const uint8_t split = (range * prob) >> 8; local
83 if (value > split) {
84 range -= split + 1;
85 br->value_ -= static_cast<uint32_t>(split + 1) << pos;
88 range = split;
/external/autotest/client/site_tests/platform_ToolchainTests/src/
H A Dclang-fortify-tests.cpp158 } split = {}; local
160 EXPECT_NO_DEATH(memcpy(split.tiny_buffer, &split, sizeof(split)));
161 EXPECT_NO_DEATH(memcpy(split.tiny_buffer, &split, sizeof(split)));
162 EXPECT_NO_DEATH(memmove(split.tiny_buffer, &split, sizeof(split)));
302 } split = {}; local
396 } split; local
633 } split; local
644 } split; local
[all...]
/external/bzip2/
H A Dbzip2recover.c467 Char* split; local
472 split = strrchr (outFileName, BZ_SPLIT_SYM);
473 if (split == NULL) {
474 split = outFileName;
476 ++split;
478 /* Now split points to the start of the basename. */
479 ofs = split - outFileName;
480 sprintf (split, "rec%5d", wrBlock+1);
481 for (p = split; *p != 0; p++) if (*p == ' ') *p = '0';
/external/clang/include/clang/AST/
H A DCanonicalType.h89 SplitQualType split() const { return Stored.split(); } function in class:clang::CanQual

Completed in 1928 milliseconds

12345678910