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

<<111112113114115116117118119120>>

  /tools/tradefederation/core/src/com/android/tradefed/testtype/
AndroidJUnitTest.java 266 // Split filters into class, notClass, package and notPackage
367 String[] parts = filter.split("\\.");
387 public Collection<IRemoteTest> split(int shardCount) { method in class:AndroidJUnitTest
  /build/soong/cc/
check.go 42 args := strings.Split(flag, " ")
54 ctx.PropertyErrorf(prop, "Bad flag: `%s` is not an allowed multi-word flag. Should it be split into multiple flags?", flag)
81 args := strings.Split(flag, " ")
87 ctx.PropertyErrorf(prop, "Bad flag: `%s` is not an allowed multi-word flag. Should it be split into multiple flags?", flag)
125 ctx.PropertyErrorf(prop, "Bad flag: `%s` is not an allowed multi-word flag. Should it be split into multiple flags?", flag)
136 ctx.PropertyErrorf("tidy_checks", "Check `%s` invalid, cannot contain commas. Split each entry into it's own string instead", check)
  /external/autotest/tko/
nightly.py 323 for keyval in colkeys[col].split(','):
324 key, val = keyval.split('=', 1)
596 vary_groups = [dict(pair.split('=',1) for pair
597 in vary_group.split(','))
746 antagonists = antagonists.split(',')
771 self.platforms_filter = platforms.split(',')
    [all...]
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 235 ($self->{base},$self->{index},$self->{scale})=split(/,/,$3);
607 foreach my $token (split(/,\s*/,$line)) {
724 /\.type/ && do { my ($sym,$type,$narg) = split(',',$$line);
880 my @arr = split(/,\s*/,$$line);
896 /\.byte/ && do { my @str=split(/,\s*/,$$line);
908 /\.comm/ && do { my @str=split(/,\s*/,$$line);
    [all...]
  /external/clang/lib/CodeGen/
SwiftCallingConv.cpp 235 auto split = splitLegalVectorType(CGM, end - begin, vecTy);
236 auto eltTy = split.first;
237 auto numElts = split.second;
317 // If we have a vector type, split it.
330 // If the entry is a vector type, split it and try again.
367 // Split vector entries unless we completely subsume them.
382 auto split = splitLegalVectorType(CGM, Entries[index].getWidth(), vecTy); local
384 auto eltTy = split.first;
386 auto numElts = split.second;
420 // We logically split the layout down into a series of chunks of this size
    [all...]
  /external/libnl/lib/
utils.c 558 * Converts milliseconds to a character string split up in days, hours,
566 uint64_t split[5]; local
576 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit)) msec %= unit
582 split[4] = msec;
584 for (i = 0; i < ARRAY_SIZE(split) && len; i++) {
586 if (split[i] == 0)
589 (buf==buf_orig) ? "" : " ", split[i], units[i]);
  /external/noto-fonts/emoji-compat/
createfont.py 174 codepoints = [hex_str_to_int(x) for x in line.split(';')[0].strip().split(' ')]
281 range_start, range_end = codepoints_range.split('..')
297 line = line.split(';')
334 codepoints = [hex_str_to_int(x) for x in line.split(';')[0].strip().split(' ')]
  /external/selinux/python/sepolicy/
sepolicy.py 247 v1 = int(val1.split(",")[0].split("-")[0])
248 v2 = int(val2.split(",")[0].split("-")[0])
416 writable = get_types(args.source, args.tclass, args.sourceaccess.split(","))
417 readable = get_types(args.target, args.tclass, args.targetaccess.split(","))
  /external/v8/tools/turbolizer/
disassembly-view.js 170 let source_lines = sourceText.split("\n");
172 // Add 1 for newline character that is split off.
213 let nums = p2.split(":");
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
ManagedServicesTest.java 288 mExpectedPrimary.get(approvalLevel).get(userInfo.id).split(":")) {
297 mExpectedSecondary.get(approvalLevel).get(userInfo.id).split(":")) {
604 for (String verifyValue : user0.split(":")) {
679 return new ArrayList<>(Lists.newArrayList(list.split(
700 for (String packageOrComponent : verifyMap.get(userId).split(":")) {
    [all...]
  /frameworks/base/tools/fonts/
fontchain_lint.py 231 langs = langs.split()
367 chars, prop = line.split(';')[:2]
372 sequence = [int(ch, 16) for ch in chars.split(' ')]
375 char_start, char_end = chars.split('..')
400 sequence, description, _ = line.split(';')
401 sequence = sequence.strip().split(' ')
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
LoaderDicom.java 470 String[]pss = pixel_spacing[0].split("\\\\");
471 String[]s1ps = slice_pos[0].split("\\\\");
472 String[]s2ps = slice_pos[1].split("\\\\");
594 String[]pss = pixel_spacing.split("\\\\");
595 String[]s1ps = slice1_pos.split("\\\\");
596 String[]s2ps = slice2_pos.split("\\\\");
  /prebuilts/go/darwin-x86/src/runtime/
mem_linux.go 57 // Don't split the stack as this method may be invoked without a valid G, which
89 // split the VMA (memory mapping) containing v in to three
171 // Don't split the stack as this function may be invoked without a valid G,
  /prebuilts/go/linux-x86/src/runtime/
mem_linux.go 57 // Don't split the stack as this method may be invoked without a valid G, which
89 // split the VMA (memory mapping) containing v in to three
171 // Don't split the stack as this function may be invoked without a valid G,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 549 for (String basename : Splitter.on(',').split(mRelatedTo)) {
576 String[] split = mTopAttrs.split(","); //$NON-NLS-1$ local
577 List<String> topAttributes = new ArrayList<String>(split.length + 1);
579 for (int i = 0, n = split.length; i < n; i++) {
580 topAttributes.add(split[i]);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py 200 Filename = os.path.split(Path.File)[1]
210 DbDir = os.path.split(GlobalData.gDatabasePath)[0]
294 GuidList = Guid.split('-')
312 guidValueList = guidValueString.split(",")
346 guidValueList = guidValueString.split(",")
375 guidValueList = guidValueString.split(",")
782 L1 = os.path.normpath(Path1).split(os.path.normpath('/'))
783 L2 = os.path.normpath(Path2).split(os.path.normpath('/'))
859 # Split the section into sub-sections according to the position of placeholders
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tix.py 126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf))
383 return self.tk.split(x)
435 plist = path.split('.')
476 # Useful func. to split Tcl lists and return as a dict. From Tkinter.py
519 self.tk.split(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tix.py 126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf))
383 return self.tk.split(x)
435 plist = path.split('.')
476 # Useful func. to split Tcl lists and return as a dict. From Tkinter.py
519 self.tk.split(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf))
383 return self.tk.split(x)
435 plist = path.split('.')
476 # Useful func. to split Tcl lists and return as a dict. From Tkinter.py
519 self.tk.split(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 126 for x in self.tk.split(self.tk.call('tix', 'configure')):
130 x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf))
383 return self.tk.split(x)
435 plist = path.split('.')
476 # Useful func. to split Tcl lists and return as a dict. From Tkinter.py
519 self.tk.split(
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
md8475a.py 632 callstat = self.send_query("CALLSTAT? BTS1").split(",")
637 callstat = self.send_query("CALLSTAT? BTS1").split(",")
767 callstat = self.send_query("CALLSTAT?").split(",")
772 callstat = self.send_query("CALLSTAT?").split(",")
794 callstat = self.send_query("CALLSTAT?").split(",")
799 callstat = self.send_query("CALLSTAT?").split(",")
815 sim_model = (self.get_simulation_model()).split(",")
822 "CALLSTAT? BTS{}".format(bts)).split(",")
847 callstat = self.send_query("CALLSTAT? BTS1").split(",")
852 callstat = self.send_query("CALLSTAT? BTS1").split(",")
    [all...]
  /external/python/cpython2/Lib/
urllib.py 534 dirs = path.split('/')
587 [type, data] = url.split(',', 1)
    [all...]
  /external/selinux/python/sepolicy/sepolicy/
generate.py 79 release_version = version + "-" + release.split(".")[0]
80 os_version = release.split(".")[1]
174 for a in ports.split(","):
175 r = a.split("-")
752 newte += re.sub("USER", u.split("_u")[0], temp)
760 name = d.split("_t")[0]
779 role = u.split("_u")[0]
855 role = d.split("_t")[0] + "_r"
    [all...]
  /external/testng/src/main/java/org/testng/
TestNG.java 554 String[] split = splitMethod(m); local
555 String className = split[0];
557 XmlInclude includedMethod = new XmlInclude(split[1]);
659 m_excludedGroups = Utils.split(groups, ",");
669 m_includedGroups = Utils.split(groups, ",");
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urllib.py 528 dirs = path.split('/')
581 [type, data] = url.split(',', 1)
    [all...]

Completed in 2520 milliseconds

<<111112113114115116117118119120>>