Home
last modified time | relevance | path

Searched refs:NAME (Results 1 – 25 of 104) sorted by relevance

12345

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar25 funcdef: 'def' NAME parameters ':' suite
28 ('*' NAME [',' '**' NAME] | '**' NAME) |
30 fpdef: NAME | '(' fplist ')'
56 import_as_name: NAME ['as' NAME]
57 dotted_as_name: dotted_name ['as' NAME]
60 dotted_name: NAME ('.' NAME)*
61 global_stmt: 'global' NAME (',' NAME)*
107 NAME | NUMBER | STRING+)
111 trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
120 classdef: 'class' NAME ['(' [testlist] ')'] ':' suite
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt14 #diagram:token NAME
37 funcdef: 'def' NAME parameters ['->' test] ':' suite
42 tname: NAME [':' test]
48 vname: NAME
76 import_as_name: NAME ['as' NAME]
77 dotted_as_name: dotted_name ['as' NAME]
80 dotted_name: NAME ('.' NAME)*
81 global_stmt: ('global' | 'nonlocal') NAME (',' NAME)*
129 NAME | NUMBER | STRING+ | '.' '.' '.')
133 trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
[all …]
Dfixer_util.py40 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, name, prefix=u" ")
333 import_ = FromImport(package, [Leaf(token.NAME, name, prefix=u" ")])
[all …]
DPatternGrammar.txt18 Unit: [NAME '='] ( STRING [Repeater]
19 | NAME [Details] [Repeater]
24 NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')')
Dpatcomp.py146 elif node.type == token.NAME:
180 TOKEN_MAP = {"NAME": token.NAME,
188 return token.NAME
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)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_hashopenssl.c500 #define GEN_CONSTRUCTOR(NAME) \ argument
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) \ argument
522 {"openssl_" #NAME, (PyCFunction)EVP_new_ ## NAME, METH_VARARGS, \
523 PyDoc_STR("Returns a " #NAME \
528 #define INIT_CONSTRUCTOR_CONSTANTS(NAME) do { \ argument
529 CONST_ ## NAME ## _name_obj = PyString_FromString(#NAME); \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
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:
Dcheckappend.py116 NAME=tokenize.NAME): argument
128 if type is NAME and token == "append":
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/pmu/
Dpmu.h72 #define SAVE_QOS(array, NAME) \ argument
73 RK3399_CPU_AXI_SAVE_QOS(array, CPU_AXI_##NAME##_QOS_BASE)
74 #define RESTORE_QOS(array, NAME) \ argument
75 RK3399_CPU_AXI_RESTORE_QOS(array, CPU_AXI_##NAME##_QOS_BASE)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpyclbr.py45 from token import NAME, DEDENT, OP
165 if tokentype != NAME:
184 if tokentype != 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.2/Lib/test/
Dtest_tokenize.py532 from tokenize import (untokenize, generate_tokens, NUMBER, NAME, OP,
578 (NAME, 'Decimal'),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_isinstance.py36 if arg.type == token.NAME and arg.value in names_inserted:
42 if arg.type == token.NAME:
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):
153 elif node.type == token.NAME:
Dfix_unicode.py17 if node.type == token.NAME:
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/UserManuals/
DGenCfgOptUserManual.md182 ```!BSF BLOCK:{NAME:"My platform name", VER:"0.1"}``` or
184 ```@Bsf BLOCK:{NAME:"My platform name", VER:"0.1"}```
186 ###NAME
187 **NAME** gives a plain-text for a variable. This is the text label that will
191 ```!BSF NAME:{Variable 0}``` or
193 ```@Bsf NAME:{Variable 0}```
195 If the **!BSF NAME** or **@Bsf NAME** command does not appear before an entry
199 The **TYPE** command is used either by itself or with the **NAME** command. It
209 **TYPE** appears on the same line as the **NAME** command when using a combo-box.
212 ```!BSF NAME:{Variable 1} TYPE:{Combo}``` or
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c26 #define WARN_GET_SET(NAME) \ argument
27 static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
28 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
30 if (f->NAME) { \
31 Py_INCREF(f->NAME); \
32 return f->NAME; \
36 static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
37 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
39 if (f->NAME) { \
40 Py_CLEAR(f->NAME); \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c26 #define WARN_GET_SET(NAME) \ argument
27 static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
28 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
30 if (f->NAME) { \
31 Py_INCREF(f->NAME); \
32 return f->NAME; \
36 static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
37 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
39 if (f->NAME) { \
40 Py_CLEAR(f->NAME); \
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dparser.c142 if (type == NAME) { in classify()
147 if (l->lb_type != NAME || l->lb_str == NULL || in classify()
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) { in future_hack()
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME) in showtree()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
Dparser.c142 if (type == NAME) { in classify()
147 if (l->lb_type != NAME || l->lb_str == NULL || in classify()
205 if (NCH(cch) >= 1 && TYPE(CHILD(cch, 0)) == NAME) { in future_hack()
366 if (TYPE(n) == NUMBER || TYPE(n) == NAME) in showtree()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dinflate.h27 NAME, /* i: waiting for end of file name (gzip) */ enumerator
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dtoken.h13 #define NAME 1 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dinflate.h27 NAME, /* i: waiting for end of file name (gzip) */ enumerator
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dtoken.h13 #define NAME 1 macro
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dinflate.h27 NAME, /* i: waiting for end of file name (gzip) */ enumerator

12345