HomeSort by relevance Sort by last modified time
    Searched defs:split (Results 201 - 225 of 458) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/courgette/third_party/
bsdiff_create.cc 53 split(PagedArray<int>& I,PagedArray<int>& V,int start,int len,int h) function in namespace:courgette
106 if(jj>start) split(I,V,start,jj-start,h);
111 if(start+len>kk) split(I,V,kk,start+len-kk,h);
142 split(I,V,i,len,h);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 266 def split(self, path): member in class:FileSystem
268 return os.path.split(path)
  /external/chromium_org/third_party/icu/source/common/
rbbisetb.cpp 180 // the start of the range from the unicode set, split the range list range
183 // Then continue the loop; the post-split current range will then be skipped
186 rlRange->split(inputSetRangeBegin, *fStatus);
195 // the end of the range from the unicode set, split the range list
196 // range in two. The first part of the split range will be
199 rlRange->split(inputSetRangeEnd+1, *fStatus);
630 // RangeDesriptor::split()
633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) { function in class:RangeDescriptor
645 // Only need to update those that are different after the split.
  /external/chromium_org/third_party/icu/source/i18n/
repattrn.cpp 600 // split
603 int32_t RegexPattern::split(const UnicodeString &input, function in class:RegexPattern
616 r = m.split(input, dest, destCapacity, status);
622 // split, UText mode
624 int32_t RegexPattern::split(UText *input, function in class:RegexPattern
637 r = m.split(input, dest, destCapacity, status);
  /external/chromium_org/third_party/icu/source/test/intltest/
cpdtrtst.cpp 248 UnicodeString *array=split(ID, 0x003b, count);
262 array=split(ID2, 0x003b, count);
321 UnicodeString* CompoundTransliteratorTest::split(const UnicodeString& str, UChar seperator, int32_t& count) { function in class:CompoundTransliteratorTest
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
80 int32_t split = 0; local
84 src.extractBetween(start, end, result[split++]);
88 src.extractBetween(start, src.length(), result[split]);
103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
  /external/chromium_org/third_party/markupsafe/
__init__.py 111 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/icu4c/common/
rbbisetb.cpp 180 // the start of the range from the unicode set, split the range list range
183 // Then continue the loop; the post-split current range will then be skipped
186 rlRange->split(inputSetRangeBegin, *fStatus);
195 // the end of the range from the unicode set, split the range list
196 // range in two. The first part of the split range will be
199 rlRange->split(inputSetRangeEnd+1, *fStatus);
630 // RangeDesriptor::split()
633 void RangeDescriptor::split(UChar32 where, UErrorCode &status) { function in class:RangeDescriptor
645 // Only need to update those that are different after the split.
  /external/icu4c/i18n/
repattrn.cpp 575 // split
578 int32_t RegexPattern::split(const UnicodeString &input, function in class:RegexPattern
591 r = m.split(input, dest, destCapacity, status);
597 // split, UText mode
599 int32_t RegexPattern::split(UText *input, function in class:RegexPattern
612 r = m.split(input, dest, destCapacity, status);
  /external/icu4c/test/intltest/
cpdtrtst.cpp 248 UnicodeString *array=split(ID, 0x003b, count);
262 array=split(ID2, 0x003b, count);
321 UnicodeString* CompoundTransliteratorTest::split(const UnicodeString& str, UChar seperator, int32_t& count) { function in class:CompoundTransliteratorTest
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
80 int32_t split = 0; local
84 src.extractBetween(start, end, result[split++]);
88 src.extractBetween(start, src.length(), result[split]);
103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java 174 String[] split = path.trim().split("\\p{javaWhitespace}+"); local
177 path = split[split.length-1];
  /external/opencv/cv/src/
_cvkdtree.hpp 69 int dim; // split dimension; >=0 for nodes, -1 for leaves
166 __instype *split = median; local
167 for (; split != last && deref(ctor(*split), dim) ==
168 deref(ctor(*median), dim); ++split);
170 if (split == last) { // leaf
172 for (--split; split >= first; --split) {
176 n.value = ctor(*split);
    [all...]
  /external/qemu/android/
boot-properties.c 170 /* split in key and value, so we can re-use boot_property_add (and its
174 char *split = strchr(p->property, '='); local
175 if (split == NULL) {
182 *split = '\0'; /* p->property is now "<key>\0<value>\0" */
184 uint32_t key_buf_len = (split - p->property) + 1; // +1: '\0' terminator
190 qemu_put_buffer(f, (uint8_t*) split + 1, value_buf_len);
192 *split = '='; /* restore property to "<key>=<value>\0" */
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 99 * @param address The address to split at
102 public TryRange split(int address) { method in class:TryListBuilder.TryRange
233 of an existing try range. We need to split the existing range
235 startRange = tryRange.split(startAddress);
284 existing range. We need to split the existing range
286 tryRange.split(endAddress);
  /frameworks/base/libs/hwui/
GradientCache.cpp 251 ChannelSplitter split = gSplitters[mUseFloatTexture]; local
260 (this->*split)(colors[0], start);
263 (this->*split)(colors[1], end);
278 (this->*split)(colors[currentPos], end);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 206 * Split this encoded string around matches of the given pattern.
212 public EncodedStringValue[] split(String pattern) { method in class:EncodedStringValue
213 String[] temp = getString().split(pattern);
231 String[] values = src.split(";");
  /frameworks/wilhelm/tools/permute/
permute.c 53 /** Global state during the split phase */
75 /** Split the specified range of frames, using the allowed budget of segments.
79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget) function
107 used = split(s, leftStart, leftLength, segmentBudget / 2);
108 used += split(s, rightStart, rightLength, segmentBudget - used);
110 used = split(s, rightStart, rightLength, segmentBudget / 2);
111 used += split(s, leftStart, leftLength, segmentBudget - used);
224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
  /libcore/luni/src/main/java/java/lang/
System.java 352 int split = assignment.indexOf('='); local
353 String key = assignment.substring(0, split);
354 String value = assignment.substring(split + 1);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 86 String[] segments = split();
102 String[] segments = split(s);
111 public String[] split() { method in class:Path
126 public static String[] split(String s) { method in class:Path
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 25 * utility class are {@link #split(String)}, {@link #split(int,String)}, {@link #join(String...)},
40 * A flag for {@link #split(int,String)}. If this flag is specified, the method will trim
199 * Split the CSV text into fields. The leading and trailing spaces of the each field can be
202 * @param splitFlags flags for split behavior. {@link #SPLIT_FLAGS_TRIM_SPACES} will trim
209 public static String[] split(final int splitFlags, final String line) throws CsvParseException { method in class:CsvUtils
226 public static String[] split(final String line) throws CsvParseException { method in class:CsvUtils
227 return split(SPLIT_FLAGS_NONE, line);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredName.java 133 mSplitter.split(name, unstruct);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameSplitterTest.java 316 mNameSplitter.split(name, fullName);
345 mNameSplitter.split(name, fullName);
354 mNameSplitter.split(name, fullName);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
random_shuffle.h 352 split = n % num_threads, start = 0; local
358 start += (i < split) ? (chunk_length + 1) : chunk_length;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
84 # Split a path in head (everything up to the last '/') and tail (the
89 def split(p): function
90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
99 # Split a path in root and extension.
108 # Split a pathname into a drive specification and the rest of the
112 """Split a pathname into drive and path. On Posix, drive is always
117 # Return the tail (basename) part of a path, same as split(path)[1].
125 # Return the head (dirname) part of a path, same as split(path)[0].
333 comps = path.split('/')
    [all...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 891011>>