Home
last modified time | relevance | path

Searched refs:part (Results 1 – 25 of 196) sorted by relevance

12345678

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dgprof2html.py70 for part in re.findall(r"(\w+(?:\.c)?|\W+)", line):
71 if part in labels:
72 part = '<a href="#call:%s">%s</a>' % (part, part)
73 output.write(part)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dgenerator.py200 for part in subparts:
203 g.flatten(part, unixfrom=False)
251 for part in msg.get_payload():
254 g.flatten(part, unixfrom=False)
324 for part in msg.walk():
325 maintype = part.get_content_maintype()
327 print >> self, part.get_payload(decode=True)
333 'type' : part.get_content_type(),
334 'maintype' : part.get_content_maintype(),
335 'subtype' : part.get_content_subtype(),
[all …]
Dheader.py453 for part in cre.split(line):
455 partlen = len(part)
461 this.append(part)
470 subl = _split_ascii(part, maxlen, restlen,
475 this = [part]
479 this.append(part)
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Ddisklabel.h51 #define DISKMINOR(unit, part) \ argument
52 (((unit) * OLDMAXPARTITIONS) + ((part) % OLDMAXPARTITIONS) + \
53 ((part) / OLDMAXPARTITIONS) * (__I386_MAXDISKS * OLDMAXPARTITIONS))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DCGIHTTPServer.py318 for part in path.split('/'):
319 if part == '.':
322 path_parts.append(part)
324 path_parts = [part for part in path_parts[:-1] if part] + path_parts[-1:]
330 for part in path_parts:
331 if part == '..':
334 head_parts.append(part)
Dargparse.py286 return ''.join([part
287 for part in part_strings
288 if part and part is not SUPPRESS])
341 for part in parts:
342 if line_len + 1 + len(part) > text_width:
346 line.append(part)
347 line_len += len(part) + 1
426 part = self._format_args(action, action.dest)
430 if part[0] == '[' and part[-1] == ']':
431 part = part[1:-1]
[all …]
Durllib2.py1254 part = ''
1259 part += cur
1268 part += cur
1272 res.append(part)
1273 part = ''
1279 part += cur
1282 if part:
1283 res.append(part)
1285 return [part.strip() for part in res]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_normalization.py40 part = None
54 part = line.split()[0]
61 if part == "@Part1":
83 if part == "@Part1":
Dtest__locale.py13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
Dtest_imaplib.py76 part = self.rfile.read(1)
77 if part == '':
80 line += part
Dtest_functools.py24 def signature(part): argument
26 return (part.func, part.args, part.keywords, part.__dict__)
/device/linaro/bootloader/arm-trusted-firmware/docs/
Dtrusted-board-boot.md64 The private part of this key is used to sign the BL2 content certificate and
65 the trusted key certificate. The public part is the ROTPK.
69 The private part is used to sign the key certificates corresponding to the
70 secure world images (BL3-0, BL3-1 and BL3-2). The public part is stored in
75 The private part is used to sign the key certificate corresponding to the
76 non secure world image (BL3-3). The public part is stored in one of the
81 For each of BL3-0, BL3-1, BL3-2 and BL3-3, the private part is used to sign
82 the content certificate for the BL3-X image. The public part is stored in
98 It is self-signed with the private part of the ROT key. It contains a hash
103 It is self-signed with the private part of the ROT key. It contains the
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/
Dmsg_33.txt21 part 1
27 part 2
Dmsg_23.txt7 A message part
Dmsg_17.txt12 [Non-text (image/gif) part of message omitted, filename dingusfish.gif]
Dmsg_34.txt9 This is a text plain part that is counter to recommended practice in
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
DFaultTolerantWriteSmmDxe.uni2 // This module is the Runtime DXE part corresponding to SMM Fault Tolerant Write (FTW) module.
21 #string STR_MODULE_ABSTRACT #language en-US "The Runtime DXE part corresponding to the …
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
DVariableSmmRuntimeDxe.uni2 // This module is the Runtime DXE part correspond to SMM variable module.
25 #string STR_MODULE_ABSTRACT #language en-US "The Runtime DXE part corresponding to the …
DVariableSmmRuntimeDxe.inf2 # Runtime DXE part corresponding to SMM authenticated variable module.
11 # The whole SMM authentication variable design relies on the integrity of flash part and SMM.
/device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Ia32/
DFspHelper.s43 # No stack counter part of AsmGetFspBaseAddress. Return address is in edi.
65 # No stack counter part of AsmGetFspInfoHeader. Return address is in edi.
DFspHelper.asm43 ; No stack counter part of AsmGetFspBaseAddress. Return address is in edi.
65 ; No stack counter part of AsmGetFspInfoHeader. Return address is in edi.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dargparse.py288 return ''.join([part
289 for part in part_strings
290 if part and part is not SUPPRESS])
343 for part in parts:
344 if line_len + 1 + len(part) > text_width and line:
348 line.append(part)
349 line_len += len(part) + 1
428 part = self._format_args(action, action.dest)
432 if part[0] == '[' and part[-1] == ']':
433 part = part[1:-1]
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
DREADME.NetBSD3 This is a modified version of part of John Hauser's SoftFloat 2a package.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
Dscantools.py645 for part in parts:
646 arg = self.extractarg(part)
650 def extractarg(self, part): argument
652 part = part.strip()
653 match = self.asplit.match(part)
655 self.error("Indecipherable argument: %r", part)
656 return ("unknown", part, mode)
/device/google/marlin/sepolicy/
Dqtimeservice.te17 # as part of the fix

12345678