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

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/OvmfPkg/
create-release.py 48 gcc_version = map(lambda n: int(n), mo.group(1).split('.'))
70 version = stdout.split(None, 3)[1]
108 ld_version = ld_version.split('\n')[0].split()[-1]
111 iasl_version = filter(lambda s: s.find(' version ') >= 0, iasl_version.split('\n'))[0]
112 iasl_version = iasl_version.split(' version ')[1].strip()
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 202 int split = length/CHARS_MAX; local
205 chunks = split + 1;
207 chunks = split;
337 int split = length/CHARS_MAX; local
340 chunks = split + 1;
342 chunks = split;
  /external/harfbuzz_ng/src/
gen-arabic-table.py 26 fields = [x.strip () for x in line.split (';')]
30 uu = fields[0].split ('..')
50 fields = [x.strip () for x in line.split (';')]
64 short = ''.join(x[0] for x in value.split('_')[2:])
157 fields = [x.strip () for x in line.split (';')]
161 items = fields[5].split (' ')
  /external/icu/icu4c/source/tools/genren/
genren.pl 150 ($_, $address, $type) = split(/\|/);
153 ($address, $type, $_) = split(/ /);
170 @CppName = split(/::/); ## remove scope stuff
180 @CppName = split(/ /, $CppName[1]); ## remove debug stuff
183 @CppName = split(/\(/, $CppName[0]); ## remove function args
213 @funcname = split(/[\(\s+]/);
  /external/libxml2/
genUnicode.py 34 (blockfile, catfile) = string.split(sources)
56 fields = string.split(line, ';')
58 (start, end) = string.split(range, "..")
74 alias = string.split(block,':')
75 alist = string.split(alias[1],',')
111 fields = string.split(line, ';')
  /external/mesa3d/src/amd/common/
sid_tables.py 162 reg = Reg(line.split()[0])
170 split = line.split()
171 field.values.append((split[0], int(split[1], 0)))
174 packets.append(line.split()[0])
  /external/python/cpython2/Lib/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 57 split filing system name (including special field) and drive specifier from rest
123 def split(p): function
125 Split a path in head (everything up to the last '.') and tail (the rest). FS
137 Split a path in root and extension. This assumes the 'using slash for dot and
140 (tail, head)= split(p)
149 Split a pathname into a drive specification (including FS name) and the rest of
161 return split(p)[1]
168 return split(p)[0]
294 fsname= string.split(fsname, '#', 1)[0] # remove special field from fs
335 (path, el)= split(path
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCSectionMachO.cpp 187 std::pair<StringRef, StringRef> Comma = Spec.split(',');
203 // Split the section name off from any attributes if present.
204 Comma = Comma.second.split(',');
222 Comma = Comma.second.split(',');
252 // Otherwise, we do have some attributes. Split off the size specifier if
254 Comma = Comma.second.split(',');
258 std::pair<StringRef, StringRef> Plus = Attrs.split('+');
277 Plus = Plus.second.split('+');
  /frameworks/base/core/java/android/webkit/
WebViewLibraryLoader.java 154 String[] split = TextUtils.split(path, "!/"); local
155 if (split.length == 2) {
156 try (ZipFile z = new ZipFile(split[0])) {
157 ZipEntry e = z.getEntry(split[1]);
164 Log.e(LOGTAG, "error reading APK file " + split[0] + ", ", e);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataCallResponse.java 87 this.addresses = TextUtils.isEmpty(addresses) ? new String[0] : addresses.split(" ");
88 this.dnses = TextUtils.isEmpty(dnses) ? new String[0] : dnses.split(" ");
89 this.gateways = TextUtils.isEmpty(gateways) ? new String[0] : gateways.split(" ");
90 this.pcscf = TextUtils.isEmpty(pcscf) ? new String[0] : pcscf.split(" ");
159 String [] ap = addr.split("/");
232 gateways = sysGateways.split(" ");
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
HermeticMemoryTest.java 100 (mComponentName.split("/").length == 2));
159 String pkgActivitySplit[] = mComponentName.split("/");
188 String line[] = dumpInfo.split("\\n");
190 String dataSplit[] = line[lineCount].trim().split("\\s+");
216 String lineSplit[] = memInfo.split("\\n");
222 String dataSplit[] = line.split("\\s+");
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
UniClassObject.py 242 elif len(Lang.split('-')[0]) == 3:
243 Lang = GetLanguageCode(Lang.split('-')[0], True, ContainerFile)
246 ValueList = Value.split('\n')
328 Lang = distutils.util.split_quoted((Line.split(u"//")[0]))
392 Name = Item.split()[1]
400 LanguageList = Item.split(u'#language ')
405 Language = LanguageList[IndexI].split()[0]
570 if Line.startswith(u'#language') and len(Line.split()) == 2:
618 if StrName and not StrName.split()[1].startswith(DT.TAB_STR_TOKENCNAME + DT.TAB_UNDERLINE_SPLIT):
620 Message=ST.ERR_UNIPARSE_STRNAME_FORMAT_ERROR % StrName.split()[1], \
    [all...]
  /cts/hostsidetests/services/activityandwindowmanager/windowmanager/src/android/server/cts/
CrossAppDragAndDropTests.java 105 "am supports-split-screen-multi-window";
238 for (String line : logs.split("\\n")) {
276 for (String line : output.split("\\n")) {
294 final String[] sections = taskInfo.split("\\[");
309 for (String word : taskInfo.split("\\s+")) {
311 final String withColon = word.split("=")[1];
320 final String[] sizes = output.split(" ")[2].split("x");
334 final String[] parts = string.split("[,|\\]]");
353 for (String line : logs.split("\\n"))
356 final String[] split = payload.split("="); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 890 // TextUtils.split call would also fail. Return null.
893 final String[] split = TextUtils.split(inString, SPLITTER_REGEX); local
894 if (split.length < 20) {
895 LogUtils.e(LOG_TAG, "split.length %d", split.length);
900 f.folderUri = new FolderUri(Folder.getValidUri(split[index++]));
901 f.name = split[index++];
902 f.hasChildren = Integer.parseInt(split[index++]) != 0;
903 f.capabilities = Integer.parseInt(split[index++])
    [all...]
  /cts/hostsidetests/dumpsys/src/android/dumpsys/cts/
ProcessStatsDumpsysTest.java 81 final String[] values = line.split(",");
184 String[] subparts = parts[i].split(":");
223 String[] subparts = parts[i].split(":");
244 String[] subparts = parts[i].split(":");
264 String[] subparts = pssStr.split(":");
275 String[] subparts = parts[i].split(":");
288 String[] subparts = parts[i].split(":");
306 String[] subparts = pssStr.split(":");
314 String[] subparts = parts[i].split(":");
410 final String[] lines = procstats.split("\n")
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MigrationUtilities.py 35 Common.Usage = XmlAttribute(XmlCommon, XmlTag).split()
41 Common.SupArchList = XmlAttribute(XmlCommon, XmlTag).split()
194 GuidProtocolPpiCommon.GuidTypeList = GuidTypes.split()
198 GuidProtocolPpiCommon.SupModuleList = SupModules.split()
240 Pcd.ValidUsage = XmlElement(XmlPcd, XmlTag).split()
243 Pcd.SupModuleList = XmlAttribute(XmlPcd, XmlTag).split()
281 LibraryClass.SupModuleList = SupModules.split()
304 BuildOption.BuildTargetList = XmlAttribute(XmlBuildOption, XmlTag).split()
316 BuildOption.SupArchList = XmlAttribute(XmlBuildOption, XmlTag).split()
483 Line = Line.split("#", 1)[0]
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
critical.go 14 // need to split critical edges on newly constructed blocks
42 // split input edges coming from multi-output blocks.
56 // find or record the block that we used to split
66 f.Config.Warnl(p.Line, "split critical edge")
77 f.Config.Warnl(p.Line, "split critical edge")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
critical.go 14 // need to split critical edges on newly constructed blocks
42 // split input edges coming from multi-output blocks.
56 // find or record the block that we used to split
66 f.Config.Warnl(p.Line, "split critical edge")
77 f.Config.Warnl(p.Line, "split critical edge")
  /external/libpng/scripts/
options.awk 572 split("", list) # clear 'list'
575 split(requires[opt] iffs[opt] enabledby[opt], r)
600 nreqs = split(requires[opt], r)
615 nreqs = split(enabledby[opt], r)
639 nreqs = split(tree[i], r)
676 nreqs = split(requires[i], r)
691 nreqs = split(iffs[i], r)
718 nreqs = split(enabledby[i], r)
760 nreqs = split(sets[i], r)
796 nreqs = split(tree[i], r
    [all...]
  /test/vts/testcases/template/binary_test/
binary_test.py 103 tag, path = token.split(self.TAG_DELIMITER)
112 split = token.find(self.TAG_DELIMITER)
113 if split >= 0:
114 tag, arg = token[:split], token[
115 split + len(self.TAG_DELIMITER):]
127 split = token.find(self.TAG_DELIMITER)
128 if split >= 0:
129 tag, arg = token[:split], token[
130 split + len(self.TAG_DELIMITER):]
147 tag, path = token.split(self.TAG_DELIMITER
    [all...]

Completed in 1934 milliseconds

<<21222324252627282930>>