HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 551 - 575 of 4729) sorted by null

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
newslist.py 109 rcsrev = ' '.join(filter(lambda s: '$' not in s, rcsrev.split()))
123 parts = i.split('.')
221 bits = l.split()
291 grpname = i[0].split()[0]
310 grpname = i.split()[0]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_peepholer.py 184 self.assertEqual(asm.split().count('RETURN_VALUE'), 1)
193 self.assertEqual(asm.split().count('RETURN_VALUE'), 2)
209 self.assertEqual(asm.split().count('RETURN_VALUE'), 6)
219 self.assertEqual(asm.split().count('JUMP_ABSOLUTE'), 1)
220 self.assertEqual(asm.split().count('RETURN_VALUE'), 2)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
EdkIIWorkspace.py 177 # @param KeySplitCharacter: Key split char, between key name and key value. Key1 = Value1, '=' is the key split char
178 # @param ValueSplitFlag: Value split flag, be used to decide if has multiple values
179 # @param ValueSplitCharacter: Value split char, be used to split multiple values. Key1 = Value1|Value2, '|' is the value split char
195 # @param KeySplitCharacter: Key split char, between key name and key value. Key1 = Value1, '=' is the key split char
196 # @param ValueSplitFlag: Value split flag, be used to decide if has multiple values
197 # @param ValueSplitCharacter: Value split char, be used to split multiple values. Key1 = Value1|Value2, '|' is the value split char
    [all...]
  /external/autotest/client/cros/
backchannel.py 78 self.gateway, self.interface = line.strip().split(' ')
88 open_ssh = list(set(item.strip().split(':')[0] for item in
89 out.split('\n') if item.strip()))
181 key, value = line.split('=', 1)
205 return self._run(cmd).stdout.split('\n')[0]
  /external/autotest/client/site_tests/graphics_GLBench/
graphics_GLBench.py 205 keyval, remainder = line[9:].split('[')
206 key, val = keyval.split('=')
208 score, unit = val.split()
210 imagefile = remainder.split(']')[0]
239 glerror = imagefile.split('=')[1]
  /external/autotest/client/site_tests/network_EthCaps/
network_EthCaps.py 67 (keyname, value) = cap_str.split(': ')
68 caps[keyname].extend(value.split())
73 caps[prev_keyname].extend(cap_str.split())
187 (status_reg, status_values) = ln.strip().split(":")
188 status_dict[status_reg] = status_values.split()
  /external/autotest/server/site_tests/firmware_Cr50ConsoleCommands/
firmware_Cr50ConsoleCommands.py 67 """Split the output with the given delimeter and remove empty strings"""
68 output = output.split(split_str) if split_str else output.split()
72 line = ' '.join(line.strip().split())
145 extra.extend(output.split('\n'))
168 version = self.cr50.get_version().split('.')[1]
  /external/capstone/suite/
test_mc.py 29 items = text.split()
58 lines = output.split('\n')
77 # skip '# ' at the front, then split line to get out hexcode
80 #print lines[0][2:].split(', ')
81 (arch, mode, option) = lines[0][2:].split(', ')
171 code = line.split(' = ')[0]
172 asm = ''.join(line.split(' = ')[1:])
  /external/clang/utils/
