/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | gprof2html.py | 70 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/ |
D | generator.py | 200 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 …]
|
D | header.py | 453 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/ |
D | disklabel.h | 51 #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/ |
D | CGIHTTPServer.py | 318 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)
|
D | argparse.py | 286 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 …]
|
D | urllib2.py | 1254 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/ |
D | test_normalization.py | 40 part = None 54 part = line.split()[0] 61 if part == "@Part1": 83 if part == "@Part1":
|
D | test__locale.py | 13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
|
D | test_imaplib.py | 76 part = self.rfile.read(1) 77 if part == '': 80 line += part
|
D | test_functools.py | 24 def signature(part): argument 26 return (part.func, part.args, part.keywords, part.__dict__)
|
/device/linaro/bootloader/arm-trusted-firmware/docs/ |
D | trusted-board-boot.md | 64 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/ |
D | msg_33.txt | 21 part 1 27 part 2
|
D | msg_23.txt | 7 A message part
|
D | msg_17.txt | 12 [Non-text (image/gif) part of message omitted, filename dingusfish.gif]
|
D | msg_34.txt | 9 This is a text plain part that is counter to recommended practice in
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/ |
D | FaultTolerantWriteSmmDxe.uni | 2 // 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/ |
D | VariableSmmRuntimeDxe.uni | 2 // 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 …
|
D | VariableSmmRuntimeDxe.inf | 2 # 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/ |
D | FspHelper.s | 43 # No stack counter part of AsmGetFspBaseAddress. Return address is in edi. 65 # No stack counter part of AsmGetFspInfoHeader. Return address is in edi.
|
D | FspHelper.asm | 43 ; 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/ |
D | argparse.py | 288 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/ |
D | README.NetBSD | 3 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/ |
D | scantools.py | 645 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/ |
D | qtimeservice.te | 17 # as part of the fix
|