HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 151 - 175 of 4729) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython3/Lib/test/
memory_watchdog.py 24 data = int(statm.split()[5])
  /external/python/cpython3/PCbuild/
field3.py 23 string = sys.version.split()[0] # like '2.3a0'
  /external/python/funcsigs/docs/
conf.py 53 version = '.'.join(__version__.split('.')[:2])
148 # If true, the index is split into individual pages for each letter.
  /external/python/pyasn1/pyasn1/compat/
string.py 13 a, c = string.split(sep, 1)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/
OneTest.py 20 test_name = sys.argv[1].split('=',1)[1]
  /external/toolchain-utils/mem_tests/
clean_data.py 25 new_time = int(line.split(',')[0])
  /external/v4l2_codec2/vda/
vp9_bool_decoder.cc 99 unsigned int split = (bool_range_ * prob + (256 - prob)) >> kBoolSize; local
100 BigBool big_split = static_cast<BigBool>(split)
105 bool_range_ = split;
108 bool_range_ -= split;
  /external/v8/tools/
find-commit-for-patch.py 37 words = line.split()
42 hashes = line.split()[1]
43 old_hash = hashes.split("..")[0]
62 _, _, actual_hash, filename = line.split()
  /external/v8/tools/testrunner/utils/
dump_build_config.py 22 k, v = kv.split('=', 1)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Dictionary.py 35 LineList = Line.split(KeySplitCharacter, 1)
37 Key = LineList[0].split()
40 Dictionary[Key[0]] = LineList[1].replace('\\', '/').split(ValueSplitCharacter)
  /external/autotest/client/cros/
certificate_util.py 40 return output.split('=', 1)[1]
60 self._subject = subject.lstrip(' /').split('/')
69 self._subject_dict = dict(map(lambda x: x.split('=', 1),
  /external/harfbuzz_ng/src/
gen-emoji-table.py 20 rang, typ = [s.strip() for s in line.split('#')[0].split(';')[:2]]
22 rang = [int(s, 16) for s in rang.split('..')]
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsList.java 33 String[] s = value.split(",");
43 public List<String> split(String value) { method in class:ArgsList.SemiColonSplitter
44 return Arrays.asList(value.split(";"));
  /external/llvm/utils/
DSAextract.py 68 node_set |= set([re.split('\s+',buffer,2)[1]])
98 nodes = arrowexp.split(buffer)
105 node = re.split('\s+', buffer,2)[1]
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
CriterionClassFactory.py 72 parsedCriteria = [(typeAndName.split(), allowedValues.split())
74 in (line.split(':') for line in criteriaLines)]
  /external/python/cpython2/Lib/plat-mac/
appletrawmain.py 22 _dir = os.path.split(sys.executable)[0] # removes "python"
23 _dir = os.path.split(_dir)[0] # Removes "MacOS"
27 _dir = os.path.split(sys.argv[0])[0]
  /external/swiftshader/third_party/LLVM/utils/
DSAextract.py 68 node_set |= set([re.split('\s+',buffer,2)[1]])
98 nodes = arrowexp.split(buffer)
105 node = re.split('\s+', buffer,2)[1]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
DSAextract.py 68 node_set |= set([re.split('\s+',buffer,2)[1]])
98 nodes = arrowexp.split(buffer)
105 node = re.split('\s+', buffer,2)[1]
  /external/swiftshader/third_party/subzero/pydir/
bisection-test.py 24 include_range = string.split(':')
32 exclude_range = string.split(':')
43 crash_combination = string.split('x')
  /art/test/071-dexfile-map-clean/src/
Main.java 47 String[] split = nameDescription.split(" "); local
49 String permissions = split[1];
63 String[] lineSplit = lineTrimmed.split(" +");
97 String[] smapsLines = smaps.split("\n");
  /build/make/tools/
product_debug.py 22 # these don't get split
25 return (key, "\n".join(val.split()))
28 words = line.split("=", 1)
35 lines = text.split()
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
59 href = s.split(",", 1)[1].strip()[:-1]
  /external/autotest/client/tests/unixbench5/
unixbench5.py 68 subsections = section.split('\n\n')
74 for index, line in enumerate(subsections[1].strip().split('\n')):
82 words = line.lower().split()
88 keyval['score' + suffix] = subsections[2].strip().split()[-1]
95 sections = self.report_data.split('-'*72)
  /external/grpc-grpc/src/ruby/stress/
stress_client.rb 74 client_args.host, client_args.port = address.split(':')
113 split = item.split(':')
114 [split[0]] * split[1].to_i
  /external/python/google-api-python-client/googleapiclient/
mimeparse.py 45 parts = mime_type.split(';')
46 params = dict([tuple([s.strip() for s in param.split('=', 1)])\
54 (type, subtype) = full_type.split('/')
140 parsed_ranges = [parse_media_range(r) for r in ranges.split(',')]
159 split_header = _filter_blank(header.split(','))
  /external/python/setuptools/pkg_resources/tests/
test_working_set.py 15 l for l in s.split('\n')
40 for spec in re.split('\n(?=[^\s])', s):
43 fields = spec.split('\n', 1)
45 name, version = fields.pop(0).split('-')
79 textwrap.dedent(test).lstrip().split('\n\n', 5)

Completed in 1677 milliseconds

1 2 3 4 5 67 8 91011>>