/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | RangeExpression.py | 108 Expr = "XOR ..." 109 raise BadExpression(ERR_SNYTAX % Expr) 122 Expr = "LE ..." 123 raise BadExpression(ERR_SNYTAX % Expr) 134 Expr = "LT ..." 135 raise BadExpression(ERR_SNYTAX % Expr) 147 Expr = "GE ..." 148 raise BadExpression(ERR_SNYTAX % Expr) 160 Expr = "GT ..." 161 raise BadExpression(ERR_SNYTAX % Expr) [all …]
|
D | Expression.py | 439 Expr = self._Expr[self._Idx:].replace('\\\\', '//').replace('\\\"', '\\\'') 440 for Ch in Expr: 498 Expr = self._Expr[self._Idx:] 499 if not Expr.startswith(','): 503 while Expr.startswith(','): 512 Expr = self._Expr[self._Idx:] 541 Expr = self._Expr[self._Idx:] 542 if Expr.startswith('L"'): 550 if Expr: 551 Ch = Expr[0] [all …]
|
/device/google/dragon/recovery/updater/ |
D | recovery_updater.cpp | 31 const std::vector<std::unique_ptr<Expr>>& argv) { in firmware_update()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | CommentParsing.py | 436 Expr = '' 438 Expr = Expression[Expression.find(TAB_VALUE_SPLIT)+1:] 440 Expr = Expression 441 return IsValidLogicalExpr(Expr, True)
|
D | String.py | 838 def ConvertNEToNOTEQ(Expr): argument 839 List = __GetTokenList(Expr) 852 def ConvertNOTEQToNE(Expr): argument 853 List = __GetTokenList(Expr)
|
D | ExpressionValidate.py | 244 Ret = self.Expr() 249 Ret = self.Expr() 257 def Expr(self): member in _LogicalExpressionParser
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | future.c | 111 expr_ty e = s->v.Expr.value; in future_parse()
|
D | compile.c | 1164 return s->v.Expr.value->kind == Str_kind; in compiler_isdocstring() 1181 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1383 first_const = st->v.Expr.value->v.Str.s; in compiler_function() 2183 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt() 2186 else if (s->v.Expr.value->kind != Str_kind && in compiler_visit_stmt() 2187 s->v.Expr.value->kind != Num_kind) { in compiler_visit_stmt() 2188 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt()
|
D | symtable.c | 1163 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | future.c | 106 expr_ty e = s->v.Expr.value; in future_parse()
|
D | compile.c | 1187 return s->v.Expr.value->kind == Str_kind; in compiler_isdocstring() 1204 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1406 first_const = st->v.Expr.value->v.Str.s; in compiler_function() 2203 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt() 2206 else if (s->v.Expr.value->kind != Str_kind && in compiler_visit_stmt() 2207 s->v.Expr.value->kind != Num_kind) { in compiler_visit_stmt() 2208 VISIT(c, expr, s->v.Expr.value); in compiler_visit_stmt()
|
D | symtable.c | 1165 VISIT(st, expr, s->v.Expr.value); in symtable_visit_stmt()
|
D | Python-ast.c | 1421 Expr(expr_ty value, int lineno, int col_offset, PyArena *arena) in Expr() function 1433 p->v.Expr.value = value; in Expr() 2529 value = ast2obj_expr(o->v.Expr.value); in ast2obj_stmt() 4647 *out = Expr(value, lineno, col_offset, arena); in obj2ast_stmt()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | generic.h | 211 } Expr; typedef
|
D | misc.c | 114 static Expr * 122 Expr *p = (Expr *) calloc(1, sizeof(Expr));
|
D | lex.c | 188 Expr *q; 195 q = (Expr *) p->elem;
|
/device/linaro/bootloader/edk2/IntelFspPkg/Tools/ |
D | GenCfgOpt.py | 321 def evaluateExpress (self, Expr): argument 323 self.string = Expr 411 def EvaluateExpress (self, Expr): argument 412 ExpExpr = self.ExpandMacros(Expr) 416 print "INFO : Eval Express [%s] : %s" % (Expr, Result)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | ast.py | 195 if node.body and isinstance(node.body[0], Expr) and \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | ast.py | 195 if node.body and isinstance(node.body[0], Expr) and \
|
/device/asus/fugu/recovery/ |
D | recovery_updater.cpp | 291 const std::vector<std::unique_ptr<Expr>>& argv) { in FlashIfwiFuguFn()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 45 | Expr(expr value)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ast.py | 245 src.body.append(ast.Expr(ast.Call(ast.Name('spam', ast.Load()),
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 180 } Expr; member 441 #define Expr(a0, a1, a2, a3) _Py_Expr(a0, a1, a2, a3) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 180 } Expr; member 441 #define Expr(a0, a1, a2, a3) _Py_Expr(a0, a1, a2, a3) macro
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | FdfParser.py | 1798 Expr = '' 1809 Expr += CurCh 1813 ValueExpression(Expr,
|