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

<<161162163164165166167168169170>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Parsing.py 423 Lines = Lines.split(DataType.TAB_SECTION_END, 1)[1]
433 LineList = Lines.split('\n')
    [all...]
  /external/autotest/client/common_lib/
packages.py 64 username, host = hostline.split('@')
93 'df -PB %d . | tail -1' % 10 ** 9).stdout.split()
363 'PACKAGES', 'custom_upload_location').split(',')
723 checksum, package_name = line.split(None, 1)
769 return md5sum_output.split()[0]
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
test_flow.py 431 number_tracking_ids = int(details[position + 1].split()[-1])
434 criteria = int(details[position + 2].split()[-1])
679 self.record_proc = subprocess.Popen(self.record_cmd.split(),
  /external/autotest/server/
autoserv 81 machines = parser.options.machines.replace(',', ' ').strip().split()
559 ',', ' ').strip().split() if options.machines else []
720 machine = parser.options.results.split('/')[-1]
autoserv.py 81 machines = parser.options.machines.replace(',', ' ').strip().split()
559 ',', ' ').strip().split() if options.machines else []
720 machine = parser.options.results.split('/')[-1]
site_linux_router.py 183 self._log_start_timestamp = last_log_line.strip().split(None, 2)[0]
    [all...]
  /external/clang/tools/scan-view/share/
ScanView.py 188 for chunk in filter(None, qs.split('&')):
193 name, value = chunk.split('=', 1)
654 # Split the components and strip the root prefix.
655 components = path.split('/')[1:]
  /external/jemalloc/src/
chunk.c 105 ATOMIC_COPY_HOOK(split);
254 /* Split the lead. */
256 chunk_hooks->split(extent_node_addr_get(node),
274 /* Split the trail. */
275 if (chunk_hooks->split(ret, size + trailsize, size,
  /external/libvpx/libvpx/tools/
cpplint.py 722 for filt in filters.split(','):
741 category = category.split('/')[0]
919 def Split(self):
922 For 'chrome/browser/browser.cc', Split() would
930 project, rest = os.path.split(googlename)
935 return self.Split()[1]
939 return self.Split()[2]
943 return '/'.join(self.Split()[0:2])
    [all...]
  /external/lisa/libs/utils/
energy_model.py 53 paths = target.execute(find_cmd).split()
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ra_init.cpp 533 split(sh.root);
594 void ra_split::split(container_node* n) {
623 split(static_cast<container_node*>(o));
  /external/mesa3d/src/mapi/
mapi_abi.py 177 cols.extend([p.strip() for p in params.split(',')])
188 cols = [col.strip() for col in line.split(',')]
198 vals = cols[0].split(':')
  /external/python/cpython2/Lib/
ftplib.py 260 hbytes = host.split('.')
858 parts = resp[left + 1:right].split(resp[left+1])
    [all...]
modulefinder.py 136 dir, name = os.path.split(pathname)
169 pname = ".".join(pname.split(".")[:-level])
636 addpath = addpath + a.split(os.pathsep)
pstats.py 559 args = line.split()
657 if line and all((x in abbrevs) for x in line.split()):
658 self.stats.sort_stats(*line.split())
trace.py 747 for mod in val.split(","):
752 for s in val.split(os.pathsep):
791 sys.path[0] = os.path.split(progname)[0]
  /external/python/cpython2/Lib/logging/
handlers.py 302 dirName, baseName = os.path.split(self.baseFilename)
    [all...]
  /external/python/cpython2/Lib/plat-mac/
EasyDialogs.py 60 text = string.join(string.split(text, '\r'), '\n')
65 text = string.join(string.split(text, '\n'), '\r')
556 tmplist = string.split(oldstr)
  /external/python/cpython2/Tools/webchecker/
webchecker.py 126 _v = __version__.split()
557 ctype = ctype.split(';', 1)[0].strip()
837 parts = value.lower().split()
  /external/selinux/python/semanage/
seobject.py 400 for m in module.split():
427 for m in module.split():
468 l.append(name.split("permissive_")[1])
508 for n in name.split():
724 rec = fd.read().rstrip().split(":")
922 role = ",".join(newroles.split())
923 oldserole = ",".join(oldserole.split())
    [all...]
  /external/strace/
config.status 993 nfields = split(line, field, "@")
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InlineFunction.cpp 113 // split unwind edge and then inlining it; but that can do almost
120 // transforms which split edges deal with that.
161 // Otherwise, we have to split at the first non-dominating block.
179 // br label %split // from lastDominated
184 // br label %split
185 // split:
186 // phis_2 (edge from lastDominated, edge from split)
202 // Split the non-dominated block.
203 BasicBlock *split = local
208 cast<BranchInst>(lastDominated->back()).setSuccessor(0, split);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
main.py 163 parent,base = os.path.split(path)
192 parent,base = os.path.split(item)
477 name,val = entry.split('=', 1)
  /external/toolchain-utils/crosperf/
results_report.py 66 full_version = chromeos_image.split('/')[-2]
78 image = chromeos_image.split(official_image_path, 1)[1]
437 # list of lines). So, auto-split if we do happen to get a string.
511 # Split out so that testing (specifically: mocking) is easier
586 date, time = timestamp.split(' ')
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PeerConnectionClient.java 743 String[] lines = sdpDescription.split("\r\n");
810 String[] lines = sdpDescription.split("\r\n");
842 String[] origMLineParts = lines[mLineIndex].split(" ");
    [all...]

Completed in 1807 milliseconds

<<161162163164165166167168169170>>