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

<<81828384858687888990>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvc9compiler.py 183 s, rest = sys.version[i:].split(" ", 1)
211 oldList = variable.split(os.pathsep)
282 for line in stdout.split("\n"):
287 key, value = line.split('=', 1)
386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
406 for p in os.environ['path'].split(';'):
692 temp_manifest = arg.split(":", 1)[1]
796 for p in os.environ['Path'].split(';'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 35 dir, base = os.path.split(path)
75 dir, base = os.path.split(path)
SearchEngine.py 177 line, col = map(int, pos.split("."))
219 line, col = map(int, index.split(".")) # Fails on invalid index
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
robotparser.py 106 line = line.split(':', 1)
189 # split the name token and make it lower case
190 useragent = useragent.split("/")[0].lower()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 49 (head, tail) = os.path.split(name)
53 (head, tail) = os.path.split(head)
msvc9compiler.py 183 s, rest = sys.version[i:].split(" ", 1)
211 oldList = variable.split(os.pathsep)
282 for line in stdout.split("\n"):
287 key, value = line.split('=', 1)
386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
406 for p in os.environ['path'].split(';'):
692 temp_manifest = arg.split(":", 1)[1]
796 for p in os.environ['Path'].split(';'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 35 dir, base = os.path.split(path)
75 dir, base = os.path.split(path)
SearchEngine.py 177 line, col = map(int, pos.split("."))
219 line, col = map(int, index.split(".")) # Fails on invalid index
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
robotparser.py 106 line = line.split(':', 1)
189 # split the name token and make it lower case
190 useragent = useragent.split("/")[0].lower()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
CompiledResourcesMonitor.java 124 // then split the components of each path by their separators
125 String [] pathArray = pathWithoutExtension.split(Pattern.quote(File.separator));
126 String [] packageArray = packageName.split(AdtConstants.RE_DOT);
  /system/media/camera/docs/
metadata_helpers.py 142 name_list = name.split(".")
708 return "".join([s[0:1].upper() + s[1:] for s in what.split('.')])
866 javatext = "\n".join(line_filter(i) for i in javatext.split("\n")) + "\n"
942 ndktext = "\n".join(line_filter(i) for i in ndktext.split("\n")) + "\n"
966 text_lines = text.split('\n')
    [all...]
  /system/update_engine/scripts/
update_device.py 110 range_str = range_str.split('=', 1)[1]
111 s, e = range_str.split('-', 1)
  /test/vts/harnesses/tradefed/tests/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParserTest.java 174 return output.split("\n");
217 String[] toks = lines[index].split(" ");
  /test/vts/runners/host/
config_parser.py 161 tokens = item.split(':')
175 for elem in test_case_names.split(','):
  /test/vts/script/
test_time_breakdown.py 26 tokens = line.split()
58 tokens = line.split()
  /test/vts/testcases/template/hal_hidl_gtest/
hal_hidl_gtest.py 106 for line in results[const.STDOUT][0].split('\n'):
121 out = str(self._dut.adb.shell(cmd)).split()
  /test/vts/testcases/template/hal_hidl_replay_test/
hal_hidl_replay_test.py 64 out = str(self._dut.adb.shell(cmd)).split()
85 target_package, target_version = self.hal_hidl_package_name.split("@")
  /test/vts-testcase/hal/script/build/
build_rule_gen.py 66 top_dir = hal_dir.split('/', 1)[0]
218 [dir_name, file_name] = os.path.split(abs_file_path)
  /test/vts-testcase/security/poc/host/
SecurityPoCKernelTest.py 86 testcase_path = os.path.join(*testcase.split("/"))
137 items = testcase.split("/", 1)
  /tools/loganalysis/src/com/android/loganalysis/parser/
SmartMonkeyLogParser.java 131 String[] appsArray = apps.split("\\|");
136 String[] pkgsArray = packages.split("\\|");
  /tools/repohooks/rh/
config.py 141 return shlex.split(self.config.get(self.CUSTOM_HOOKS_SECTION, hook, ''))
151 return shlex.split(self.config.get(self.BUILTIN_HOOKS_OPTIONS_SECTION,
  /tools/test/connectivity/acts/framework/acts/controllers/
access_point.py 86 # These ranges were split this way since each physical radio can have up
209 a, b, c, d = starting_ip_range.split('.')
333 a, b, c, d = subnet_str.strip('/24').split('.')
  /tools/test/connectivity/acts/tests/google/bt/pts/
ble_lib.py 117 uuids = line.split()
137 info = line.split()

Completed in 1418 milliseconds

<<81828384858687888990>>