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

<<919293949596979899100>>

  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleMatcher.java 144 String[] rangeSubtags = range.split("-");
147 String[] tagSubtags = tag.split("-");
251 String[] langRanges = ranges.split(",");
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserString.py 118 def split(self, sep=None, maxsplit=-1): member in class:UserString
119 return self.data.split(sep, maxsplit)
223 called_in_dir, called_as = os.path.split(sys.argv[0])
uuid.py 307 words = line.lower().split()
358 value = line.split(':')[-1].strip().lower()
422 if int(os.uname()[2].split('.')[0]) >= 9:
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
bdist_rpm.py 365 l = string.split(string.strip(line))
539 spec_file.extend(string.split(open(val, 'r').read(), '\n'))
570 for line in string.split(string.strip(changelog), '\n'):
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
_parseaddr.py 50 data = data.split()
61 stuff = data[0].split('-')
94 tm = tm.split(':')
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
expatreader.py 310 pair = name.split()
323 parts = aname.split()
344 pair = name.split()
  /prebuilts/gdb/linux-x86/lib/python2.7/
UserString.py 118 def split(self, sep=None, maxsplit=-1): member in class:UserString
119 return self.data.split(sep, maxsplit)
223 called_in_dir, called_as = os.path.split(sys.argv[0])
uuid.py 307 words = line.lower().split()
358 value = line.split(':')[-1].strip().lower()
422 if int(os.uname()[2].split('.')[0]) >= 9:
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
bdist_rpm.py 365 l = string.split(string.strip(line))
539 spec_file.extend(string.split(open(val, 'r').read(), '\n'))
570 for line in string.split(string.strip(changelog), '\n'):
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
_parseaddr.py 50 data = data.split()
61 stuff = data[0].split('-')
94 tm = tm.split(':')
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
expatreader.py 310 pair = name.split()
323 parts = aname.split()
344 pair = name.split()
  /prebuilts/go/darwin-x86/src/bufio/
scan_test.go 45 s.Split(ScanBytes)
67 s.Split(ScanRunes)
111 s.Split(ScanWords)
193 s.Split(ScanLines)
229 s.Split(ScanLines)
254 s.Split(ScanLines)
311 // Test the correct error is returned when the split function errors out.
313 // Create a split function that delivers a little data, then a predictable error.
330 s.Split(errorSplit)
351 split := func(data []byte, atEOF bool) (advance int, token []byte, err error)
503 func (c *countdown) split(data []byte, atEOF bool) (advance int, token []byte, err error) { func
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
natconv.go 334 // Convert words of q to base b digits in s. If q is large, it is recursively "split in half"
343 // is made better by splitting the subblocks recursively. Best is to split blocks until one more
344 // split would take longer (because of the nat/nat div()) than the twice as many divW()'s of the
351 // split larger blocks recursively
370 // split q into the two digit number (q'*bbb + r) to form independent subblocks
380 // having split any large blocks now process the remaining (small) block iteratively
417 // Split blocks greater than leafSize Words (or set to 0 to disable recursive conversion)
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb.py 399 pc = int(str(pc).split(None, 1)[0], 16)
439 goid, cmd = arg.split(None, 1)
449 pc = int(str(pc).split(None, 1)[0], 16)
  /prebuilts/go/darwin-x86/test/chan/
powser1.go 66 // split reads a single demand channel and replicates its
71 // When multiple generations of split exist, the newest
110 func split(in *dch, out *dch2) { func
314 func Split(U PS) *dch2 {
316 go split(U,UU)
451 UU := Split(U)
452 VV := Split(V)
536 split(Mul(Cmul(neg(z),U),Shift(z,ZZ[0])),ZZ)
551 split(Integ(one,Mul(ZZ[0],Diff(U))),ZZ)
564 VV := Split(V
    [all...]
powser2.go 76 // split reads a single demand channel and replicates its
81 // When multiple generations of split exist, the newest
120 func split(in *dch, out *dch2){ func
328 func Split(U PS) *dch2{
330 go split(U,UU)
465 UU := Split(U)
466 VV := Split(V)
550 split(Mul(Cmul(neg(z),U),Shift(z,ZZ[0])),ZZ)
565 split(Integ(one,Mul(ZZ[0],Diff(U))),ZZ)
578 VV := Split(V
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
scan_test.go 45 s.Split(ScanBytes)
67 s.Split(ScanRunes)
111 s.Split(ScanWords)
193 s.Split(ScanLines)
229 s.Split(ScanLines)
254 s.Split(ScanLines)
311 // Test the correct error is returned when the split function errors out.
313 // Create a split function that delivers a little data, then a predictable error.
330 s.Split(errorSplit)
351 split := func(data []byte, atEOF bool) (advance int, token []byte, err error)
503 func (c *countdown) split(data []byte, atEOF bool) (advance int, token []byte, err error) { func
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
natconv.go 334 // Convert words of q to base b digits in s. If q is large, it is recursively "split in half"
343 // is made better by splitting the subblocks recursively. Best is to split blocks until one more
344 // split would take longer (because of the nat/nat div()) than the twice as many divW()'s of the
351 // split larger blocks recursively
370 // split q into the two digit number (q'*bbb + r) to form independent subblocks
380 // having split any large blocks now process the remaining (small) block iteratively
417 // Split blocks greater than leafSize Words (or set to 0 to disable recursive conversion)
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb.py 399 pc = int(str(pc).split(None, 1)[0], 16)
439 goid, cmd = arg.split(None, 1)
449 pc = int(str(pc).split(None, 1)[0], 16)
  /prebuilts/go/linux-x86/test/chan/
powser1.go 66 // split reads a single demand channel and replicates its
71 // When multiple generations of split exist, the newest
110 func split(in *dch, out *dch2) { func
314 func Split(U PS) *dch2 {
316 go split(U,UU)
451 UU := Split(U)
452 VV := Split(V)
536 split(Mul(Cmul(neg(z),U),Shift(z,ZZ[0])),ZZ)
551 split(Integ(one,Mul(ZZ[0],Diff(U))),ZZ)
564 VV := Split(V
    [all...]
powser2.go 76 // split reads a single demand channel and replicates its
81 // When multiple generations of split exist, the newest
120 func split(in *dch, out *dch2){ func
328 func Split(U PS) *dch2{
330 go split(U,UU)
465 UU := Split(U)
466 VV := Split(V)
550 split(Mul(Cmul(neg(z),U),Shift(z,ZZ[0])),ZZ)
565 split(Integ(one,Mul(ZZ[0],Diff(U))),ZZ)
578 VV := Split(V
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
ccc-analyzer 467 my ($ArgKey) = split /=/,$Arg,2;
670 push @AnalyzeArgs, split '\s+', $Analyses;
674 push @AnalyzeArgs, split '\s+', $Plugins;
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
ccc-analyzer 467 my ($ArgKey) = split /=/,$Arg,2;
670 push @AnalyzeArgs, split '\s+', $Analyses;
674 push @AnalyzeArgs, split '\s+', $Plugins;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 118 def split(self, sep=None, maxsplit=-1): member in class:UserString
119 return self.data.split(sep, maxsplit)
223 called_in_dir, called_as = os.path.split(sys.argv[0])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_rpm.py 365 l = string.split(string.strip(line))
539 spec_file.extend(string.split(open(val, 'r').read(), '\n'))
570 for line in string.split(string.strip(changelog), '\n'):

Completed in 1396 milliseconds

<<919293949596979899100>>