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

<<111112113114115116117118119120>>

  /external/python/cpython2/Lib/
rfc822.py 405 for line in text.split("\n"):
435 for line in text.split("\n"):
862 data = data.split()
872 stuff = data[0].split('-')
904 tm = tm.split(':')
    [all...]
  /external/selinux/python/sepolicy/sepolicy/
manpage.py 87 users_range[d['name'].split("_")[0]] = d['range']
146 return " ".join(f[:-len(trim)].split("_"))
161 if j.split("/")[-1][0] == i:
162 temp.append(j.split("/")[-1])
791 """ % {'domainname': self.domainname, 'equiv': e, 'alt': e.split('/')[-1]})
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterEmitter.cpp 766 std::pair<StringRef, StringRef> ASM = AsmString.split(' ');
770 ASM = ASM.second.split(' ');
778 std::pair<StringRef, StringRef> ASM = AsmString.split('\t');
786 ASM = Str.split(' ');
790 ASM = ASM.second.split(' ');
    [all...]
  /external/v8/tools/release/
common_includes.py 99 # Use split not splitlines to keep terminal newlines.
100 return "\n".join(filter(lambda x: not x.startswith("#"), text.split("\n")))
148 for bug in ref.group(1).split(","):
180 version_keys = map(int, version.split("."))
685 latest_version = ".".join(latest_version.split(".")[:3])
714 version_parts = version.split(".")
  /frameworks/base/core/tests/coretests/src/android/database/
NewDatabasePerformanceTests.java 945 String[] split = line.split(":"); local
946 if (split.length == 2) {
948 String key = split[0].trim();
949 Long value = Long.valueOf(split[1].trim());
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 208 String[] traceCategoriesSplit = traceCategoriesStr.split(DELIMITER);
406 String appNames[] = appList.split("\\|");
408 String[] parts = pair.split("\\^");
420 for (String accountType : requiredAccounts.split(",")) {
669 String launchSplit[] = line.split(":");
  /packages/services/Car/tools/bootanalyze/
bootanalyze.py 80 items = args.componentmonitor.split(",")
82 kv = item.split("=")
526 words = line.split()
697 items = match.group(1).split(",")
699 entry_pair = item.split(":")
  /prebuilts/gdb/darwin-x86/lib/python2.7/
rfc822.py 400 for line in text.split("\n"):
430 for line in text.split("\n"):
857 data = data.split()
867 stuff = data[0].split('-')
899 tm = tm.split(':')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
rfc822.py 400 for line in text.split("\n"):
430 for line in text.split("\n"):
857 data = data.split()
867 stuff = data[0].split('-')
899 tm = tm.split(':')
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
generator.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py 400 for line in text.split("\n"):
430 for line in text.split("\n"):
857 data = data.split()
867 stuff = data[0].split('-')
899 tm = tm.split(':')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py 400 for line in text.split("\n"):
430 for line in text.split("\n"):
857 data = data.split()
867 stuff = data[0].split('-')
899 tm = tm.split(':')
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
monsoon.py 470 lines = data_str.strip().split('\n')
489 hz_str = lines[4].split()[4]
491 voltage_str = lines[2].split()[1]
498 timestamp, value = l.split(' ')
538 data_strs = f.read().split(MonsoonData.delimiter)
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 726 rtc::split(mline, kSdpDelimiterSpace, &fields);
    [all...]
  /art/tools/
cpplint.py 612 for filt in filters.split(','):
631 category = category.split('/')[0]
827 def Split(self):
830 For 'chrome/browser/browser.cc', Split() would
838 project, rest = os.path.split(googlename)
843 return self.Split()[1]
847 return self.Split()[2]
851 return '/'.join(self.Split()[0:2])
    [all...]
  /build/make/tools/releasetools/
check_target_files_signatures 96 for line in out.split("\n"):
211 for line in manifest.split("\n"):
405 OPTIONS.local_cert_dirs = [i.strip() for i in a.split(",")]
check_target_files_signatures.py 96 for line in out.split("\n"):
211 for line in manifest.split("\n"):
405 OPTIONS.local_cert_dirs = [i.strip() for i in a.split(",")]
  /cts/tests/jdwp/runner/host-side/src/com/android/compatibility/testtype/
DalvikTest.java 352 String[] parts = line.split(":", 2);
377 String[] parts = name.split("#");
470 public Collection<IRemoteTest> split() { method in class:DalvikTest
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
AppRestrictionEnforcerFragment.java 262 TextUtils.split(prefs.getString(RESTRICTION_KEY_APPROVALS,
269 for (String itemString : TextUtils.split(itemsString, DELIMETER)) {
270 String[] strings = itemString.split(SEPARATOR, 2);
  /developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
AppRestrictionEnforcerFragment.java 262 TextUtils.split(prefs.getString(RESTRICTION_KEY_APPROVALS,
269 for (String itemString : TextUtils.split(itemsString, DELIMETER)) {
270 String[] strings = itemString.split(SEPARATOR, 2);
  /development/apps/Development/src/com/android/development/
AccountsTester.java 218 String[] requiredFeatures = TextUtils.split(featureString, " ");
330 String[] features = TextUtils.split(authTokenType, ",");
368 TextUtils.isEmpty(features) ? null : features.split(" "),
  /development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
AppRestrictionEnforcerFragment.java 262 TextUtils.split(prefs.getString(RESTRICTION_KEY_APPROVALS,
269 for (String itemString : TextUtils.split(itemsString, DELIMETER)) {
270 String[] strings = itemString.split(SEPARATOR, 2);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
expatreader.py 323 pair = name.split()
336 parts = aname.split()
357 pair = name.split()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
message.py 29 # Split header parameters. BAW: this may be too simple. It isn't
465 return ctype.split('/')[0]
474 return ctype.split('/')[1]
504 name, val = p.split('=', 1)
519 split on the `=' sign. The left hand side of the `=' is the key,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimify.py 117 match = ' '.join(match.split('_'))
213 d, f = os.path.split(infile)
421 d, f = os.path.split(infile)

Completed in 1717 milliseconds

<<111112113114115116117118119120>>