/external/webkit/Source/WebCore/bindings/scripts/ |
IDLParser.pm | 87 my $pid = open2(\*PP_OUT, \*PP_IN, split(' ', $preprocessor), (map { "-D$_" } split(' ', $defines)), $fileName); 167 foreach my $value (split(/\s*,\s*/, $str)) { 168 (my $name, my $val) = split(/\s*=\s*/, $value, 2); 247 my @interfaceParents = split(/,/, $interfaceBase); 259 my @interfaceMethods = split(/;/, $interfaceData); 295 @{$newDataNode->getterExceptions} = split(/,/, $getterException); 296 @{$newDataNode->setterExceptions} = split(/,/, $setterException); 321 @{$newDataNode->raisesExceptions} = split(/,/, $methodException); 323 # Split arguments at commas but only if the comm [all...] |
/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/bluetooth/hcidump/parser/ |
sdp.c | 397 static inline void print_de(int, struct frame *frm, int *split, uint16_t *psm, uint8_t *channel); 399 static inline void print_des(uint8_t de_type, int level, int n, struct frame *frm, int *split, uint16_t *psm, uint8_t *channel) 403 print_de(level, frm, split, psm, channel); 406 static inline void print_de(int level, struct frame *frm, int *split, uint16_t *psm, uint8_t *channel) 421 if (split) { 422 /* Split output by uuids. 424 if (*split) { 428 ++*split; 438 print_des(de_type, level, n, frm, split, psm, channel); 443 print_des(de_type, level, n, frm, split, psm, channel) 519 int len, split, n1 = 0, n2 = 0; local [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(" ")
|
/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/icu4c/tools/genren/ |
genren.pl | 142 ($_, $address, $type) = split(/\|/); 160 @CppName = split(/::/); ## remove scope stuff 163 @CppName = split(/ /, $CppName[1]); ## remove debug stuff 166 @CppName = split(/\(/, $CppName[0]); ## remove function args 196 @funcname = split(/[\(\s+]/);
|
/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/src/ |
s_fma.c | 55 static const double split = 0x1p27 + 1.0; local 150 p = xs * split; 155 p = ys * 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/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/v8/test/cctest/ |
testcfg.py | 91 for test_desc in output.stdout.strip().split(): 92 raw_test, dependency = test_desc.split('<') 93 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/core/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(";");
|
/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"); 110 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/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pGroup.java | 71 String[] tokens = supplicantEvent.split(" "); 82 String[] nameValue = token.split("="); 101 String[] nameValue = token.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...] |
/external/chromium/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 26 #include "net/tools/flip_server/split.h" 60 std::vector<std::string> &split(const std::string &s, function 71 std::vector<std::string> split(const std::string &s, char delim) { function 73 return split(s, delim, elems); 312 std::vector<std::string> valueArgs = split(value, ','); 336 std::vector<std::string> valueArgs = split(value, ','); 355 std::vector<std::string> valueArgs = split(value, ',');
|
/external/icu4c/test/intltest/ |
fldset.cpp | 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function 80 int32_t split = 0; local 84 src.extractBetween(start, end, result[split++]); 88 src.extractBetween(start, src.length(), result[split]); 103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount); 107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
|