CmpDriver 99 for ln in err.split('\n'):
143 diff = ZipperDiff(infoA.stdout.split('\n'),
144 infoB.stdout.split('\n'))
163 diff = ZipperDiff(infoA.stderr.split('\n'),
164 infoB.stderr.split('\n'))
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/
ASTHelper.java 89 String[] split = qualifiedName.split("\\."); local
90 NameExpr ret = new NameExpr(split[0]);
91 for (int i = 1; i < split.length; i++) {
92 ret = new QualifiedNameExpr(ret, split[i]);
  /external/jcommander/src/test/java/com/beust/jcommander/
ParametersDelegateTest.java 109 cmd.parse("--anon-float 1.2 -d 234 --list a --list b -a".split(" "));
138 cmd.parse("command -a a".split(" "));
158 cmd.parse("command main params".split(" "));
196 cmd.parse("-a value".split(" "));
221 cmd.parse("command main params".split(" "));
  /external/mdnsresponder/mDNSPosix/
parselog.py 88 time = line.split(' ')[0].split(':')
96 ip = line.split(' ',1)
110 qaList = spaceExp.split(line)
175 outFile = "%s.pdf" % (".".join(inFile.split('.')[:-1]))
  /external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
nist2h.py 35 key, value = line.strip('][').split('=')
67 key, value = line.split('=')
77 mode = lines[1].split(' ')[1]
94 # Split hex string into 32-bit words.
124 for fname in input_files.split(','):
177 for input_file in args.input_files.split(','):
  /external/python/cpython2/Lib/idlelib/
FormatParagraph.py 83 lineno, col = map(int, mark.split("."))
116 lines = data.split("\n")
132 words = re.split("(\s+)", lines[i])
155 data = "\n".join(line[lc:] for line in data.split("\n"))
160 # re-split and re-insert the comment header.
161 newdata = newdata.split("\n")
  /external/python/cpython2/Lib/test/
test_peepholer.py 185 self.assertEqual(asm.split().count('RETURN_VALUE'), 1)
194 self.assertEqual(asm.split().count('RETURN_VALUE'), 2)
210 self.assertEqual(asm.split().count('RETURN_VALUE'), 6)
220 self.assertEqual(asm.split().count('JUMP_ABSOLUTE'), 1)
221 self.assertEqual(asm.split().count('RETURN_VALUE'), 2)
  /external/python/cpython2/Tools/scripts/
patchcheck.py 48 cmd = "git rev-parse --abbrev-ref HEAD".split()
60 cmd = "git remote get-url upstream".split()
100 st = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
104 status_text, filename = line.split(None, 1)
111 filename = filename.split(' -> ', 2)[1].strip()
  /external/python/cpython3/Lib/idlelib/
calltip_w.py 37 curline = int(self.anchor_widget.index("insert").split('.')[0])
52 curline = int(self.anchor_widget.index("insert").split('.')[0])
74 int, self.anchor_widget.index(parenleft).split("."))
98 curline, curcol = map(int, self.anchor_widget.index("insert").split('.'))
177 x, y = map(int, parent.geometry().split('+')[1:])
181 text.insert("insert", "string.split")
paragraph.py 82 lineno, col = map(int, mark.split("."))
115 lines = data.split("\n")
131 words = re.split(r"(\s+)", lines[i])
154 data = "\n".join(line[lc:] for line in data.split("\n"))
159 # re-split and re-insert the comment header.
160 newdata = newdata.split("\n")
  /external/python/setuptools/setuptools/
wheel.py 65 return itertools.product(self.py_version.split('.'),
66 self.abi.split('.'),
67 self.platform.split('.'))
157 namespace_packages = fp.read().split()
159 mod_dir = os.path.join(destination_eggdir, *mod.split('.'))
  /external/scapy/scapy/asn1/
mib.py 48 xl = x.strip(".").split(".")
121 mib_register(k, conf.mib[k].split("."), the_mib, unresolved)
129 cleantext = " ".join(_mib_re_strings.split(" ".join(_mib_re_comments.split(text))))
134 oid = oid.split()
  /external/toolchain-utils/
setup_chromeos.py 64 v, m = version.split('.', 1)
183 version, manifest = version.split('.', 1)
195 version, manifest = version.split('.', 1)
204 version, manifest = version.split('.', 1)
214 version, manifest = version.split('.', 1)
  /external/webrtc/webrtc/modules/video_coding/utility/
vp8_header_parser.cc 80 const uint8_t split = (range * prob) >> 8; local
83 if (value > split) {
84 range -= split + 1;
85 br->value_ -= static_cast<uint32_t>(split + 1) << pos;
88 range = split;
  /external/yapf/yapf/yapflib/
yapf_api.py 93 lines = reformatted_source.rstrip('\n').split('\n')
210 res.extend(uwline.Split())
259 line.split('\n')[0].strip(), re.IGNORECASE) or
261 line.split('\n')[-1].strip(), re.IGNORECASE))
266 line.split('\n')[0].strip(), re.IGNORECASE) or
268 line.split('\n')[-1].strip(), re.IGNORECASE))
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
VectorAverage.java 152 String[] lines = string.split(System.getProperty("line.separator"));
162 String[] separated = lines[nIndex].split("=");
174 String[] separated = lines[nIndex].split("=");
  /cts/hostsidetests/backup/src/android/cts/backup/
SuccessNotificationHostSideTest.java 185 new ArrayList<>(Arrays.asList(mOriginalBackupManagerConstants.split(",")));
189 final String[] fields = keyValuePair.split("=");
195 final String[] values = fields[1].split(":");

Completed in 1379 milliseconds

<<21222324252627282930>>