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

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 82 userinfo = userinfo.split(":", 1)[0]
92 return userinfo.split(":", 1)[1]
97 netloc = self.netloc.split('@')[-1]
99 return netloc.split(']')[0][1:].lower()
101 return netloc.split(':')[0].lower()
109 netloc = self.netloc.split('@')[-1].split(']')[-1]
111 port = netloc.split(':')[1]
192 url, fragment = url.split('#', 1)
194 url, query = url.split('?', 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 82 userinfo = userinfo.split(":", 1)[0]
92 return userinfo.split(":", 1)[1]
97 netloc = self.netloc.split('@')[-1]
99 return netloc.split(']')[0][1:].lower()
101 return netloc.split(':')[0].lower()
109 netloc = self.netloc.split('@')[-1].split(']')[-1]
111 port = netloc.split(':')[1]
192 url, fragment = url.split('#', 1)
194 url, query = url.split('?', 1
    [all...]
  /bionic/libc/tools/
check-symbols.py 57 for line in subprocess.check_output(['readelf', '-W', '--dyn-syms', so_file]).split('\n'):
60 symbol = string.split(m.group(2), '@')[0]
genversion-scripts.py 50 name = basename.split(".")[0] + "." + arch + ".map"
59 tags = line[index+1:].split()
  /build/make/tools/
compare_fileslist.py 39 lines = map(string.split, lines)
85 combo = input.split(os.path.sep)[1]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
TestRunHandler.java 91 for (String entry : str.split("\n")) {
92 String[] parts = entry.split(MAP_DELIMITER);
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
EphemeralUserTest.java 107 * Test that creating an ephemeral user fails on systems without the split system user.
122 String[] outputLines = commandOutput.split("\n");
124 String[] lineParts = line.split(":");
  /cts/hostsidetests/dumpsys/src/android/dumpsys/cts/
StoragedDumpsysTest.java 89 parts = line.split(",");
98 parts = line.split(" ");
  /cts/suite/audio_quality/test/
StringUtilTest.cpp 56 std::vector<android::String8>* tokens = StringUtil::split(str, ':');
66 std::vector<android::String8>* tokens2 = StringUtil::split(str2, ':');
  /dalvik/opcode-gen/
opcode-gen.awk 263 count = split(line, parts);
288 count = split(line, parts);
306 split(name[idx], parts, "/");
312 split(format[idx], parts, ""); # Width is the first format char.
341 count = split(line, parts);
462 count = split(hex, chars, "");
507 count = split(f, parts, /\|/); # Split input at pipe characters.
530 split(flags[idx], parts, /\|/); # Split flags[idx] at pipes
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
__init__.py 63 default_parser_list = os.environ["PY_SAX_PARSER"].split(",")
68 default_parser_list = sys.registry.getProperty(_key).split(",")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
__init__.py 63 default_parser_list = os.environ["PY_SAX_PARSER"].split(",")
68 default_parser_list = sys.registry.getProperty(_key).split(",")
  /external/ImageMagick/coders/
caption.c 115 split,
163 split=MagickFalse;
167 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
181 split=MagickTrue;
183 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,exception);
218 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
244 i=FormatMagickCaption(image,draw_info,split,&metrics,&text,
274 i=FormatMagickCaption(image,draw_info,split,&metrics,&caption,exception);
113 split, local
  /external/autotest/client/bin/
os_dep.py 12 for dir in os.environ['PATH'].split(':'):
30 glob_pattern = line.split('include ')[1]
  /external/autotest/client/common_lib/cros/
tpm_utils.py 32 lines = out.split('\n')
35 item = item.split(':')
  /external/autotest/client/profilers/cpistat/
cpistat 33 cpus = options.cpulist.split(',')
38 events = options.events.split(',')
  /external/autotest/client/site_tests/hardware_GobiGPS/
hardware_GobiGPS.py 38 for line in nmea.split('\n'):
44 fields = line.split(',')[4:]
  /external/autotest/client/site_tests/hardware_Resolution/
hardware_Resolution.py 57 sections = line.split(',')
60 res = item.split()
  /external/autotest/client/site_tests/security_ProtocolFamilies/
security_ProtocolFamilies.py 58 PROTOCOL_FAMILIES = dict([(int(line.split()[2]), line.split()[1])
  /external/autotest/client/tests/bonnie/
bonnie.py 6 values = values.split(':')
77 fields = line.split(',')
  /external/autotest/server/cros/network/rf_switch/
scpi.py 115 .strip().split(',', 3)))
138 code, msg = self.query('%s\n' % self.CMD_ERROR_CHECK).split(', ')
  /external/autotest/server/site_tests/provision_FirmwareUpdate/
provision_FirmwareUpdate.py 43 return result.stdout.split('.', 1)[1]
53 return result.stdout.split('.', 1)[1]
  /external/autotest/server/site_tests/provision_TestbedUpdate/
provision_TestbedUpdate.py 26 builds = builds.split(',')
29 build = build.split('#')[0]
  /external/autotest/server/
system_utils.py 28 return [hostname.strip() for hostname in drones.split(',')]
40 return [hostname.strip() for hostname in shards.split(',')]
  /external/blktrace/btt/
bno_plot.py 101 fld = line.split(None)
121 cmd = cmd.split(None)

Completed in 1903 milliseconds

<<21222324252627282930>>