HomeSort by relevance Sort by last modified time
    Searched defs:split (Results 76 - 100 of 1282) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/vet/
bool.go 57 exprs := op.split(e)
160 // split returns a slice of all subexpressions in e that are connected by op.
162 // split returns []{d, c, b, a}.
163 func (op boolOp) split(e ast.Expr) (exprs []ast.Expr) { func
167 exprs = append(exprs, op.split(b.Y)...)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
19 __all__ = ["shlex", "split"]
274 def split(s, comments=False, posix=True): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 7 # Posix compliance, split(), string arguments, and
19 __all__ = ["shlex", "split"]
274 def split(s, comments=False, posix=True): function
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 54 Split split; local
55 if ((split = split(line, "=")) != null) {
57 output.setValue(createFullPath(context, split.left), split.right);
58 } else if ((split = split(line, "<<")) != null) {
63 output.setValue(createFullPath(context, split.left), readToToken(lineReader, split.right))
120 private Split split(String line, String delimiter) { method in class:DefaultHdfParser
    [all...]
  /art/compiler/optimizing/
live_interval_test.cc 198 LiveInterval* split = interval->SplitAt(1); local
202 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
209 LiveInterval* split = interval->SplitAt(3); local
213 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
220 LiveInterval* split = interval->SplitAt(1); local
224 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
231 LiveInterval* split = interval->SplitAt(5); local
235 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
242 LiveInterval* split = interval->SplitAt(9); local
246 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)))
253 LiveInterval* split = interval->SplitAt(6); local
264 LiveInterval* split = interval->SplitAt(4); local
275 LiveInterval* split = interval->SplitAt(5); local
    [all...]
  /external/chromium-libpac/src/
net_util.cc 67 size_t split = cidr_literal.find('/'); local
68 if (split == std::string::npos)
70 parts.push_back(cidr_literal.substr(0, split));
71 parts.push_back(cidr_literal.substr(split + 1));
  /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/libvpx/libvpx/vp8/decoder/
dboolhuff.h 56 unsigned int split; local
61 split = 1 + (((br->range - 1) * probability) >> 8);
68 bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
70 range = split;
73 range = br->range - split;
  /external/python/cpython3/Lib/
shlex.py 6 # Posix compliance, split(), string arguments, and
17 __all__ = ["shlex", "split", "quote"]
300 def split(s, comments=False, posix=True): function
  /external/python/cpython3/Objects/stringlib/
split.h 1 /* stringlib: split implementation */
8 split sizes. Eg, "A A A A A A A A A A".split() (10 elements) has three
11 fields). For large strings the split algorithms are bandwidth limited
145 STRINGLIB(split)(PyObject* str_obj, function
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
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);
  /external/tensorflow/tensorflow/core/framework/
tensor_util.cc 109 Status Split(const Tensor& tensor, const gtl::ArraySlice<int64>& sizes,
112 return errors::InvalidArgument("Cannot split a zero-dimensional tensor");
132 Tensor* split = &(*result)[result->size() - 1]; local
137 StringPiece to_data = split->tensor_data();
155 Tensor& split = (*result)[result->size() - 1]; local
157 const_cast<char*>(split.tensor_data().data()));
159 CHECK_LE(offset + split.NumElements(), tensor.NumElements());
160 for (int i = 0; i < split.NumElements(); ++i) {
164 offset += split.NumElements();
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
TestUtil.java 54 public static Operation split(Graph g, String name, int[] values, int numSplit) { method in class:TestUtil
55 return g.opBuilder("Split", name)
  /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;
  /frameworks/base/core/java/android/content/pm/split/
DefaultSplitAssetLoader.java 16 package android.content.pm.split;
35 * Loads the base and split APKs into a single AssetManager.
  /frameworks/base/tools/split-select/
Abi.h 22 namespace split { namespace
48 } // namespace split
SplitDescription.cpp 27 namespace split { namespace
143 SplitDescription split; local
144 if (!AaptConfig::parse(configStr, &split.config)) {
156 index = parseAbi(parts, index, &split);
170 *outSplit = split;
175 } // namespace split
  /frameworks/base/tools/streaming_proto/
string_utils.cpp 93 split(const string& str, const char delimiter) function in namespace:android::stream_proto
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CDATASectionImpl.java 52 public void split() { method in class:CDATASectionImpl
58 String[] parts = getData().split("\\]\\]>");
68 * sequence "]]>". Such nodes must be {@link #split} before they are
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
LinearPartition.java 24 * Helper for the shard splitting. Split linearly a list into N sublist with
31 * Split a list of {@link IModuleDef} into k sub list based on the runtime hint.
37 public static List<List<IModuleDef>> split(List<IModuleDef> seq, int k) { method in class:LinearPartition
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
StubTest.java 100 public Collection<IRemoteTest> split() { method in class:StubTest
  /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(" +");
110 String[] smapsLines = smaps.split("\n");
  /cts/hostsidetests/security/src/android/cts/security/
ProcessMustUseSeccompTest.java 60 String[] lines = Out.getOutput().split(System.getProperty("line.separator"));
63 String[] namePid = line.trim().split("\\s+");
88 String[] lines = Out.getOutput().split(System.getProperty("line.separator"));
90 String[] split = line.trim().split("\\s+"); local
91 if (!split[0].equals("Seccomp:")) {
94 if (split[1].equals("2")) {
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 95 return Arrays.asList(output.split("\n"));
102 return Arrays.asList(writer.toString().split("\\n"));
110 int split = split(outcomeName); local
111 return split == -1 ? "defaultpackage" : outcomeName.substring(0, split);
118 int split = split(outcomeName); local
119 return split == -1 ? outcomeName : outcomeName.substring(split + 1)
122 private static int split(String name) { method in class:Outcome
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOsPath.py 41 split = os.path.split variable

Completed in 752 milliseconds

1 2 34 5 6 7 8 91011>>