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

<<61626364656667686970>>

  /external/chromium-trace/catapult/devil/devil/android/tools/
device_monitor.py 48 '%s__android_device_status.json' % socket.gethostname().split('.')[0])
113 key = line.split(':')[0].strip()
147 uptimes = device.ReadFile('/proc/uptime').split()
  /external/curl/docs/cmdline-opts/
gen.pl 196 my @m=split(/ /, $seealso);
210 my @m=split(/ /, $mutexed);
333 my @p = split(/ /, $protolong{$f});
  /external/google-breakpad/src/testing/gtest/test/
gtest_shuffle_test.py 101 for line in RunAndReturnOutput(extra_env, args).split('\n'):
124 test_case = test.split('.')[0]
249 [test_case, _] = test.split('.')
  /external/googletest/googletest/test/
gtest_shuffle_test.py 100 for line in RunAndReturnOutput(extra_env, args).split('\n'):
123 test_case = test.split('.')[0]
248 [test_case, _] = test.split('.')
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 45 * Splitter.on(',').split("foo,bar,qux")}</pre>
53 * Splitter.on(',').split(" foo,,, bar ,")}</pre>
63 * <p>Now {@code MY_SPLITTER.split("foo,,, bar ,")} returns just {@code ["foo",
74 * return splitter.split("wrong / wrong / wrong");}</pre>
80 * input. Consequently, all splitters split the empty string to {@code [""]}
120 * example, {@code Splitter.on(',').split("foo,,bar")} returns an iterable
133 * Splitter.on(CharMatcher.anyOf(";,")).split("foo,;bar,quux")} returns an
161 * example, {@code Splitter.on(", ").split("foo, bar,baz")} returns an
201 * For example, {@code Splitter.fixedLength(2).split("abcde")} returns an
206 * split("")} does not yield an empty iterable, but an iterable containin
    [all...]
  /external/icu/icu4c/source/test/depstest/
dependencies.py 85 for file_name in line.split():
106 for dep in line.split():
140 for symbol in line.split(): _AddSystemSymbol(item, symbol)
  /external/iptables/
iptables-test.py 100 splitted = iptables.split(" ")
192 chain_array = line.rstrip()[1:].split(",")
213 item = line.split(";")
  /external/jsoncpp/
doxybuild.py 16 paths = os.environ.get('PATH', '').split(os.pathsep)
19 for name in [filename+ext for ext in suffixes.split()]:
103 '%DOT_PATH%': os.path.split(options.dot_path)[0],
  /external/libcxx/utils/libcxx/
util.py 119 pathext = os.environ.get('PATHEXT', '').split(';')
124 for path in paths.split(os.pathsep):
141 for path in paths.split(os.pathsep):
  /external/libvncserver/utils/
git2cl.pl 94 my @lines = split /\n/, $text;
107 my @lines = split (/\n/, $files_list);
128 my @lines = split (/\n/, $text);
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 128 auto HeadTail = PacketBundle.first.split('\n');
134 auto Duplex = HeadTail.first.split('\v');
143 HeadTail = HeadTail.second.split('\n');
  /external/markdown/markdown/
preprocessors.py 35 takes the document as a list of strings split by newlines and returns
82 return block[1:].replace(">", " ", 1).split()[0].lower()
111 text = text.split("\n\n")
188 return new_text.split("\n")
  /external/mesa3d/scons/
custom.py 51 scons_version = tuple(map(int, SCons.__version__.split('.')))
183 modules = [module.split(' ', 1)[0] for module in modules]
272 for f in val.split():
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/scripts/
gen_llvm_ir_macros.py 171 args = arguments.split(',')
179 func_args_nodefs += arg.split(' =')[0]
181 split_args = arg.split('=')
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
pygen.py 61 for l in re.split(r'\r?\n', block):
113 self._update_lineno(len(line.split("\n")))
291 for line in re.split(r'\r?\n', text):
  /external/protobuf/gtest/test/
gtest_shuffle_test.py 100 for line in RunAndReturnOutput(extra_env, args).split('\n'):
123 test_case = test.split('.')[0]
248 [test_case, _] = test.split('.')
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
FieldMaskUtil.java 82 null, Arrays.asList(value.split(FIELD_PATH_SEPARATOR_REGEX)));
93 type, Arrays.asList(value.split(FIELD_PATH_SEPARATOR_REGEX)));
184 String[] parts = path.split(FIELD_SEPARATOR_REGEX);
  /external/python/cpython2/Lib/
SimpleHTTPServer.py 161 path = path.split('?',1)[0]
162 path = path.split('#',1)[0]
166 words = path.split('/')
mailcap.py 39 mailcaps = str.split(':')
80 types = key.split('/')
162 MIMEtypes = MIMEtype.split('/')
  /external/python/cpython2/Lib/ctypes/test/
__init__.py 66 if modname.split(".")[-1] in exclude:
184 use_resources.extend(value.split(","))
186 exclude.extend(value.split(","))
  /external/python/cpython2/Lib/distutils/
spawn.py 129 _cfg_target_split = [int(x) for x in _cfg_target.split('.')]
135 if _cfg_target_split > [int(x) for x in cur_target.split('.')]:
212 paths = path.split(os.pathsep)
  /external/python/cpython2/Lib/idlelib/
CallTipWindow.py 28 curline = int(self.widget.index("insert").split('.')[0])
57 int, self.widget.index(parenleft).split("."))
93 curline, curcol = map(int, self.widget.index("insert").split('.'))
145 text.insert("insert", "string.split")
GrepDialog.py 40 dir, base = os.path.split(path)
80 dir, base = os.path.split(path)
138 width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))
  /external/python/cpython2/Lib/test/
test_platform.py 205 real_ver = ln.strip().split()[-1]
209 result_list = res[0].split('.')
210 expect_list = real_ver.split('.')
  /external/python/cpython2/PCbuild/
prepare_ssl.py 31 entries = os.environ["PATH"].split(os.pathsep)
80 asms.append(line.split(':')[0])
102 perl, script, src, dest = line.split()

Completed in 1591 milliseconds

<<61626364656667686970>>