HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 626 - 650 of 7669) sorted by null

<<21222324252627282930>>

  /external/jsoncpp/devtools/
licenseupdater.py 41 print('\n'.join( difflib.unified_diff( original_text.split('\n'),
42 new_text.split('\n') ) ))
  /external/libcap-ng/libcap-ng-0.7/
py-compile 125 for file in files.split():
142 for file in files.split():
  /external/llvm/utils/
wciia.py 36 # split paths
38 for path in paths.split():
54 for word in line.split():
  /external/markdown/markdown/extensions/
imagelinks.py 101 parts = line.split()
105 album, photo = line.split("/")
  /external/mesa3d/src/compiler/glsl/
opt_array_splitting.cpp 28 * split it apart into its elements, making it more amenable to other
53 this->split = true;
66 /** Whether this array should be split or not. */
67 bool split; member in class:__anon29229::opt_array_splitting::variable_entry
87 * variables that could be split by looking to see if they are arrays
137 /* If the array hasn't been sized yet, we can't split it. After
187 /* Allow whole-array assignments on the LHS. We can split those
195 * (see the visit_continue_with_parent below), so we can't split
199 entry->split = false;
214 * know which split variable this dereference should go to
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PPreferredServiceParser.java 110 String serviceID = urn.split(ParameterNamesIms.SERVICE_ID_LABEL+".")[1];
124 String appID = urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1];
  /external/protobuf/jenkins/
make_test_output.py 35 values = line.split("\t")
37 name = values[8].split()[-1]
  /external/python/cpython2/Lib/
macurl2path.py 24 components = pathname.split('/')
57 components = pathname.split(':')
  /external/python/cpython2/Lib/xml/sax/
__init__.py 63 default_parser_list = os.environ["PY_SAX_PARSER"].split(",")
68 default_parser_list = sys.registry.getProperty(_key).split(",")
  /external/python/cpython3/Lib/
macurl2path.py 24 components = pathname.split('/')
57 components = pathname.split(':')
  /external/python/cpython3/Lib/test/test_tools/
test_i18n.py 22 for line in data.split('\n'):
26 key, val = line.split(':',1)
  /external/python/cpython3/Lib/xml/sax/
__init__.py 62 default_parser_list = os.environ["PY_SAX_PARSER"].split(",")
67 default_parser_list = sys.registry.getProperty(_key).split(",")
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextUtils.java 68 public static String[] split(String text, String expression) { method in class:ShadowTextUtils
73 return text.split(expression);
  /external/scapy/scapy/arch/
common.py 45 bpf += struct.pack("HBBI",*map(long,l.split()))
73 values = [int(v) for v in line.split()]
  /external/scapy/test/tls/
travis_test_server.py 46 for data in output.split('> Received: ')[1:]:
47 for line in literal_eval(data).split(b'\n'):
  /external/selinux/mcstrans/share/util/
mlscolor-test 20 context, expected = line.split("=")
  /external/swiftshader/third_party/LLVM/lib/Support/
StringExtras.cpp 49 /// SplitString - Split up the specified string according to the specified
61 void llvm::StringRef::split(SmallVectorImpl<StringRef> &A, function in class:llvm::StringRef
71 std::pair<llvm::StringRef, llvm::StringRef> p = rest.split(Separators);
  /external/syslinux/codepage/
cptable.pl 29 @f = split(/;/, $line);
39 foreach my $dch (split(' ', $f[5])) {
57 @f = split(/\s+/, $line);
71 @f = split(/\s+/, $line);
  /external/tensorflow/tensorflow/contrib/eager/python/examples/spinn/
data.py 148 items = line.split("\t")
149 premise_words = get_non_parenthesis_words(items[1].split(" "))
150 hypothesis_words = get_non_parenthesis_words(items[2].split(" "))
192 items = line.split(" ")
244 items = [w for w in sentence.split(" ") if w]
254 """A split of SNLI data."""
280 items = line.split("\t")
284 premise_items = items[1].split(" ")
285 hypothesis_items = items[2].split(" ")
  /external/testng/src/main/java/org/testng/remote/adapter/
DefaultMastertAdapter.java 40 m_hosts = hostLine.split(" ");
48 String[] s = host.split(":");
  /external/toolchain-utils/automation/clients/report/dejagnu/
manifest.py 60 key, value = line[2:].split(':', 1)
68 line, _ = line.split('#', 1)
  /external/v8/tools/clang/scripts/
generate_win_compdb.py 34 split_command = shlex.split(escaped_command)
74 compile_db_as_json = subprocess.check_output(shlex.split(
  /external/valgrind/none/tests/amd64/
gen_insn_test.pl 232 foreach my $preset (split(/\s+/, $presets))
241 my @values = split(/,/, $3);
278 my @values = split(/,/, $3);
311 my @values = split(/,/, $2);
322 my @values = split(/,/, $2);
333 my @values = split(/,/, $2);
350 foreach my $arg (split(/\s+/, $args))
360 my @values = split(/,/, $3);
397 my @values = split(/,/, $3);
479 foreach my $result (split(/\s+/, $results)
    [all...]
  /external/valgrind/none/tests/x86/
gen_insn_test.pl 209 foreach my $preset (split(/\s+/, $presets))
218 my @values = split(/,/, $3);
255 my @values = split(/,/, $3);
288 my @values = split(/,/, $2);
299 my @values = split(/,/, $2);
310 my @values = split(/,/, $2);
327 foreach my $arg (split(/\s+/, $args))
337 my @values = split(/,/, $3);
374 my @values = split(/,/, $3);
456 foreach my $result (split(/\s+/, $results)
    [all...]
  /external/webp/src/utils/
bit_writer_utils.c 109 const int split = (bw->range_ * prob) >> 8; local
111 bw->value_ += split + 1;
112 bw->range_ -= split + 1;
114 bw->range_ = split;
127 const int split = bw->range_ >> 1; local
129 bw->value_ += split + 1;
130 bw->range_ -= split + 1;
132 bw->range_ = split;

Completed in 1849 milliseconds

<<21222324252627282930>>