/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_execfile.py | 11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node, 44 compile_args = open_expr + [Comma(), filename_arg, Comma(), exec_str] 49 args.extend([Comma(), globals.clone()]) 51 args.extend([Comma(), locals.clone()])
|
D | fix_exec.py | 15 from ..fixer_util import Comma, Name, Call 36 args.extend([Comma(), b.clone()]) 38 args.extend([Comma(), c.clone()])
|
D | fix_print.py | 21 from ..fixer_util import Name, Call, Comma, String, is_tuple 55 if args and args[-1] == Comma(): 85 l_nodes.append(Comma())
|
D | fix_apply.py | 12 from ..fixer_util import Call, Comma, parenthesize 52 l_newargs.extend([Comma(),
|
D | fix_exitfunc.py | 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms 61 names.append_child(Comma())
|
D | fix_urllib.py | 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline, 89 names.extend([Name(name[0], prefix=pref), Comma()]) 153 names.append(Comma())
|
D | fix_idioms.py | 32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms 105 test = Call(Name(u"isinstance"), [x, Comma(), T])
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/ |
D | PrintLib.c | 118 BOOLEAN Comma; in BasePrintLibVSPrint() local 184 Comma = FALSE; in BasePrintLibVSPrint() 303 Comma = TRUE; in BasePrintLibVSPrint() 307 if (Comma) { in BasePrintLibVSPrint() 318 Comma = FALSE; in BasePrintLibVSPrint() 336 if (Comma && Count != 0) { in BasePrintLibVSPrint() 534 if (Comma) { in BasePrintLibVSPrint()
|
/device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/ |
D | PrintLibInternal.c | 340 BOOLEAN Comma; in BasePrintLibSPrintMarker() local 433 Comma = FALSE; in BasePrintLibSPrintMarker() 587 Comma = TRUE; in BasePrintLibSPrintMarker() 591 if (Comma) { in BasePrintLibSPrintMarker() 612 Comma = FALSE; in BasePrintLibSPrintMarker() 638 if (Comma && Count != 0) { in BasePrintLibSPrintMarker() 933 if (Comma) { in BasePrintLibSPrintMarker()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/ |
D | PrintLib.c | 1224 BOOLEAN Comma; in InternalPrintLibSPrintMarker() local 1317 Comma = FALSE; in InternalPrintLibSPrintMarker() 1471 Comma = TRUE; in InternalPrintLibSPrintMarker() 1475 if (Comma) { in InternalPrintLibSPrintMarker() 1496 Comma = FALSE; in InternalPrintLibSPrintMarker() 1522 if (Comma && Count != 0) { in InternalPrintLibSPrintMarker() 1817 if (Comma) { in InternalPrintLibSPrintMarker()
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/ |
D | Map.c | 705 CHAR16 *Comma; in PerformMappingDisplay2() local 713 Comma = StrStr(TypeWalker, L","); in PerformMappingDisplay2() 714 if (Comma == NULL) { in PerformMappingDisplay2() 722 *Comma = CHAR_NULL; in PerformMappingDisplay2() 728 *Comma = L','; in PerformMappingDisplay2() 729 TypeWalker = Comma + 1; in PerformMappingDisplay2()
|
/device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/ |
D | QemuBootOrderLib.c | 601 CHAR8 *Comma; in TranslatePciOfwNodes() local 629 Comma = ScanMem8 (OfwNode[0].UnitAddress.Ptr, OfwNode[0].UnitAddress.Len, in TranslatePciOfwNodes() 631 if (Comma != NULL) { in TranslatePciOfwNodes() 638 PciRootSerialSubString.Ptr = Comma + 1; in TranslatePciOfwNodes()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/ |
D | test_util.py | 12 from lib2to3.fixer_util import Attr, Name, Call, Comma 88 children.append(Comma())
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | fixer_util.py | 46 def Comma(): function
|