/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_pep292.py | 6 from string import Template 25 s = Template('$who likes to eat a bag of $what worth $$100') 31 s = Template('$who likes ${what} for ${meal}') 39 s = Template('$who likes to eat a bag of $$what worth $$100') 42 s = Template('$who likes $$') 47 s = Template('%(foo)s $foo ${foo}') 54 s = Template('tim has eaten $count bags of ham today') 58 s = Template('tim has eaten ${count} bags of ham today') 63 s = Template('$who ate ${meal}') 70 s = Template('$who likes ${what} for ${meal}') [all …]
|
D | test_pipes.py | 21 t = pipes.Template() 32 t = pipes.Template() 41 t = pipes.Template() 53 t=pipes.Template() 63 t=pipes.Template() 70 t = pipes.Template() 91 t = pipes.Template() 98 t = pipes.Template() 107 t = pipes.Template() 114 t = pipes.Template() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | toaiff.py | 23 t = pipes.Template() 33 t = pipes.Template() 37 t = pipes.Template() 41 t = pipes.Template() 45 t = pipes.Template() 49 t = pipes.Template() 53 t = pipes.Template() 57 uncompress = pipes.Template()
|
D | pipes.py | 82 class Template: class 101 t = Template()
|
D | string.py | 124 class Template: class
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/ |
D | CmdTemplate.c | 44 GLOBAL_REMOVE_IF_UNREFERENCED const EBL_COMMAND_TABLE mCmd%CommandName%Template[] = 63 …EblAddCommands (mCmd%CommandName%Template, sizeof (mCmd%CommandName%Template)/sizeof (EBL_COMMAND_…
|
/device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/ |
D | SmbiosLib.c | 43 IN SMBIOS_TEMPLATE_ENTRY *Template in SmbiosLibInitializeFromTemplate() argument 49 if (Template == NULL) { in SmbiosLibInitializeFromTemplate() 55 for (Index = 0; Template[Index].Entry != NULL; Index++) { in SmbiosLibInitializeFromTemplate() 56 Status = SmbiosLibCreateEntry (Template[Index].Entry, Template[Index].StringArray); in SmbiosLibInitializeFromTemplate()
|
/device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/ |
D | Qemu.c | 330 STATIC CONST SYSTEM_STATE_PACKAGE Template = { in GetSuspendStates() local 352 *SuspendToRamSize = sizeof Template; in GetSuspendStates() 353 CopyMem (SuspendToRam, &Template, sizeof Template); in GetSuspendStates() 357 *SuspendToDiskSize = sizeof Template; in GetSuspendStates() 358 CopyMem (SuspendToDisk, &Template, sizeof Template); in GetSuspendStates()
|
/device/linaro/bootloader/edk2/EmulatorPkg/CpuRuntimeDxe/ |
D | Cpu.c | 168 IN EFI_SMBIOS_TABLE_HEADER *Template, in LogSmbiosData() argument 190 Size = Template->Length; in LogSmbiosData() 212 CopyMem (Record, Template, Template->Length); in LogSmbiosData()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/ |
D | gencjkcodecs.py | 15 TEMPLATE = string.Template("""\
|
/device/linaro/bootloader/edk2/ShellPkg/Application/Shell/ |
D | FileHandleWrappers.h | 88 IN CONST EFI_FILE_PROTOCOL *Template,
|
/device/linaro/bootloader/edk2/EmulatorPkg/Include/Library/ |
D | SmbiosLib.h | 60 IN SMBIOS_TEMPLATE_ENTRY *Template
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/PlatformSmbiosDxe/ |
D | PlatformSmbiosDxe.c | 539 IN EFI_SMBIOS_TABLE_HEADER *Template, in LogSmbiosData() argument 553 Size = Template->Length; in LogSmbiosData() 576 CopyMem (Record, Template, Template->Length); in LogSmbiosData()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/ |
D | EbcSupport.c | 41 IN UINT8 Template, 731 IN UINT8 Template, in WriteBundle() argument 751 if ((Template &~0x1F) != 0) { in WriteBundle() 762 Low64 = Low64 | LShiftU64 (Slot0, 5) | Template; in WriteBundle()
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/IA32/ |
D | InterruptTable.S | 2 # Interrupt Redirection Template
|
D | InterruptTable.asm | 2 ; Interrupt Redirection Template
|
D | InterruptTable.nasm | 2 ; Interrupt Redirection Template
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
D | BuildEngine.py | 278 File = string.Template(str(File)).safe_substitute(BuildRulePlaceholderDict) 279 File = string.Template(str(File)).safe_substitute(BuildRulePlaceholderDict) 311 CommandString = string.Template(CommandString).safe_substitute(Macros) 312 CommandString = string.Template(CommandString).safe_substitute(Macros)
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/ |
D | InterruptTable.S | 2 # Interrupt Redirection Template
|
D | InterruptTable.asm | 2 ; Interrupt Redirection Template
|
D | InterruptTable.nasm | 2 ; Interrupt Redirection Template
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | Misc.py | 945 def __init__(self, Template=None): argument 948 self._Template = Template 949 self._TemplateSectionList = self._Parse(Template) 962 def _Parse(self, Template): argument 968 while Template: 969 MatchObj = gPlaceholderPattern.search(Template, SearchFrom) 971 if MatchEnd <= len(Template): 972 … TemplateSection = TemplateString.Section(Template[SectionStart:], PlaceHolderList) 982 … TemplateSection = TemplateString.Section(Template[SectionStart:MatchStart], PlaceHolderList) 987 … TemplateSection = TemplateString.Section(Template[SectionStart:MatchStart], PlaceHolderList)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | INDEX | 19 zlib.pc.in Template for pkg-config descriptor
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Pv660AcpiTables/ |
D | Iort.asl | 6 * Template for [IORT] ACPI Table (static data table)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | string.py | 124 class Template: class
|