Home
last modified time | relevance | path

Searched refs:trailer (Results 1 – 21 of 21) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_execfile.py36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
Dfix_tuple_params.py161 trailer = [Subscript(Number(unicode(i)))]
163 map_to_index(obj, trailer, d=d)
165 d[obj] = prefix + trailer
Dfix_intern.py40 [pytree.Node(syms.trailer,
Dfix_dict.py69 args = head + [pytree.Node(syms.trailer,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dmakefreeze.py12 trailer = """\ variable
70 outfp.write(trailer)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dgprof2html.py16 trailer = """\ variable
74 output.write(trailer)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgraminit.h69 #define trailer 322 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h69 #define trailer 322 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py79 trailer = 322 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Dfixer_util.py44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
81 return Node(syms.trailer, [Leaf(token.LBRACE, u"["),
382 _block_syms = set([syms.funcdef, syms.classdef, syms.trailer])
DGrammar.txt124 power: atom trailer* ['**' factor]
133 trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar102 power: atom trailer* ['**' factor]
111 trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsymtable.c482 const char* trailer; in check_unoptimized() local
488 trailer = (ste->ste_child_free ? in check_unoptimized()
500 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
506 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
512 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
Dast.c1657 REQ(n, trailer); in ast_for_trailer()
1792 if (TYPE(ch) != trailer) in ast_for_power()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsymtable.c484 const char* trailer; in check_unoptimized() local
490 trailer = (ste->ste_child_free ? in check_unoptimized()
502 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
508 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
514 PyString_AS_STRING(ste->ste_name), trailer); in check_unoptimized()
Dast.c1657 REQ(n, trailer); in ast_for_trailer()
1797 if (TYPE(ch) != trailer) in ast_for_power()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c936 VALIDATER(trailer); VALIDATER(subscript);
2432 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer)) in validate_power()
2850 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3)); in validate_trailer()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c965 VALIDATER(trailer); VALIDATER(subscript);
2461 while (res && (pos < nch) && (TYPE(CHILD(tree, pos)) == trailer)) in validate_power()
2879 int res = validate_ntype(tree, trailer) && ((nch == 2) || (nch == 3)); in validate_trailer()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DFAQ142 channel applications, and has a much more compact header and trailer and
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DFAQ143 applications, and has a much more compact header and trailer and uses a
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py348 def trailer(self, nodelist): member in Transformer