Home
last modified time | relevance | path

Searched refs:Comma (Results 1 – 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_execfile.py11 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()])
Dfix_exec.py15 from ..fixer_util import Comma, Name, Call
36 args.extend([Comma(), b.clone()])
38 args.extend([Comma(), c.clone()])
Dfix_print.py21 from ..fixer_util import Name, Call, Comma, String, is_tuple
55 if args and args[-1] == Comma():
85 l_nodes.append(Comma())
Dfix_apply.py12 from ..fixer_util import Call, Comma, parenthesize
52 l_newargs.extend([Comma(),
Dfix_exitfunc.py8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
61 names.append_child(Comma())
Dfix_urllib.py10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
89 names.extend([Name(name[0], prefix=pref), Comma()])
153 names.append(Comma())
Dfix_idioms.py32 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/
DPrintLib.c118 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/
DPrintLibInternal.c340 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/
DPrintLib.c1224 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/
DMap.c705 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/
DQemuBootOrderLib.c601 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/
Dtest_util.py12 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/
Dfixer_util.py46 def Comma(): function