Searched defs:split (Results 101 - 125 of 189) sorted by relevance

12345678

/external/testng/src/main/java/org/testng/internal/
H A DUtils.java65 * @param s the string to split
66 * @return the split token
69 // TODO CQ would s.split() be a better way of doing this?
96 // Bug in split when passed " " : returns one too many result
97 // result = line.split(" ");
428 public static String[] split(String string, String sep) { method in class:Utils
434 // return string.split(sep);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DFastMath.java192 * 0x40000000 - used to split a double into two parts, both with the low order bits cleared.
259 * @param d the value to split
982 * @param result placeholder where to place exp(x) split in two terms
991 split(x, xs);
999 split(FACT[i], as);
1015 /** Compute split[0], split[1] such that their sum is equal to d,
1016 * and split[0] has its 30 least significant bits as zero.
1017 * @param d number to split
1018 * @param split placeholde
1020 split(final double d, final double split[]) argument
[all...]
/external/clang/lib/AST/
H A DType.cpp213 SplitQualType split = getSplitDesugaredType(T); local
214 return Context.getQualifiedType(split.Ty, split.Quals);
219 SplitQualType split = type.split(); local
220 QualType desugar = split.Ty->getLocallyUnqualifiedSingleStepDesugaredType();
221 return Context.getQualifiedType(desugar, split.Quals);
260 SplitQualType split = type.split(); local
263 Qualifiers quals = split
[all...]
H A DTypePrinter.cpp143 SplitQualType split = t.split(); local
144 print(split.Ty, split.Quals, OS, PlaceHolder);
239 SplitQualType Split = T.split();
300 SplitQualType split = t.split(); local
301 printAfter(split.Ty, split.Quals, OS);
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp506 int split = width/2 + rnd.getInt(-width/4, +width/4); local
507 randomPartition(dst, rnd, x, y, split, height);
508 randomPartition(dst, rnd, x+split, y, width-split, height);
512 int split = height/2 + rnd.getInt(-height/4, +height/4); local
513 randomPartition(dst, rnd, x, y, width, split);
514 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp562 int split = width/2 + rnd.getInt(-width/4, +width/4); local
563 randomPartition(dst, rnd, x, y, split, height);
564 randomPartition(dst, rnd, x+split, y, width-split, height);
568 int split = height/2 + rnd.getInt(-height/4, +height/4); local
569 randomPartition(dst, rnd, x, y, width, split);
570 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp493 int split = width/2 + rnd.getInt(-width/4, +width/4); local
494 randomPartition(dst, rnd, x, y, split, height);
495 randomPartition(dst, rnd, x+split, y, width-split, height);
499 int split = height/2 + rnd.getInt(-height/4, +height/4); local
500 randomPartition(dst, rnd, x, y, width, split);
501 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/libnl/lib/
H A Dutils.c558 * Converts milliseconds to a character string split up in days, hours,
566 uint64_t split[5]; local
576 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit)) msec %= unit
582 split[4] = msec;
584 for (i = 0; i < ARRAY_SIZE(split) && len; i++) {
586 if (split[i] == 0)
589 (buf==buf_orig) ? "" : " ", split[i], units[i]);
/external/libvpx/libvpx/vp8/encoder/
H A Dbitstream.c129 unsigned int split; local
151 split = 1 + (((range - 1) * pp[i >> 1]) >> 8);
155 lowvalue += split;
156 range = range - split;
158 range = split;
202 split = 1 + (((range - 1) * proba[i >> 1]) >> 8);
206 lowvalue += split;
207 range = range - split;
209 range = split;
244 split
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
H A DEmitter.java797 boolean split = !simpleKeyContext && splitLines;
799 writePlain(analysis.scalar, split);
803 writeDoubleQuoted(analysis.scalar, split);
806 writeSingleQuoted(analysis.scalar, split);
809 writeFolded(analysis.scalar, split);
1150 private void writeSingleQuoted(String text, boolean split) throws IOException { argument
1163 if (start + 1 == end && this.column > this.bestWidth && split && start != 0
1213 private void writeDoubleQuoted(String text, boolean split) throws IOException { argument
1262 && (this.column + (end - start)) > this.bestWidth && split) {
1302 void writeFolded(String text, boolean split) throw argument
1412 writePlain(String text, boolean split) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp113 // split unwind edge and then inlining it; but that can do almost
120 // transforms which split edges deal with that.
161 // Otherwise, we have to split at the first non-dominating block.
179 // br label %split // from lastDominated
184 // br label %split
185 // split:
186 // phis_2 (edge from lastDominated, edge from split)
203 BasicBlock *split = local
208 cast<BranchInst>(lastDominated->back()).setSuccessor(0, split);
214 Instruction *splitIP = &split
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DParser.java837 String[] v = split(s);
888 // Recognises quotes around a phrase and doesn't split it.
889 private static String[] split(String val) throws IllegalArgumentException { method in class:Parser
/external/guice/extensions/persist/lib/
H A Doro-2.0.8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/oro/ org/apache/oro/io/ ...
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp737 SplitQualType split = ivarType.split(); local
738 if (split.Quals.hasObjCLifetime()) {
740 split.Quals.setObjCLifetime(Qualifiers::OCL_Strong);
741 ivarType = S.Context.getQualifiedType(split);
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
H A DDeqpTestRunner.java95 // !NOTE: There's a static method copyOptions() for copying options during split.
703 final String parts[] = line.substring(24).split("=",2);
958 final String[] lines = processes.split("(\\r|\\n)+");
960 final String[] fields = line.split("\\s+");
1087 String[] components = test.split("\\.");
1105 String[] components = test.split("\\.");
1366 // split remaining tests to two sub batches and execute both. This will terminate
1745 for (String feature: commandOutput.split("\\s+")) {
1747 String[] tokens = feature.split(":");
2038 // If sharded, split() wil
2156 public Collection<IRemoteTest> split() { method in class:DeqpTestRunner
[all...]
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureMipmapTests.cpp482 const int split = width/2 + rnd.getInt(-width/4, +width/4); local
483 randomPartition(dst, rnd, x, y, split, height);
484 randomPartition(dst, rnd, x+split, y, width-split, height);
488 const int split = height/2 + rnd.getInt(-height/4, +height/4); local
489 randomPartition(dst, rnd, x, y, width, split);
490 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp601 int split = width/2 + rnd.getInt(-width/4, +width/4); local
602 randomPartition(dst, rnd, x, y, split, height);
603 randomPartition(dst, rnd, x+split, y, width-split, height);
607 int split = height/2 + rnd.getInt(-height/4, +height/4); local
608 randomPartition(dst, rnd, x, y, width, split);
609 randomPartition(dst, rnd, x, y+split, width, height-split);
/external/dng_sdk/source/
H A Ddng_bad_pixels.cpp1230 // In case there is some green split, make an estimate of
1236 int32 split = ((g22 + g62 + g26 + g66) * 4 + local
1243 est0 = g13 + g75 + split * 2;
1253 est1 = g33 + g55 + split * 2;
1263 est2 = g31 + g57 + split * 2;
1282 est4 = g37 + g51 + split * 2;
1292 est5 = g35 + g53 + split * 2;
1302 est6 = g15 + g73 + split * 2;
1318 lower = Pin_int32 (0, lower + split, 65535);
1319 upper = Pin_int32 (0, upper + split, 6553
[all...]
/external/dnsmasq/src/
H A Doption.c513 /* find next comma, split string with zero and eliminate spaces.
534 static char *split(char *s) function
687 comma = split(arg);
850 comma = split(cp);
888 comma = split(arg);
934 comma = split(arg);
1044 comma = split(arg);
1050 comma = split(arg);
1187 if ((comma = split(arg)))
1190 if ((prefstr = split(comm
[all...]
/external/fio/
H A Doptions.c57 struct split { struct
63 static int split_parse_ddir(struct thread_options *o, struct split *split, argument
70 split->nr = 0;
96 split->val1[i] = val;
97 split->val2[i] = perc;
103 split->nr = i;
111 struct split split; local
113 memset(&split,
833 struct split split; local
[all...]
/external/freetype/src/smooth/
H A Dftgrays.c993 int draw, split; local
1032 /* to draw starting from 2^level. Before each draw we split as */
1036 split = 1;
1037 while ( ( draw & split ) == 0 )
1041 split <<= 1;
1117 /* Decide whether to split or draw. See `Rapid Termination */
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java1045 for (String range : COMMA_SEPARATED.split(source)) {
1054 String[] rangeParts = TILDE_SEPARATED.split(range);
1167 static String[] split(String source) { method in class:PluralRules.SimpleTokenizer
1223 String[] or_together = OR_SEPARATED.split(description);
1226 String[] and_together = AND_SEPARATED.split(or_together[i]);
1231 String[] tokens = SimpleTokenizer.split(condition);
1421 String[] constraintOrSamples = AT_SEPARATED.split(description);
1475 String[] rules = SEMI_SEPARATED.split(description);
/external/icu/icu4c/source/i18n/
H A Drematch.cpp2026 // split
2029 int32_t RegexMatcher::split(const UnicodeString &input, function in class:RegexMatcher
2050 int32_t fieldCount = split(&inputText, destText, destCapacity, status);
2062 // split, UText mode
2064 int32_t RegexMatcher::split(UText *input, function in class:RegexMatcher
2756 int32_t op; // Operation from the compiled pattern, split into
4320 int32_t op; // Operation from the compiled pattern, split into
H A Duregex.cpp1305 inline static int32_t split(RegularExpression *regexp,
1804 int32_t RegexCImpl::split(RegularExpression *regexp, function in class:RegexCImpl
1959 return RegexCImpl::split(regexp, destBuf, destCapacity, requiredCapacity, destFields, destFieldsCapacity, status);
1972 return regexp->fMatcher->split(regexp->fMatcher->inputText(), destFields, destFieldsCapacity, *status);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRules.java1003 for (String range : COMMA_SEPARATED.split(source)) {
1012 String[] rangeParts = TILDE_SEPARATED.split(range);
1121 static String[] split(String source) { method in class:PluralRules.SimpleTokenizer
1177 String[] or_together = OR_SEPARATED.split(description);
1180 String[] and_together = AND_SEPARATED.split(or_together[i]);
1185 String[] tokens = SimpleTokenizer.split(condition);
1375 String[] constraintOrSamples = AT_SEPARATED.split(description);
1429 String[] rules = SEMI_SEPARATED.split(description);

Completed in 3223 milliseconds

12345678