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

<<919293949596979899100>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bytes.py 343 self.assertEqual(b.split(b'i'), [b'm', b'ss', b'ss', b'pp', b''])
344 self.assertEqual(b.split(b'ss'), [b'mi', b'i', b'ippi'])
345 self.assertEqual(b.split(b'w'), [b])
351 self.assertEqual(b.split(), [b'arf', b'barf'])
352 self.assertEqual(b.split(None), [b'arf', b'barf'])
353 self.assertEqual(b.split(None, 2), [b'arf', b'barf'])
356 self.assertEqual(b.split(), [b])
357 self.assertEqual(self.type2test(b' a bb c ').split(None, 0), [b'a bb c '])
358 self.assertEqual(self.type2test(b' a bb c ').split(None, 1), [b'a', b'bb c '])
359 self.assertEqual(self.type2test(b' a bb c ').split(None, 2), [b'a', b'bb', b'c ']
    [all...]
test_re.py 219 self.assertEqual(re.split(":", ":a:b::c"), ['', 'a', 'b', '', 'c'])
220 self.assertEqual(re.split(":*", ":a:b::c"), ['', 'a', 'b', 'c'])
221 self.assertEqual(re.split("(:*)", ":a:b::c"),
223 self.assertEqual(re.split("(?::*)", ":a:b::c"), ['', 'a', 'b', 'c'])
224 self.assertEqual(re.split("(:)*", ":a:b::c"),
226 self.assertEqual(re.split("([b:]+)", ":a:b::c"),
228 self.assertEqual(re.split("(b)|(:+)", ":a:b::c"),
231 self.assertEqual(re.split("(?:b)|(?::+)", ":a:b::c"),
235 self.assertEqual(re.split(":", ":a:b::c", 2), ['', 'a', 'b::c'])
236 self.assertEqual(re.split(':', 'a:b:c:d', 2), ['a', 'b', 'c:d']
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 819 * within that row or column. This is used to find a natural split point to
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 183 TimingLogger::ScopedTiming split("(Paused)VerifyNoFromSpaceReferences", GetTimings());
277 TimingLogger::ScopedTiming split("InitializePhase", GetTimings());
412 TimingLogger::ScopedTiming split("(Paused)FlipCallback", cc->GetTimings());
521 TimingLogger::ScopedTiming split(__FUNCTION__, GetTimings());
597 TimingLogger::ScopedTiming split(__FUNCTION__, GetTimings());
607 TimingLogger::ScopedTiming split("FlipThreadRoots", GetTimings());
662 TimingLogger::ScopedTiming split("GrayAllDirtyImmuneObjects", GetTimings());
702 TimingLogger::ScopedTiming split("(Paused)GrayAllNewlyDirtyImmuneObjects", GetTimings());
779 TimingLogger::ScopedTiming split("MarkingPhase", GetTimings());
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
typecheck.go 258 t := split(typeof[rhs[0]])
331 typeof[n] = mkType(joinFunc(split(typeof[n.Params]), split(typeof[n.Results])))
577 t := split(typeof[f.Results])
612 return split(s[i:j]), split(out)
630 // split splits "int, float" into ["int", "float"] and splits "" into [].
631 func split(s string) []string { func
668 // join is the inverse of split.
  /prebuilts/go/linux-x86/src/cmd/fix/
typecheck.go 258 t := split(typeof[rhs[0]])
331 typeof[n] = mkType(joinFunc(split(typeof[n.Params]), split(typeof[n.Results])))
577 t := split(typeof[f.Results])
612 return split(s[i:j]), split(out)
630 // split splits "int, float" into ["int", "float"] and splits "" into [].
631 func split(s string) []string { func
668 // join is the inverse of split.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
msvc9compiler.py 183 s, rest = sys.version[i:].split(" ", 1)
211 oldList = variable.split(os.pathsep)
282 for line in stdout.split("\n"):
287 key, value = line.split('=', 1)
386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
406 for p in os.environ['path'].split(';'):
759 for p in os.environ['Path'].split(';'):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
config.py 86 name = name.split('.')
109 flist = flist.split(",")
138 hlist = hlist.split(",")
181 llist = llist.split(",")
195 hlist = hlist.split(",")
247 hlist = hlist.split(",")
388 name = s.split('.')
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
scantools.py 203 1) use \ to split a long logical line in multiple physical lines
237 words = [s.strip() for s in line.split(':')]
251 patparts = [s.strip() for s in pat.split(',')]
252 repparts = [s.strip() for s in rep.split(',')]
260 pattern = p.split()
277 replacement = p.split()
492 self.defsfile.write("# Generated from %r\n\n" % (os.path.split(inputname)[1],))
643 parts = [s.strip() for s in args.split(",")]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Parser.py 150 (DecPath, DecName) = os.path.split(DecFullPath)
394 VariableList = Record[0].split(',')
410 VariableValueList = NewRecord.split('},')
413 NewVariableValueList = VariableValue.split(',')
457 VariableValueList = NewRecord.split('},')
459 NewVariableValueList = VariableValue.split(',')
791 List = Line.split()
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 61 GuidList = Guid.split('-')
98 GuidValueList = GuidValueString.split(",")
438 Path1 = min(PathList).split(os.path.sep)
439 Path2 = max(PathList).split(os.path.sep)
481 self.SubDir, self.Name = os.path.split(self.File)
563 self.SubDir, self.Name = os.path.split(RealFile)
713 ValueList = PattenRemoveHashKey.split(Line)
    [all...]
  /external/autotest/site_utils/suite_scheduler/
task.py 92 return stdout.split('-')[0]
288 specs = re.split('\s*,\s*', branch_specs)
321 for target in lc_targets.split(','):
500 [b.strip() for b in launch_control_branches.split(',')]
503 [t.strip() for t in launch_control_targets.split(',')]
576 self._boards = set([x.strip() for x in boards.split(',')])
    [all...]
  /external/devlib/devlib/utils/
ssh.py 261 output = output.split('\r\n', 1)[1]
443 files = result.split()
498 command_name = command.split(' ')[0].split('/')[-1]
737 exit_code = int(exit_code_text.split()[0])
763 subprocess.call(command.split())
764 subprocess.call("sync".split())
    [all...]
  /external/mksh/src/
check.pl 263 foreach $c (split(',', $opt_C)) {
484 split(' ', $val, 3);
535 foreach $var (split(substr($test{'env-setup'}, 0, 1),
563 @argv = split(' ', $test_prog);
569 split(substr($test{'arguments'}, 0, 1),
706 foreach $c (split(',', $test{'category'})) {
    [all...]
  /external/python/cpython2/Lib/logging/
config.py 93 name = name.split('.')
116 flist = flist.split(",")
145 hlist = hlist.split(",")
188 llist = llist.split(",")
202 hlist = hlist.split(",")
254 hlist = hlist.split(",")
385 name = s.split('.')
    [all...]
  /external/python/cpython2/Tools/bgen/bgen/
scantools.py 203 1) use \ to split a long logical line in multiple physical lines
237 words = [s.strip() for s in line.split(':')]
251 patparts = [s.strip() for s in pat.split(',')]
252 repparts = [s.strip() for s in rep.split(',')]
260 pattern = p.split()
277 replacement = p.split()
492 self.defsfile.write("# Generated from %r\n\n" % (os.path.split(inputname)[1],))
643 parts = [s.strip() for s in args.split(",")]
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 160 measures, beats, ticks = s.split(':',3)
173 base_list = (os.path.abspath(base)).split(os.sep)
174 target_list = (os.path.abspath(target)).split(os.sep)
205 return os.path.split(fileName)[1]
212 return os.path.split(fileName)[0]
325 m1, b1, t1 = mbt1.split(':',3)
326 m2, b2, t2 = mbt2.split(':',3)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Host.cpp 1090 Str.split(Lines, "\n");
    [all...]
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 210 all_remote_libs = self._shell("ls", "/system/lib/*.so").split()
241 return check_output(["md5sum", file]).strip().split()[0]
248 raw_output = self._call_adb("devices").split()
279 return self._call_adb(*["shell", "getprop"]).split('\n')
282 str(property)]).split('\n')[0])
307 line = raw_line.split()
680 args = arg.strip('"').split()
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 196 * @param str the string to split. Must not be null.
202 * {@link #split(String, String, boolean)}
205 public static String[] split(String str, String delims) { method in class:StringUtil
206 return split(str, delims, false);
230 * {@code Iterable<String>} returned by {@link Splitter#split}.
233 * @param str the string to split. Must not be null.
242 public static String[] split( method in class:StringUtil
340 * @param str the string to split. Must not be null.
346 * {@link #split(String, String, boolean)}
350 return split(str, delims, true)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 32 * The purpose of this class is to split a full name into given names and last
310 String[] split = strings.split(","); local
311 for (int i = 0; i < split.length; i++) {
312 set.add(split[i].trim().toUpperCase());
345 public void split(Name name, String fullName) { method in class:NameSplitter
355 split(name, fullName, fullNameStyle); method
362 public void split(Name name, String fullName, int fullNameStyle) { method in class:NameSplitter
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 86 name = name.split('.')
109 flist = flist.split(",")
138 hlist = hlist.split(",")
181 llist = llist.split(",")
195 hlist = hlist.split(",")
247 hlist = hlist.split(",")
394 name = s.split('.')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 86 name = name.split('.')
109 flist = flist.split(",")
138 hlist = hlist.split(",")
181 llist = llist.split(",")
195 hlist = hlist.split(",")
247 hlist = hlist.split(",")
394 name = s.split('.')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 86 name = name.split('.')
109 flist = flist.split(",")
138 hlist = hlist.split(",")
181 llist = llist.split(",")
195 hlist = hlist.split(",")
247 hlist = hlist.split(",")
394 name = s.split('.')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 86 name = name.split('.')
109 flist = flist.split(",")
138 hlist = hlist.split(",")
181 llist = llist.split(",")
195 hlist = hlist.split(",")
247 hlist = hlist.split(",")
394 name = s.split('.')
    [all...]

Completed in 1630 milliseconds

<<919293949596979899100>>