/external/icu4c/test/perf/collationperf/ |
CollPerf.pl | 80 my @icua = split( ' = ', $icu[2] ); 81 my @icub = split( ' ', $icua[1] ); 82 my @nixa = split( ' = ', $nix[2] ); 83 my @nixb = split( ' ', $nixa[1] ); 92 @icua = split( ' = ', $icu[2] ); 93 @icub = split( ' ', $icua[1] ); 94 @nixa = split( ' = ', $nix[2] ); 95 @nixb = split( ' ', $nixa[1] ); 101 @icua = split( ' = ', $icu[3] ); 102 @nixa = split( ' = ', $nix[3] ) [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...] |
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
PatternTest.java | 82 assertEquals(",,".split(",", 3).length, 3); 83 assertEquals(",,".split(",", 4).length, 3); 86 assertEquals(Pattern.compile("o").split("boo:and:foo", 5).length, 5); 87 assertEquals(Pattern.compile("b").split("ab", -1).length, 2); 91 s = pat.split("zxx:zzz:zxx", 10); 93 s = pat.split("zxx:zzz:zxx", 3); 95 s = pat.split("zxx:zzz:zxx", -1); 97 s = pat.split("zxx:zzz:zxx", 0); 102 s = pat.split("abccbadfebb", -1); 104 s = pat.split("", -1) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringTest.java | 222 patterns[i], Arrays.equals(results[i], str.split(patterns[i]))); 226 str.split("[a}"); 241 Arrays.equals(results[0], str.split(pattern, 4))); 243 Arrays.equals(results[1], str.split(pattern, 9))); 245 Arrays.equals(results[1], str.split(pattern, 0))); 247 Arrays.equals(results[1], str.split(pattern, -1))); 249 Arrays.equals(results[1], str.split(pattern, 10))); 251 Arrays.equals(results[1], str.split(pattern, Integer.MAX_VALUE))); 254 str.split("[a}", 0);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
util.rb | 18 version_string.split( '.' ).map! do | segment | 52 file, line, = caller[ 1 ].split( ':', 3 ) 68 file, line, = caller[ 1 ].split( ':', 3 )
|
/external/dropbear/libtommath/ |
booker.pl | 43 @m = split(",",$_); 70 @m = split(",",$_); 125 @m = split("@",$txt); # splits into text, one, two 126 @parms = split(",",$m[1]); # splits one,two into two elements 186 @m = split("~", $txt); 253 @m = split(",", $_);
|
/external/llvm/utils/release/ |
findRegressions-nightly.py | 27 tmp = t[2].split(testDirName) 47 n = t[0].split('RESULT-')[1] 53 test[fname][tp + n] = float(t[2].split(' ')[2])
|
/external/markdown/markdown/extensions/ |
rss.py | 24 heading = heading.split("-")[0] 27 month, date, year = heading.split() 36 time = time.split()
|
tables.py | 25 rows = block.split('\n') 32 block = blocks.pop(0).split('\n') 77 """ split a row of text into list of cells. """ 83 return row.split('|')
|
/external/v8/test/mjsunit/regress/ |
regress-798.js | 35 assertEquals(3, e.stack.split('\n').length); 44 assertEquals(3, e.stack.split('\n').length); 53 assertEquals(3, e.stack.split('\n').length); 62 assertEquals(3, e.stack.split('\n').length); 75 assertEquals(3, e.stack.split('\n').length); 83 assertEquals(3, e.stack.split('\n').length);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.8-3.js | 24 ECMA Section: 15.5.4.8 String.prototype.split( separator ) 33 As a special case, if the separator is the empty string, the string is split 40 When the split method is called with one argument separator, the following steps are taken: 72 Note that the split function is intentionally generic; it does not require that its this value be a String 82 var TITLE = "String.prototype.split"; 99 "var s = new String(); s.split().length", 101 eval("var s = new String(); s.split().length") ); 104 "var s = new String(); s.split()[0]", 106 eval("var s = new String(); s.split()[0]") ); 111 "var s = new String(); s.split('').length" [all...] |
/external/webkit/Source/WebCore/plugins/qt/ |
PluginPackageQt.cpp | 75 mimeDescription.lower().split(UChar(';'), false, types); 78 types[i].split(UChar(':'), true, mime); 82 mime[1].split(UChar(','), false, exts);
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
logutils.py | 103 _webkitpy_dir = os.path.split(webkitpy_path)[0] 104 _scripts_dir = os.path.split(_webkitpy_dir)[0] 113 (path, tail) = os.path.split(path)
|
/frameworks/volley/src/com/android/volley/toolbox/ |
HttpHeaderParser.java | 61 String[] tokens = headerValue.split(","); 124 String[] params = contentType.split(";"); 126 String[] pair = params[i].trim().split("=");
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
LocaleUtils.java | 112 final String[] referenceParams = referenceLocale.split("_", 3); 113 final String[] testedParams = testedLocale.split("_", 3); 114 // By spec of String#split, [0] cannot be null and length cannot be 0. 190 String[] localeParams = localeStr.split("_", 3);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_fmal.c | 131 static const long double split = 0x1p32L + 1.0; local 133 static const long double split = 0x1p57L + 1.0; 138 p = a * split; 143 p = b * split;
|
/cts/tests/tests/os/src/android/os/cts/ |
NoExecutePermissionTest.java | 44 String[] fields = line.split("\\s+");
|
/cts/tools/signature-tools/src/signature/model/impl/ |
SigPackage.java | 43 return Arrays.asList(name.split("\\."));
|
/development/apps/CustomLocale/src/com/android/customlocale2/ |
ChangeLocale.java | 53 String[] langCountry = locale.split("_");
|
/device/samsung/manta/ |
releasetools.py | 67 force_ro = "/sys/block/" + bl_device.split("/")[-1] + "/force_ro"
|
/external/chromium/testing/gmock/scripts/ |
upload_gmock.py | 63 cc_list = [addr for addr in cc_line.split(',') if addr]
|
/external/chromium/testing/gtest/scripts/ |
upload_gtest.py | 63 cc_list = [addr for addr in cc_line.split(',') if addr]
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
close_wsh.py | 45 code, reason = line.split(' ', 1)
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
run_all.py | 70 _list_test_modules(os.path.join(os.path.split(__file__)[0], '.')))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
runant.pl | 77 #ISSUE: what java wants to split up classpath varies from platform to platform 90 my @ANT_OPTS=split(" ", $ENV{ANT_OPTS}); 91 my @ANT_ARGS=split(" ", $ENV{ANT_ARGS});
|