| /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/ |
| PatternTest.java | 55 * Class under test for String[] split(CharSequence, int) 60 assertEquals(",,".split(",", 3).length, 3); 61 assertEquals(",,".split(",", 4).length, 3); 64 assertEquals(Pattern.compile("o").split("boo:and:foo", 5).length, 5); 65 assertEquals(Pattern.compile("b").split("ab", -1).length, 2); 69 s = pat.split("zxx:zzz:zxx", 10); 71 s = pat.split("zxx:zzz:zxx", 3); 73 s = pat.split("zxx:zzz:zxx", -1); 75 s = pat.split("zxx:zzz:zxx", 0); 80 s = pat.split("abccbadfebb", -1) [all...] |
| /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
| printing.py | 136 switches = set(print_options.split(',')) 138 switches = set(PRINT_EVERYTHING.split(',')) 140 switches = set(PRINT_DEFAULT.split(',')) 156 switches.update(set(PRINT_EVERYTHING.split(','))) 160 switches.update(set(PRINT_DEFAULT.split(','))) 458 actual = results['actual'].split(" ") 459 expected = results['expected'].split(" ") 501 actual = result['actual'].split(" ") 502 expected = result['expected'].split(" ")
|
| /frameworks/base/wifi/java/android/net/wifi/ |
| WifiNative.java | 192 String[] tokens = ret.split(" = "); 292 String[] tokens = ret.split(" "); 669 String[] tokens = status.split("\n"); 672 String[] nameValue = token.split("="); 686 String[] tokens = peerInfo.split("\n"); 689 String[] nameValue = token.split("="); 710 String[] tokens= peerInfo.split("\n"); 715 String[] nameValue = token.split("="); 762 String[] data = s.split(" ");
|
| /external/chromium/chrome/browser/tab_contents/ |
| web_drag_dest_gtk.cc | 196 size_t split = netscape_url.find_first_of('\n'); local 197 if (split != std::string::npos) { 198 drop_data_->url = GURL(netscape_url.substr(0, split)); 199 if (split < netscape_url.size() - 1) 200 drop_data_->url_title = UTF8ToUTF16(netscape_url.substr(split + 1));
|
| /external/clang/utils/ |
| 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/mdnsresponder/mDNSPosix/ |
| parselog.py | 88 time = line.split(' ')[0].split(':') 96 ip = line.split(' ',1) 110 qaList = spaceExp.split(line) 175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1]))
|
| /external/quake/quake/src/QW/client/ |
| cl_pred.c | 66 // split up very long moves 70 usercmd_t split; local 72 split = *u; 73 split.msec /= 2; 75 CL_PredictUsercmd (from, &temp, &split, spectator); 76 CL_PredictUsercmd (&temp, to, &split, spectator);
|
| /bionic/libm/upstream-freebsd/lib/msun/src/ |
| s_fma.c | 138 static const double split = 0x1p27 + 1.0; local 142 p = a * split; 147 p = b * split;
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
| FetchBaseTask.java | 71 String[] keyParts=key.split("@"); 74 String [] cvsinfo=entry.split(","); 78 String[] typeParts=keyParts[0].split("base.");
|
| /external/harfbuzz_ng/src/ |
| gen-arabic-table.py | 36 fields = [x.strip () for x in line.split (';')] 86 fields = [x.strip () for x in line.split (';')] 90 items = fields[5].split (' ')
|
| /external/icu4c/tools/ |
| icu-svnprops-check.py | 107 file_type, string_proplist = propline.split("=", 1) 117 # split on ';' into a list of properties. The negative lookahead and lookbehind 118 # in the split regexp are to prevent matching on ';;', which is an escaped ';' 120 string_proplist = re.split("(?<!;);(?!;)", string_proplist) 124 prop_name, prop_val = prop.split("=", 1)
|
| /external/llvm/lib/Support/ |
| Triple.cpp | 345 Str.split(Components, "-"); 477 return StringRef(Data).split('-').first; // Isolate first component 481 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 482 return Tmp.split('-').first; // Isolate second component 486 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 487 Tmp = Tmp.split('-').second; // Strip second component 488 return Tmp.split('-').first; // Isolate third component 492 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 493 Tmp = Tmp.split('-').second; // Strip second component 494 return Tmp.split('-').second; // Strip third componen [all...] |
| /external/llvm/utils/lit/lit/ |
| Util.py | 69 pathext = os.environ.get('PATHEXT', '').split(';') 74 for path in paths.split(os.pathsep): 89 for path in paths.split(os.pathsep):
|
| /external/qemu/android/tools/ |
| gen-hw-config.py | 26 return '\\"'.join('"'+p+'"' for p in str.split('"')) 79 self.enum_values = [ s.strip() for s in val.split(',') ] 103 key, value = line.split('=')
|
| /external/v8/test/cctest/ |
| testcfg.py | 100 for test_desc in output.stdout.strip().split(): 101 raw_test, dependency = test_desc.split('<') 102 relative_path = raw_test.split('/')
|
| /external/v8/test/mozilla/ |
| testcfg.py | 42 """.split() 54 """.split() 106 root_path = root[len(self.root):].split(os.path.sep)
|
| /external/v8/tools/ |
| jsmin.py | 114 var_names = re.split(r",", var_names) 120 args = re.split(r",", args) 204 for line in re.split(r"\n", text):
|
| /external/webkit/Source/WebCore/plugins/symbian/ |
| PluginPackageSymbian.cpp | 48 s.split(UChar('|'), false, types); // <MIME1>;<ext1,ext2,ext3,...>;<Description>|<MIME2>|<MIME3>|... 52 types[i].split(UChar(';'), true, mime); // <MIME1>;<ext1,ext2,ext3,...>;<Description> 56 mime[1].split(UChar(','), false, exts); // <ext1,ext2,ext3,...>
|
| /external/webkit/Tools/CodeCoverage/ |
| cov.py | 93 code = line.split(":", 2)[-1] 106 f_source_list.append([init_state, line.split(":", 1)[1]]) 164 info = line.split(":", 1)[0]
|
| /external/webkit/Tools/Scripts/webkitpy/common/system/ |
| user.py | 87 indices = [int(r) - 1 for r in re.split("\s*,\s*", response)] 100 args = shlex.split(editor) 112 args = shlex.split(edit_application)
|
| /external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
| deduplicate_tests.py | 81 for line in git_output.split('\n'): 84 attrs, path = line.strip().split('\t') 90 _, _, hash = attrs.split(' ')
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
| MediaTestUtil.java | 78 String[] poList2 = memoryUsage.split("\t|\\s+"); 103 String[] poList = memoryUsage.split("\r|\n|\r\n"); 112 String[] poList2 = memoryUsage.split("\t|\\s+");
|
| /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
| FileFilter.java | 101 entry = line.split("//", 2)[0].trim(); 108 /** Split on whitespace into path part and the rest */ 109 parts = entry.split("\\s", 2); 120 /** Split on whitespace */ 122 parts[1].split("\\s", 0)));
|
| /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(";");
|
| /packages/experimental/procstatlog/ |
| procstatreport.py | 178 last = last_state.get("/proc/stat:cpu", "").split() 179 next = state.get("/proc/stat:cpu", "").split() 306 last = last_state.get(key, zero_stat).split() 307 next = state.get(key, "").split() 397 last = last_state.get(key, "").split() 398 next = state.get(key, "").split() 405 net, interface = key.split(":", 1) 457 yaffs, partition, var = key.split(":", 2) 503 last = last_state.get(key, "").split() 504 next = state.get(key, "").split() [all...] |