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

1 2 3 4 5 6 7 891011>>

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 68 public static String[] split(String text, String expression) { method in class:ShadowTextUtils
73 return text.split(expression);
  /external/v8/test/mjsunit/regress/
regress-1711.js 28 // string.split needs to evaluate the separator's toString even if limit
37 'subject'.split(separator, 0);
  /external/v8/test/mjsunit/
with-readonly.js 31 // chain by putting the string split function in the prototype chain.
33 o.__proto__ = String.prototype.split;
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldAndroidRegexTest.java 162 strings = p.split("boo:and:foo");
168 strings = p.split("boo:and:foo", 2);
173 strings = p.split("boo:and:foo", 5);
179 strings = p.split("boo:and:foo", -2);
187 strings = p.split("boo:and:foo");
193 strings = p.split("boo:and:foo", 5);
201 strings = p.split("boo:and:foo", -2);
209 strings = p.split("boo:and:foo", 0);
  /packages/apps/Contacts/src/com/android/contacts/editor/
SplitContactConfirmationDialogFragment.java 29 * Shows a dialog asking the user whether to split the contact. The result is passed back
32 * Does not split the contact itself.
  /build/tools/
product_debug.py 22 # these don't get split
25 return (key, "\n".join(val.split()))
28 words = line.split("=", 1)
35 lines = text.split()
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
59 href = s.split(",", 1)[1].strip()[:-1]
  /external/llvm/lib/Support/
Regex.cpp 114 std::pair<StringRef, StringRef> Split = Repl.split('\\');
117 Res += Split.first;
120 if (Split.second.empty()) {
121 if (Repl.size() != Split.first.size() &&
128 Repl = Split.second;
  /external/oprofile/events/i386/p4-ht/
unit_masks 22 0x01 load split completed, excluding UC/WC loads
23 0x02 any split stores completed
24 0x04 uncacheable load split completed
25 0x08 uncacheable store split complete
27 0x02 split load
29 0x02 split store
  /external/speex/libspeex/
modes.c 93 /* Split-VQ innovation parameters for very low bit-rate narrowband */
102 /* Split-VQ innovation parameters for very low bit-rate narrowband */
111 /* Split-VQ innovation parameters for low bit-rate narrowband */
121 /* Split-VQ innovation parameters narrowband */
130 /* Split-VQ innovation parameters narrowband */
139 /* Split-VQ innovation for low-band wideband */
  /external/llvm/lib/IR/
DataLayout.cpp 179 /// Checked version of split, to ensure mandatory subparts.
180 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { function
182 std::pair<StringRef, StringRef> Split = Str.split(Separator);
183 assert((!Split.second.empty() || Split.first == Str) &&
185 return Split;
206 // Split at '-'.
207 std::pair<StringRef, StringRef> Split = split(Desc, '-')
    [all...]
  /external/clang/utils/
token-delta.py 46 return self.delta(changes, self.split(changes))
48 def split(self, S): member in class:DeltaAlgorithm
49 """split(set) -> [sets]
54 # There are many ways to split, we could do a better job with more
76 refined = sum(map(list, map(self.split, sets)), [])
86 return self.delta(S, self.split(S))
118 for ln in err.split('\n'):
CmpDriver 94 for ln in err.split('\n'):
138 diff = ZipperDiff(infoA.stdout.split('\n'),
139 infoB.stdout.split('\n'))
158 diff = ZipperDiff(infoA.stderr.split('\n'),
159 infoB.stderr.split('\n'))
  /external/oprofile/events/i386/p4/
unit_masks 22 0x01 load split completed, excluding UC/WC loads
23 0x02 any split stores completed
24 0x04 uncacheable load split completed
25 0x08 uncacheable store split complete
27 0x02 split load
29 0x02 split store
69 0x100 request type is 8-byte chunk split across 8-byte boundary
  /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/webrtc/src/common_audio/vad/
vad_filterbank.c 135 // have at most 120 samples after the first split and at most 60 samples after
136 // the second split.
146 // Split at 2000 Hz and downsample
151 // Split at 3000 Hz and downsample
171 // Split at 1000 Hz and downsample
186 // Split at 500 Hz
201 // Split at 250 Hz
  /external/opencv/ml/src/
mlboost.cpp 168 // if the node has not been split,
186 int i, n = node->sample_count, vi = node->split->var_idx;
189 assert( !node->split->inversed );
191 if( data->get_var_type(vi) >= 0 ) // split on categorical var
194 const int* subset = node->split->subset;
209 else // split on ordered var
212 int split_point = node->split->ord.split_point;
239 return node->split->quality/(L + R);
333 CvDTreeSplit* split; local
427 split = data->new_split_cat( vi, (float)best_val )
490 CvDTreeSplit* split; local
647 CvDTreeSplit* split = data->new_split_cat( vi, 0 ); local
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainQuad.java 225 split(patchSize, heightMap);
661 * <code>split</code> divides the heightmap data for four children. The
671 protected void split(int blockSize, float[] heightMap) {
698 int split = (size + 1) >> 1;
707 float[] heightBlock1 = createHeightSubBlock(heightMap, 0, 0, split);
718 split, stepScale, heightBlock1, totalSize, tempOffset,
725 float[] heightBlock2 = createHeightSubBlock(heightMap, 0, split - 1,
726 split);
738 split, stepScale, heightBlock2, totalSize, tempOffset,
745 float[] heightBlock3 = createHeightSubBlock(heightMap, split - 1, 0,
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 96 /// split the critical edge. This will update DominatorTree and
99 /// was split, null otherwise.
124 /// false. Otherwise, split all edges between the two blocks and return true.
137 /// SplitCriticalEdge - If an edge from Src to Dst is critical, split the edge
156 /// SplitEdge - Split the edge connecting specified block. Pass P must
160 /// SplitBlock - Split the specified block at the specified instruction - every
176 /// complicated to handle the case where one of the edges being split
192 /// case where one of the edges being split is an exit of a loop with other
207 /// SplitBlockAndInsertIfThen - Split the containing block at the
  /dalvik/vm/
Android.mk 58 # TODO: split out the asflags.
68 # TODO: split out the asflags.
80 # TODO: split out the asflags.
92 # TODO: split out the asflags.
138 # TODO: split out the asflags.
  /external/chromium/chrome/browser/resources/net_internals/
resizableverticalsplitview.js 6 * This view implements a vertically split display with a draggable divider.
36 // vertical split.
54 // If this is the first setGeometry(), initialize the split point at 50%.
58 // Calculate the horizontal split points.
69 // Position the boxes using calculated split points.
  /external/clang/lib/Rewrite/Core/
DeltaTree.cpp 57 SourceDelta Split;
104 /// split the node, populate InsertRes with info about the split, and return
136 Values[0] = IR.Split;
137 FullDelta = IR.LHS->getFullDelta()+IR.RHS->getFullDelta()+IR.Split.Delta;
177 /// split the node, populate InsertRes with info about the split, and return
213 // Otherwise, if this is leaf is full, split the node at its median, insert
218 if (InsertRes->Split.FileLoc > FileIndex)
230 // Okay, this split the subtree, producing a new value and two children t
    [all...]
  /external/icu4c/layout/
KhmerReordering.h 27 // split vowels, signs... but there is only one base in a syllable, it has to be coded as
29 // split vowel --> vowel that has two parts placed separately (e.g. Before and after the consonant).
30 // Khmer language has five of them. Khmer split vowels either have one part before the
32 // The first part of all Khmer split vowels is the same character, identical to
87 CF_SPLIT_VOWEL = 0x02000000, // flag for a split vowel -> the first part is added in front of the syllable
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 238 String[] verticies = line.split("\\s");
244 String[] split = vertex.split("/"); local
245 if (split.length == 1){
246 v = Integer.parseInt(split[0].trim());
247 }else if (split.length == 2){
248 v = Integer.parseInt(split[0].trim());
249 vt = Integer.parseInt(split[1].trim());
250 }else if (split.length == 3 && !split[1].equals(""))
300 String[] split = line.split("\\\\s"); local
    [all...]
  /external/valgrind/main/cachegrind/
cg-s390x.c 52 // Split L1 I/D cache
62 // Split L1 I/D cache
74 // Split L1 I/D cache
84 // Split L1 I/D cache
94 // Split L1 I/D cache
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
quicksort.h 84 difference_type split = local
89 return split;
130 difference_type split = local
138 parallel_sort_qs_conquer(begin, begin + split,
141 parallel_sort_qs_conquer(begin + split, end,

Completed in 731 milliseconds

1 2 3 4 5 6 7 891011>>