/external/chromium_org/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 18 #include "net/tools/balsa/split.h" 55 std::vector<std::string>& split(const std::string& s, function 66 std::vector<std::string> split(const std::string& s, char delim) { function 68 return split(s, delim, elems); 305 std::vector<std::string> valueArgs = split(value, ','); 333 std::vector<std::string> valueArgs = split(value, ','); 359 std::vector<std::string> valueArgs = split(value, ',');
|
/external/chromium_org/third_party/icu/source/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);
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
android_platform_backend.py | 97 return int(line.split()[2]) * 1024 215 dimensions = line.split(',')[2] 216 dimensions = map(int, dimensions.split()[0].split('x')) 238 return int(1000 * float(line.split('=')[-1])) 273 data = line.split()
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-40931.js | 30 // To reproduce this we need to split a comma separated string and check the 32 // number of values of the split. 37 var splitNames = names.split(/,/);
|
/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);
|
/external/llvm/utils/Misc/ |
zkill | 30 minutes,value = value.split(':',1) 32 seconds,fseconds = value.split('.',1) 41 # Split into potential arguments. 42 args = command.split(' ') 81 lns = out.split('\n') 83 header = it.next().split() 101 fields = ln.split(None, numRows - 1)
|
/external/llvm/utils/lit/lit/ |
TestFormats.py | 13 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';') 35 lines = lines.split('\n') 63 (dirname, basename) = os.path.split(execpath) 92 testPath,testName = os.path.split(test.getSourcePath()) 96 testPath, namePrefix = os.path.split(testPath) 188 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
|
/external/markdown/ |
test-markdown.py | 41 v = v[i:].split(None, 3) # whitespace 172 test, str_time, str_mem = line.strip().split(":") 181 parts = os.path.split(dir)[-1].split("-x-") 183 extensions = parts[1].split("-") 197 html_diff_file_path = os.path.join(TMP_DIR, os.path.split(dir)[-1]) + ".html" 255 #diff = difflib.ndiff(expected_output.split("\n"), 256 # actual_output.split("\n"))
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-40931.js | 30 // To reproduce this we need to split a comma separated string and check the 32 // number of values of the split. 37 var splitNames = names.split(/,/);
|
/frameworks/wilhelm/tools/permute/ |
permute.c | 53 /** Global state during the split phase */ 75 /** Split the specified range of frames, using the allowed budget of segments. 79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget) function 107 used = split(s, leftStart, leftLength, segmentBudget / 2); 108 used += split(s, rightStart, rightLength, segmentBudget - used); 110 used = split(s, rightStart, rightLength, segmentBudget / 2); 111 used += split(s, leftStart, leftLength, segmentBudget - used); 224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
|
/packages/apps/Settings/src/com/android/settings/net/ |
NetworkPolicyEditor.java | 82 // force combine any split policies when disabled 247 * Remove any split {@link NetworkPolicy}. 283 public void setMobilePolicySplit(String subscriberId, boolean split) { 284 if (setMobilePolicySplitInternal(subscriberId, split)) { 296 private boolean setMobilePolicySplitInternal(String subscriberId, boolean split) { 303 if (split == beforeSplit) { 307 } else if (beforeSplit && !split) { 321 } else if (!beforeSplit && split) {
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
CombinedInputOutput.java | 105 final String header[] = headerLine.split(","); 108 final String keyValue[] = item.split("="); 131 final String args[] = line.trim().split(","); 143 final String params[] = param.split("=", 2); 157 final String params[] = param.split("=", 2); 176 final String params[] = param.split("=", 2);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 38 paths = path.split(os.pathsep) 108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2]) 138 osx_version = tuple(int(i) for i in osx_version.split('.')) 166 cc = oldcc = _config_vars['CC'].split()[0] 199 cv_split = _config_vars[cv].split() 331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_recno.py | 226 data = "The quick brown fox jumped over the lazy dog".split() 240 print text.split('\n') 242 self.assertEqual(text.split('\n'), data) 261 print text.split('\n') 263 self.assertEqual(text.split('\n'), 264 "The quick reddish-brown fox jumped over the comatose dog".split())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 38 paths = path.split(os.pathsep) 108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2]) 138 osx_version = tuple(int(i) for i in osx_version.split('.')) 166 cc = oldcc = _config_vars['CC'].split()[0] 199 cv_split = _config_vars[cv].split() 331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_recno.py | 226 data = "The quick brown fox jumped over the lazy dog".split() 240 print text.split('\n') 242 self.assertEqual(text.split('\n'), data) 261 print text.split('\n') 263 self.assertEqual(text.split('\n'), 264 "The quick reddish-brown fox jumped over the comatose dog".split())
|
/build/tools/releasetools/ |
common.py | 93 for line in zip.read("META/misc_info.txt").split("\n"): 96 k, v = line.split("=", 1) 131 for line in data.split("\n"): 133 name, value = line.split(" ", 1) 167 for line in data.split("\n"): 170 name, value = line.split("=", 1) 186 for line in data.split("\n"): 189 pieces = line.split() 211 options = options.split(",") 222 for line in data.split("\n") [all...] |
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
TestListParser.java | 43 String[] tokens = line.split(":"); 71 String[] suites = fullSuite.split("\\.");
|
/cts/tools/utils/ |
android_api_description_splitter.py | 17 # This script is used to split the jdiff xml into several smaller xml files
82 """Split the jdiff xml into several smaller xml files by specified tag.
93 def split(self, tag):
member in class:XMLSplitter 153 xmlsplitter.split(sys.argv[3])
|
/dalvik/dx/src/com/android/dx/command/annotool/ |
Main.java | 77 for (String p : argParam.split(",")) { 88 for (String p : argParam.split(",")) {
|
/development/testrunner/ |
android_mk.py | 57 parts = line.split(self._VAR_DELIMITER) 132 java_libs = java_lib_string.split(' ')
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
calc.rb | 80 ].strip!.split( /\n/ ).map { |line| 81 expr, val = line.strip.split( /\s+=\s+/, 2 )
|
/external/bzip2/ |
bzip2recover.c | 467 Char* split; local 472 split = strrchr (outFileName, BZ_SPLIT_SYM); 473 if (split == NULL) { 474 split = outFileName; 476 ++split; 478 /* Now split points to the start of the basename. */ 479 ofs = split - outFileName; 480 sprintf (split, "rec%5d", wrBlock+1); 481 for (p = split; *p != 0; p++) if (*p == ' ') *p = '0';
|
/external/chromium/chrome/browser/web_resource/ |
promo_resource_service.cc | 217 size_t split = promo_build.find(":"); local 218 if (split != std::string::npos && 219 base::StringToInt(promo_build.substr(0, split), 221 base::StringToInt(promo_build.substr(split+1), 308 size_t split = name.find(":"); local 309 if (split == std::string::npos) 312 std::string promo_signal = name.substr(0, split); 315 !base::StringToInt(name.substr(split+1), &target_builds))
|
/external/chromium_org/build/android/gyp/ |
process_resources.py | 60 src_components = src_dir_name.split('-') 100 res_dirs = shlex.split(options.res_dirs)
|