HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 4451 - 4475 of 6499) sorted by null

<<171172173174175176177178179180>>

  /external/python/cpython2/Demo/pdist/
FSProxy.py 71 head, tail = os.path.split(name)
cvslib.py 327 words = string.split(date) # Day Mon DD HH:MM:SS YEAR
  /external/python/cpython2/Demo/turtle/
turtleDemo.py 210 direc, fname = os.path.split(filename)
  /external/python/cpython2/Lib/
csv.py 301 data = filter(None, data.split('\n'))
imputil.py 89 parts = fqname.split('.')
warnings.py 135 parts = arg.split(':')
zipfile.py 583 # '\r\n' is always retrieved completely and never split into
    [all...]
  /external/python/cpython2/Lib/distutils/
cmd.py 202 # split the string on comma and/or whitespace). If we can't force the
227 currently a string, we split it either on /,\s*/ or /\s+/, so
235 setattr(self, option, re.split(r',\s*|\s+', val))
  /external/python/cpython2/Lib/distutils/tests/
test_dist.py 409 output = [line for line in s.getvalue().split('\n')
  /external/python/cpython2/Lib/email/
feedparser.py 115 # ending with '\r' might be a line that was split in the middle of a
123 parts = NLCRE_crack.split(data)
124 # The *ahem* interesting behaviour of re.split when supplied grouping
496 # Split the line on the colon separating field name from value.
  /external/python/cpython2/Lib/idlelib/
UndoDelegator.py 343 width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))
  /external/python/cpython2/Lib/lib-tk/
Canvas.py 28 v = self.canvas.tk.split(self.canvas.tk.call(
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
test_functions.py 11 return arg.split(':')
  /external/python/cpython2/Lib/test/
test_bigmem.py 350 # Crudely calculate an estimate so that the result of s.split won't
355 l = s.split()
359 l = s.split('a')
364 # size. Because of internal affairs, the s.split() call produces a
372 l = s.split()
376 l = s.split('a')
382 # Crudely calculate an estimate so that the result of s.split won't
701 # Like test_concat, split in two.
745 # Like test_concat, split in two.
884 # Like test_concat, split in two
    [all...]
test_csv.py 778 fieldnames="1 2 3 4 5 6".split(),
797 fieldnames="i1 float i2 s1 s2".split())
807 fieldnames="1 2 3 4 5 6".split())
815 fieldnames="1 2 3 4 5 6".split(),
    [all...]
test_decimal.py 240 s = (s.split('->')[0] + '->' +
241 s.split('->')[1].split('--')[0]).strip()
243 s = s.split('--')[0].strip()
247 #print s.split()[0], 'NotImplemented--', ignore
257 funct, value = map(lambda x: x.strip().lower(), s.split(':'))
277 Sides = s.split('->')
278 L = Sides[0].strip().split()
284 L = Sides[1].strip().split()
    [all...]
test_ordered_dict.py 252 s = 'the quick brown fox jumped over a lazy dog yesterday before dawn'.split()
test_poplib.py 47 cmd = line.split(' ')[0].lower()
test_repr.py 148 self.assertTrue(repr(''.split).startswith(
149 '<built-in method split of str object at 0x'))
test_scope.py 590 [bad for s in 'a b' for bad in s.split()]
test_trace.py 328 lines, cov, module = line.split()[:3]
  /external/python/cpython2/Parser/
asdl.py 391 lines = buf.split("\n")
  /external/r8/src/main/java/com/android/tools/r8/
R8Command.java 291 for (String word : line.split("\\s")) {
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
LensCodeRewriter.java 115 // If the current block has catch handlers split the check cast into its own block.
118 iterator.split(1, code, blocks);
  /external/r8/src/main/java/com/android/tools/r8/ir/desugar/
LambdaRewriter.java 319 // Move the iterator back to position it between the two instructions, split
324 BasicBlock nextBlock = instructions.split(code, blocks);

Completed in 1152 milliseconds

<<171172173174175176177178179180>>