HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 2126 - 2150 of 6499) sorted by null

<<81828384858687888990>>

  /external/python/cpython2/Lib/idlelib/
SearchEngine.py 184 line, col = map(int, pos.split("."))
228 line, col = map(int, index.split(".")) # Fails on invalid index
  /external/python/cpython2/Lib/
re.py 82 split Split a string by the occurrences of a pattern.
113 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
168 def split(pattern, string, maxsplit=0, flags=0): function
169 """Split the source string by the occurrences of the pattern,
171 return _compile(pattern, flags).split(string, maxsplit)
robotparser.py 108 line = line.split(':', 1)
200 # split the name token and make it lower case
201 useragent = useragent.split("/")[0].lower()
  /external/python/cpython2/Lib/test/
ssl_servers.py 66 words = path.split('/')
71 head, word = os.path.split(word)
test_tcl.py 20 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.')))
583 split = self.interp.tk.split
585 self.assertRaises(TypeError, split)
586 self.assertRaises(TypeError, split, 'a', 'b')
587 self.assertRaises(TypeError, split, 2)
627 self.assertEqual(split(arg), res)
724 self.assertRaises(OverflowError, self.interp.split, value)
  /external/python/cpython2/PC/VC6/
build_ssl.py 25 entries = os.environ["PATH"].split(os.pathsep)
79 parts = re.split("[.-]", os.path.basename(c))[1:]
  /external/python/cpython2/PC/VS8.0/
build_ssl.py 30 entries = os.environ["PATH"].split(os.pathsep)
84 parts = re.split("[.-]", os.path.basename(c))[1:]
  /external/python/cpython2/Tools/scripts/
patchcheck.py 42 st = subprocess.Popen(cmd.split(),
68 st = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
  /external/selinux/python/sepolgen/src/sepolgen/
module.py 89 return os.path.splitext(os.path.split(sourcename)[1])[0]
148 splitname = sourcename.split(".")
  /external/skia/bench/
check_bench_regressions.py 111 elements = expectation.strip().split(',')
155 bench, config = line_str.strip('_').split('.skp_')
  /external/skia/infra/bots/recipe_modules/core/resources/
run_binary_size_analysis.py 163 handle. Split it into sub-buckets in that case."""
246 path_parts = file_path.split('/')
267 # path information. Split it into subgroups if needed.
574 line_data = line.split()
635 system_path = os.environ["PATH"].split(os.pathsep)
  /external/skia/tools/
parse_llvm_coverage.py 35 return filename.split('..')[-1].lstrip('./')
89 cov, linenum, code = line.split('|', 2)
  /external/testng/doc/
prettify.js 56 var kw = KEYWORDS[k].split(' ');
219 /** split markup into chunks of html tags (style null) and
320 * of split tokens.
371 // A state machine to split out declarations, tags, etc.
376 // one big string, as they were before being split.
562 // a state machine to split out comments, strings, and other stuff
632 /** used by lexSource to split a non string, non comment token.
675 // are each split into multiple tokens
747 /** split a group of chunks of markup.
757 /** split tags attributes and their values out from the tag name, and
    [all...]
  /external/toolchain-utils/automation/clients/helper/
perforce.py 50 parts = [part for part in path_s.strip('/').split('/') if part]
94 parts = root_s.strip('/').split('/', 1)
  /external/toolchain-utils/cros_utils/
buildbot_utils.py 55 lines = data.split('\n')
168 tmp_list = out.split('\n')
  /external/trappy/trappy/plotter/
StaticPlot.py 240 c_list = sorted(c_dict.items(), key=lambda x: (x[1].split(":")[-1], x[1].split(":")[0]))
  /external/v8/testing/gtest/test/
gtest_output_test.py 300 normalized_golden.split('\n'),
301 normalized_actual.split('\n'),
  /external/v8/tools/
run-tests.py 334 help="Split testsuites into this number of shards",
337 help="Run this shard from the split up tests.",
506 options.arch_and_mode = [arch_and_mode.split(".")
507 for arch_and_mode in options.arch_and_mode.split(",")]
510 options.mode = options.mode.split(",")
517 options.arch = options.arch.split(",")
536 options.command_prefix = shlex.split(options.command_prefix)
537 options.extra_flags = shlex.split(options.extra_flags)
582 VARIANTS = options.variants.split(",")
707 args_suites[arg.split('/')[0]] = Tru
    [all...]
verify_source_deps.py 93 return re.split('[/\\\\]', path)
104 for f in subprocess.check_output(cmd, universal_newlines=True).split('\n'):
  /external/valgrind/cachegrind/
cg_annotate.in 193 @show_events = split(/,/, $1);
200 @sort_events = split(/,/, $1);
307 my @CC = (split /\s+/, $_[0]);
337 @events = split(/\s+/, $line);
  /external/webrtc/tools/matlab/
parseLog.m 34 colheaders = regexp(table.textdata{1}, ',', 'split');
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
addinterface.cpp 79 QStringList lines = ifaces.split(QRegExp("\\n"));
82 QStringList arg = (*it).split(QChar('\t'));
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
RunTestCommand.java 181 String[] classArray = classes.split(CLASS_SEPARATOR);
195 String[] jarFileNames = jars.split(JARS_SEPARATOR);
  /frameworks/base/core/java/android/net/
NetworkUtils.java 301 String[] pieces = ipAndMaskString.split("/", 2);
372 String[] octets = addr.split("\\.");
  /frameworks/base/core/java/android/util/
DebugUtils.java 73 String[] selectors = s.split("@");
78 String[] pair = selectors[i].split("=");

Completed in 1356 milliseconds

<<81828384858687888990>>