Searched refs:NAME (Results 1 - 25 of 70) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
H A Dfix_isinstance.py36 if arg.type == token.NAME and arg.value in names_inserted:
42 if arg.type == token.NAME:
H A Dfix_unicode.py17 if node.type == token.NAME:
H A Dfix_apply.py22 (not argument<NAME '=' any>) func=any ','
23 (not argument<NAME '=' any>) args=any [','
24 (not argument<NAME '=' any>) kwds=any] [',']
39 if (func.type not in (token.NAME, syms.atom) and
H A Dfix_itertools_imports.py21 if child.type == token.NAME:
H A Dfix_map.py43 (fp=NAME | vfpdef< '(' fp=NAME ')'> ) ':' xp=any
79 args.children[0].type == token.NAME and \
H A Dfix_tuple_params.py116 if inner.type == token.NAME:
129 if n.type == token.NAME and n.value in to_index:
140 if node.type in (syms.vfplist, token.NAME):
143 # These look like vfpdef< '(' x ')' > where x is NAME
153 elif node.type == token.NAME:
H A Dfix_except.py58 if N.type != token.NAME:
H A Dfix_import.py26 if node.type == token.NAME:
H A Dfix_raise.py81 if val.type != token.NAME or val.value != u"None":
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_tokenize.py18 NAME 'if' (1, 0) (1, 2)
19 NAME 'False' (1, 3) (1, 8)
25 NAME 'True' (3, 4) (3, 8)
27 NAME 'False' (3, 11) (3, 16)
174 NAME 'x' (1, 0) (1, 1)
178 NAME 'x' (1, 0) (1, 1)
182 NAME 'x' (1, 0) (1, 1)
186 NAME 'x' (1, 0) (1, 1)
194 NAME 'x' (1, 0) (1, 1)
198 NAME '
532 from tokenize import (untokenize, generate_tokens, NUMBER, NAME, OP, namespace
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_hashopenssl.c500 #define GEN_CONSTRUCTOR(NAME) \
502 EVP_new_ ## NAME (PyObject *self, PyObject *args) \
507 if (!PyArg_ParseTuple(args, "|s*:" #NAME , &view)) { \
512 CONST_ ## NAME ## _name_obj, \
514 CONST_new_ ## NAME ## _ctx_p, \
521 #define CONSTRUCTOR_METH_DEF(NAME) \
522 {"openssl_" #NAME, (PyCFunction)EVP_new_ ## NAME, METH_VARARGS, \
523 PyDoc_STR("Returns a " #NAME \
528 #define INIT_CONSTRUCTOR_CONSTANTS(NAME) d
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
H A Dfixer_util.py39 """Return a NAME leaf"""
40 return Leaf(token.NAME, name, prefix=prefix)
97 for_leaf = Leaf(token.NAME, u"for")
99 in_leaf = Leaf(token.NAME, u"in")
104 if_leaf = Leaf(token.NAME, u"if")
125 children = [Leaf(token.NAME, u"from"),
126 Leaf(token.NAME, package_name, prefix=u" "),
127 Leaf(token.NAME, u"import", prefix=u" "),
329 Leaf(token.NAME, u"import"),
330 Leaf(token.NAME, nam
[all...]
H A Dbtm_utils.py66 if node.type == token_labels.NAME and node.name:
192 if name_leaf.type == token_labels.NAME:
209 new_node = MinNode(type=token_labels.NAME, name=name)
H A Dpatcomp.py110 # Now we've reduced it to: STRING | NAME [Details] | (...) | [...]
140 # Compile STRING | NAME [Details] | (...) | [...]
146 elif node.type == token.NAME:
180 TOKEN_MAP = {"NAME": token.NAME,
188 return token.NAME
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dtoken.h13 #define NAME 1 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinflate.h27 NAME, /* i: waiting for end of file name (gzip) */ enumerator in enum:__anon2840
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dtoken.h13 #define NAME 1 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
H A Dtoken.py10 NAME = 1 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinflate.h27 NAME, /* i: waiting for end of file name (gzip) */ enumerator in enum:__anon3185
60 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
61 NAME -> COMMENT -> HCRC -> TYPE
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dcleanfuture.py161 NAME = tokenize.NAME
182 if not (type is NAME and token == "from"):
187 if not (type is NAME and token == "__future__"):
191 if not (type is NAME and token == "import"):
197 while type is NAME:
H A Dcheckappend.py116 NAME=tokenize.NAME):
128 if type is NAME and token == "append":
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dpyclbr.py45 from token import NAME, DEDENT, OP namespace
165 if tokentype != NAME:
184 if tokentype != NAME:
223 # only use NAME and OP (== dot) tokens for type name
224 elif tokentype in (NAME, OP) and level == 1:
303 if tokentype != NAME and token != '*':
311 if tokentype != NAME:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dparser.c142 if (type == NAME) {
147 if (l->lb_type != NAME || l->lb_str == NULL ||
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) {
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME)
434 (expr: (term: (NAME: a)), (OP: +), (term: (NAME: b)))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dparser.c142 if (type == NAME) {
147 if (l->lb_type != NAME || l->lb_str == NULL ||
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) {
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME)
434 (expr: (term: (NAME: a)), (OP: +), (term: (NAME: b)))
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
H A DPolicyEntryOperation.h26 #define NAME BIT(7) macro

Completed in 223 milliseconds

123