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

<<11121314151617181920>>

  /external/markdown/markdown/extensions/
rss.py 24 heading = heading.split("-")[0]
27 month, date, year = heading.split()
36 time = time.split()
tables.py 25 rows = block.split('\n')
32 block = blocks.pop(0).split('\n')
77 """ split a row of text into list of cells. """
83 return row.split('|')
  /external/python/httplib2/python2/httplib2/test/
miniserver.py 15 path = path.split("?", 1)[0].split("#", 1)[0]
16 return os.path.join(HERE, *filter(None, path.split("/")))
  /external/skia/tools/skqp/
make_apk_list.py 50 for line in output.split('\n'):
78 for line in commits.split('\n'):
82 commit, date, subj = line.split(';', 2)
  /external/skqp/tools/skqp/
make_apk_list.py 50 for line in output.split('\n'):
78 for line in commits.split('\n'):
82 commit, date, subj = line.split(';', 2)
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Splitter.cpp 33 "Split virtual regists across loop boundaries.", false, false)
39 "Split virtual regists across loop boundaries.", false, false)
59 "Cannot split physical registers.");
79 assert(valid && "Attempt to apply invalid split.");
574 assert(splitBlock != 0 && "Failed to create split block.");
599 "Split-block parent doesn't contain original loop?");
705 void LoopSplitter::processHeader(LoopSplit &split) {
706 MachineBasicBlock &header = *split.getLoop().getHeader();
709 if (!lis->isLiveInToMBB(split.getLI(), &header))
712 MachineBasicBlock *preHeader = split.getLoop().getLoopPreheader()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
findRegressions-nightly.py 27 tmp = t[2].split(testDirName)
47 n = t[0].split('RESULT-')[1]
53 test[fname][tp + n] = float(t[2].split(' ')[2])
  /external/tensorflow/tensorflow/python/tools/
optimize_for_inference.py 89 FLAGS.input_names.split(","),
90 FLAGS.output_names.split(","),
106 values = [int(value) for value in values.split(",")]
selective_registration_header_lib.py 78 for s in default_ops_str.split(','):
79 op, kernel = s.split(':')
105 _, script_name = os.path.split(sys.argv[0])
  /external/v8/tools/ignition/
linux_perf_bytecode_annotate.py 54 symbol_and_offset = line.split(" ", 1)[1]
60 yield int(symbol_and_offset.split("+", 1)[1], 16)
100 disassembly_offset = int(line.split()[1])
  /art/test/004-ThreadStress/src-art/
Main.java 374 String split[] = arg.split(":"); local
375 if (split.length != 2) {
376 throw new IllegalArgumentException("Can't split argument " + arg);
380 d = Double.parseDouble(split[1]);
388 if (split[0].equals("-oom")) {
390 } else if (split[0].equals("-sigquit")) {
392 } else if (split[0].equals("-alloc")) {
394 } else if (split[0].equals("-largealloc")) {
396 } else if (split[0].equals("-nonmovingalloc"))
    [all...]
  /external/curl/tests/python_dependencies/impacket/
structure.py 194 two = format.split('=')
204 two = format.split('&')
215 two = format.split('-')
223 two = format.split('*')
295 two = format.split('&')
300 two = format.split('=')
305 two = format.split('-')
310 two = format.split('*')
375 two = format.split('&')
380 two = format.split('='
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 133 static const long double split = 0x1p32L + 1.0; local
135 static const long double split = 0x1p57L + 1.0;
140 p = a * split;
145 p = b * split;
  /bionic/tools/
generate-version-script.py 22 tags = line[index+1:].split()
  /cts/apps/CameraITS/tests/inprog/
test_param_edge_mode.py 26 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CameraITS/tests/scene0/
test_burst_capture.py 29 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
Version.java 52 return getPackageInfo(context).versionName.split(" ");
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
AmUtils.java 49 String[] packages = output.split("\\n");
  /cts/hostsidetests/dexmetadata/app/src/com/android/cts/dexmetadata/
InstallDexMetadataTest.java 82 * Verify that we installed the .dm files for base (no split install).
92 * Verify that we installed the .dm files for base and split.
100 for (String split : mSplitCodePaths) {
101 assertTrue(mDexMetadataMap.containsKey(split));
106 * Verify that we installed the .dm files for base but not for split.
116 * Verify that we installed the .dm files for split but not for base.
123 for (String split : mSplitCodePaths) {
124 assertTrue(mDexMetadataMap.containsKey(split));
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostTest.java 80 testString = line.split(":")[1].trim();
  /cts/hostsidetests/securitybulletin/src/android/security/cts/
Poc17_05.java 34 String[] pointerStrings = printkFormats.split("\n");
  /development/apps/CustomLocale/src/com/android/customlocale2/
ChangeLocale.java 53 String[] langCountry = locale.split("_");
  /development/tools/repo_diff/service/repodiff/tools/
clear_service_account_keys.py 21 key_id, created_at, expires_at = line.split()
  /development/tools/winscope/src/
transform_wm.js 204 var split = name.split('/');
205 var pkg = split[0];
206 var clazz = split.slice(1).join('/');
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
simple_server.py 22 sys_version = "Python/" + sys.version.split()[0]
33 self.status.split(' ',1)[0], self.bytes_sent
78 path,query = self.path.split('?',1)
100 k,v = h.split(':',1)

Completed in 1940 milliseconds

<<11121314151617181920>>