Home
last modified time | relevance | path

Searched refs:With (Results 1 – 25 of 43) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DSetup.py34 from With import *
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpdb.doc62 Without argument, print the list of available commands. With
80 With a filename:line number argument, set a break there. If
81 filename is omitted, use the current file. With a function
95 With a space separated list of breakpoint numbers, clear those
151 With one argument, list 11 lines starting at that line.
152 With two arguments, list the given range;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DPatternGrammar.txt8 # With 'any' we can still specify the sub-structure.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_FROM_133.txt215 With input X
239 With input X
242 With input A X
265 With input A X
295 With input X
298 With input A X
379 With MR21 the message will be:
520 With this change, the routine calls a virtual function
1011 With MR14 the follow set will be the empty set for that context.
1042 With the antlr -alpha command line option the following information
[all …]
DCHANGES_SUMMARY.txt74 in rule b. With "-mrhoistk on" the predicate will be suppressed.
176 that another syntax be allowed. With MR13 such directives
188 With -mrhoist enabled the context behind a guarded predicate can
200 rule r0. With MR12c predicate p is suppressed because the context which
220 With MR13, the user can code:
886 the point of an ambiguity. With option -aam
1036 With the antlr "-info p" switch the user will receive information
1112 With 1.33MR10 and -mrhoist the predicate context is restricted to
1122 With the antlr "-info p" switch the user will receive information
1704 With the -mrhoist optimization the code would resemble:
[all …]
DCHANGES_FROM_133_before_mr13.txt904 With 1.33MR11 the redundant predicate test is omitted.
1154 the point of an ambiguity. With option -aam
1323 With the antlr "-info p" switch the user will receive information
1399 With 1.33MR10 and -mrhoist the predicate context is restricted to
1409 With the antlr "-info p" switch the user will receive information
2163 With the -mrhoist optimization the code would resemble:
2180 With the -mrhoist optimization the code would resemble:
2197 With the -mrhoist optimization the code would resemble:
2220 With -mrhoist a lookahead tree is computed for the entire
2440 With 1.33MR10 and the same options the code resembles:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt23 With: expr, vars&, body
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_133.txt306 With MR23 the #errclass declarations are used for syntax error messages
476 With zzfailed_pred_action defined as:
886 With input X
910 With input X
913 With input A X
936 With input A X
966 With input X
969 With input A X
1055 With MR21 the message will be:
1196 With this change, the routine calls a virtual function
[all …]
DCHANGES_SUMMARY.txt74 in rule b. With "-mrhoistk on" the predicate will be suppressed.
176 that another syntax be allowed. With MR13 such directives
188 With -mrhoist enabled the context behind a guarded predicate can
200 rule r0. With MR12c predicate p is suppressed because the context which
220 With MR13, the user can code:
886 the point of an ambiguity. With option -aam
1036 With the antlr "-info p" switch the user will receive information
1112 With 1.33MR10 and -mrhoist the predicate context is restricted to
1122 With the antlr "-info p" switch the user will receive information
1704 With the -mrhoist optimization the code would resemble:
[all …]
DNOTES.msvc153 = With 1.33MRxxx the use of __STDC__ was replaced with the =
DCHANGES_FROM_133_BEFORE_MR13.txt904 With 1.33MR11 the redundant predicate test is omitted.
1154 the point of an ambiguity. With option -aam
1323 With the antlr "-info p" switch the user will receive information
1399 With 1.33MR10 and -mrhoist the predicate context is restricted to
1409 With the antlr "-info p" switch the user will receive information
2163 With the -mrhoist optimization the code would resemble:
2180 With the -mrhoist optimization the code would resemble:
2197 With the -mrhoist optimization the code would resemble:
2220 With -mrhoist a lookahead tree is computed for the entire
2440 With 1.33MR10 and the same options the code resembles:
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl28 | With(expr context_expr, expr? optional_vars, stmt* body)
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Dparser.dlg8 * With AHPCRC, University of Minnesota
/device/linaro/hikey/bt-wifi-firmware-util/
DNOTICE18 to the terms herein. With respect to the foregoing patent license, such license
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsymtable.c1171 VISIT(st, expr, s->v.With.context_expr); in symtable_visit_stmt()
1172 if (s->v.With.optional_vars) { in symtable_visit_stmt()
1173 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
1175 VISIT_SEQ(st, stmt, s->v.With.body); in symtable_visit_stmt()
DPython-ast.c1245 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() function
1258 p->v.With.context_expr = context_expr; in With()
1259 p->v.With.optional_vars = optional_vars; in With()
1260 p->v.With.body = body; in With()
2369 value = ast2obj_expr(o->v.With.context_expr); in ast2obj_stmt()
2374 value = ast2obj_expr(o->v.With.optional_vars); in ast2obj_stmt()
2380 value = ast2obj_list(o->v.With.body, ast2obj_stmt); in ast2obj_stmt()
4194 *out = With(context_expr, optional_vars, body, lineno, in obj2ast_stmt()
Dcompile.c2932 VISIT(c, expr, s->v.With.context_expr); in compiler_with()
2944 if (s->v.With.optional_vars) { in compiler_with()
2945 VISIT(c, expr, s->v.With.optional_vars); in compiler_with()
2953 VISIT_SEQ(c, stmt, s->v.With.body); in compiler_with()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dsymtable.c1173 VISIT(st, expr, s->v.With.context_expr); in symtable_visit_stmt()
1174 if (s->v.With.optional_vars) { in symtable_visit_stmt()
1175 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
1177 VISIT_SEQ(st, stmt, s->v.With.body); in symtable_visit_stmt()
DPython-ast.c1262 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() function
1275 p->v.With.context_expr = context_expr; in With()
1276 p->v.With.optional_vars = optional_vars; in With()
1277 p->v.With.body = body; in With()
2386 value = ast2obj_expr(o->v.With.context_expr); in ast2obj_stmt()
2391 value = ast2obj_expr(o->v.With.optional_vars); in ast2obj_stmt()
2397 value = ast2obj_list(o->v.With.body, ast2obj_stmt); in ast2obj_stmt()
4211 *out = With(context_expr, optional_vars, body, lineno, in obj2ast_stmt()
Dcompile.c2952 VISIT(c, expr, s->v.With.context_expr); in compiler_with()
2964 if (s->v.With.optional_vars) { in compiler_with()
2965 VISIT(c, expr, s->v.With.optional_vars); in compiler_with()
2973 VISIT_SEQ(c, stmt, s->v.With.body); in compiler_with()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h134 } With; member
414 #define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h134 } With; member
414 #define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DREADME60 - For 64-bit Irix, deflate.c must be compiled without any optimization. With
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DREADME64 - For 64-bit Irix, deflate.c must be compiled without any optimization. With
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dparser.dlg8 * With AHPCRC, University of Minnesota

12