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

<<11121314151617181920>>

  /external/python/cpython2/Tools/webchecker/
websucker.py 16 _v = __version__.split()
79 dir, base = os.path.split(path)
99 path = os.sep.join(path.split("/"))
115 head, tail = os.path.split(dir)
  /external/python/cpython3/Mac/BuildScript/resources/
install_certificates.command 23 openssl_dir, openssl_cafile = os.path.split(
  /external/python/cpython3/Tools/clinic/
cpp.py 66 for line in s.split("\n"):
140 fields = line.split()
162 fields = condition.split()
190 for line_number, line in enumerate(f.read().split('\n'), 1):
  /external/python/cpython3/Tools/i18n/
makelocalealias.py 29 locale, alias = line.split()
46 lang, encoding = locale.split('.')[:2]
66 words = line.split()
74 lang, encoding = locale.split('.')[:2]
  /external/python/cpython3/Tools/msi/
generate_md5.py 16 filenames.append(os.path.split(file)[1])
  /external/python/cpython3/Tools/scripts/
serve.py 16 if '.' not in fn.split(os.path.sep)[-1]:
  /external/python/setuptools/setuptools/
archive_util.py 106 if name.startswith('/') or '..' in name.split('/'):
109 target = os.path.join(extract_dir, *name.split('/'))
146 if not name.startswith('/') and '..' not in name.split('/'):
147 prelim_dst = os.path.join(extract_dir, *name.split('/'))
  /external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/internal/
ConfigUtils.java 11 return property.split("[, ]+");
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTextUtilsTest.java 43 assertThat(TextUtils.split("", ",").length).isEqualTo(0);
46 assertArrayEquals(TextUtils.split("abc", ","), new String[]{"abc"});
49 assertArrayEquals(TextUtils.split("abc,def", ","), new String[]{"abc", "def"});
52 assertArrayEquals(TextUtils.split("abc, def", ","), new String[]{"abc", " def"});
  /external/skia/gn/
ar.py 23 objects = open(rspfile).read().split()
  /external/skia/infra/bots/recipe_modules/builder_name_schema/
builder_name_schema.py 137 split = builder_name.split(BUILDER_NAME_SEP)
170 _parse(0, split[0], split[1:])
  /external/skia/tools/lua/
gradients.py 31 gradients.append(line.split());
  /external/skqp/gn/
ar.py 23 objects = open(rspfile).read().split()
  /external/skqp/infra/bots/recipe_modules/builder_name_schema/
builder_name_schema.py 137 split = builder_name.split(BUILDER_NAME_SEP)
170 _parse(0, split[0], split[1:])
  /external/skqp/tools/lua/
gradients.py 31 gradients.append(line.split());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Util.java 43 String[] lines = resource.split("\\r?\\n");
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAtom.h 55 /// split - Splits the atom in two at a given address, which must align with
57 /// atom representing the high part of the split.
58 MCAtom *split(uint64_t SplitPt);
  /external/swiftshader/third_party/LLVM/utils/release/
findRegressions.py 24 tmp = t[2].split('llvm-test/')
41 n = t[0].split('RESULT-')[1]
47 test[fname]['compile time'] = float(t[2].split('program')[1].strip('\r\n'))
50 test[fname]['exec time'] = float(t[2].split('program')[1].strip('\r\n'))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
PDBStringTableBuilder.cpp 194 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader));
199 Writer.split(Strings.calculateSerializedSize());
203 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize());
207 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t));
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/formats/
googletest.py 15 self.test_sub_dirs = os.path.normcase(str(test_sub_dirs)).split(';')
61 ln = ln.split('#', 1)[0].rstrip()
100 testPath,testName = os.path.split(test.getSourcePath())
104 testPath, namePrefix = os.path.split(testPath)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
findRegressions-simple.py 24 tmp = t[2].split('llvm-test/')
41 n = t[0].split('RESULT-')[1]
47 test[fname]['compile time'] = float(t[2].split('program')[1].strip('\r\n'))
50 test[fname]['exec time'] = float(t[2].split('program')[1].strip('\r\n'))
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
_sklearn.py 90 split = key.split('__', 1)
91 if len(split) > 1:
93 name, sub_name = split
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
candidate_graph_runner.h 33 // Class that represents one split candidate, and can perform operations
37 // split should contain the features that are being used.
39 const decision_trees::BinaryNode& split);
45 // Get the candidates' split score with the split_score op.
48 // Fills in the split in node with weights and threshold.
graph_collection_operator.cc 59 // Fill in split info and left/right stats to initialize models with.
105 decision_trees::BinaryNode split; local
108 split.mutable_inequality_left_child_test();
128 slot->AddSplit(split, input_data, target, example);
130 runners_[unique_id].reset(new CandidateGraphRunner(graph_dir_, split));
split_collection_operators.cc 35 LOG(ERROR) << "Unknown split collection operator: "
115 decision_trees::BinaryNode split; local
123 split.mutable_inequality_left_child_test();
131 split.mutable_custom_left_child_test()->PackFrom(test);
136 stats_.at(node_id)->AddSplit(split, input_data, target, example);

Completed in 1531 milliseconds

<<11121314151617181920>>