/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
mac_platform_backend.py | 35 key, value = stat.split(':') 44 rss, vsz = rss_vsz[0].split()
|
/external/chromium_org/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);
|
regress-2172.js | 29 (i + "\0").split(/(.)\1/i); 33 (i + "\u1234\0").split(/(.)\1/i);
|
/external/chromium_org/v8/test/mjsunit/ |
with-readonly.js | 33 // chain by putting the string split function in the prototype chain. 35 o.__proto__ = String.prototype.split;
|
/external/chromium_org/v8/test/webkit/fast/js/ |
string-split-ignore-case-expected.txt | 24 This test checks for a regression against split() function ignores case insensitive modifier. 29 PASS "1s2S3".split(/s/i).toString() is "1,2,3"
|
string-split-ignore-case.js | 25 'This test checks for a regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=6119">split() function ignores case insensitive modifier</a>.' 28 shouldBe('"1s2S3".split(/s/i).toString()', '"1,2,3"');
|
/external/harfbuzz/contrib/tables/ |
mirroring-parse.py | 18 (data, _) = line.split('#', 1) 23 (a, b) = data.split(';', 1)
|
/external/llvm/lib/TableGen/ |
StringMatcher.cpp | 57 std::pair<StringRef, StringRef> Split = Code.split('\n'); 58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n"; 60 Code = Split.second; 62 Split = Code.split('\n'); 63 OS << Indent << Split.first << "\n"; 64 Code = Split.second;
|
/external/openssh/ |
fixprogs | 43 @args = split(/ /, $cmd); 65 ($null, $null, $rate) = split(/,/, $ent[0]);
|
/external/oprofile/libpp/ |
filename_spec.h | 3 * Container holding a sample filename split into its components 23 * A class to split and store components of a sample filename.
|
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
templite.py | 42 # Split the text to form a list of tokens. 43 toks = re.split(r"(?s)({{.*?}}|{%.*?%}|{#.*?#})", text) 62 # Action tag: split into words and parse further. 63 words = tok[2:-2].strip().split() 150 pipes = expr.split("|") 155 dots = expr.split('.')
|
/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 */
|
/hardware/qcom/display/msm8974/libqdutils/ |
mdp_version.cpp | 117 char split[64]; local 121 if(fread(split, sizeof(char), 64, fp)) { 122 mSplit.mLeft = atoi(split); 123 ALOGI_IF(mSplit.mLeft, "Left Split=%d", mSplit.mLeft); 124 char *rght = strpbrk(split, " "); 127 ALOGI_IF(rght, "Right Split=%d", mSplit.mRight);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 47 lines = data.split("\n") 53 # re-split and re-insert the comment header. 54 newdata = newdata.split("\n") 82 lineno, col = map(int, mark.split(".")) 107 lines = data.split("\n") 123 words = re.split("(\s+)", lines[i])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os2emxpath.py | 12 splitext, split, walk) 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 59 """Split a pathname into UNC mount point and relative path specifiers. 90 return split(p)[1] 97 return split(p)[0] 127 comps = path.split('/')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 47 lines = data.split("\n") 53 # re-split and re-insert the comment header. 54 newdata = newdata.split("\n") 82 lineno, col = map(int, mark.split(".")) 107 lines = data.split("\n") 123 words = re.split("(\s+)", lines[i])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os2emxpath.py | 12 splitext, split, walk) 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 59 """Split a pathname into UNC mount point and relative path specifiers. 90 return split(p)[1] 97 return split(p)[0] 127 comps = path.split('/')
|