Searched defs:Exec (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
H A DTable.py48 self.Exec(SqlCommand)
107 ## Exec
109 # Exec Sql Command, return result
115 def Exec(self, SqlCommand): member in class:Table
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaDataTable.py130 ## Exec
132 # Exec Sql Command, return result
138 def Exec(self, SqlCommand): member in class:Table
148 Result = self.Exec("select min(ID) from %s" % (self.Table))
154 return self.Exec("select * from %s where ID > 0 order by ID" % (self.Table))
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
H A DMetaDataTable.py127 ## Exec
129 # Exec Sql Command, return result
135 def Exec(self, SqlCommand): member in class:Table
142 self.Exec("insert into %s values(%s)" % (self.Table, self._DUMMY_))
149 Result = self.Exec("select min(ID) from %s" % (self.Table))
155 return self.Exec("select * from %s where ID > 0 order by ID" % (self.Table))
226 RecordList = self.Exec(QueryScript)
239 RecordList = self.Exec(QueryScript)
252 RecordList = self.Exec(QueryScript)
263 self.Exec("updat
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
H A Dast.py461 class Exec(Node): class in inherits:Node
485 return "Exec(%s, %s, %s)" % (repr(self.expr), repr(self.locals), repr(self.globals))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h172 } Exec; member in union:_stmt::__anon2603
435 #define Exec(a0, a1, a2, a3, a4, a5) _Py_Exec(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A DPython-ast.h172 } Exec; member in union:_stmt::__anon2910
435 #define Exec(a0, a1, a2, a3, a4, a5) _Py_Exec(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A DPython-ast.c727 Exec_type = make_type("Exec", stmt_type, Exec_fields, 3);
1385 Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int col_offset, function
1391 "field body is required for Exec");
1398 p->v.Exec.body = body;
1399 p->v.Exec.globals = globals;
1400 p->v.Exec.locals = locals;
2501 value = ast2obj_expr(o->v.Exec.body);
2506 value = ast2obj_expr(o->v.Exec.globals);
2511 value = ast2obj_expr(o->v.Exec.locals);
4563 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Exec");
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A DPython-ast.c710 Exec_type = make_type("Exec", stmt_type, Exec_fields, 3);
1368 Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int col_offset, function
1374 "field body is required for Exec");
1381 p->v.Exec.body = body;
1382 p->v.Exec.globals = globals;
1383 p->v.Exec.locals = locals;
2484 value = ast2obj_expr(o->v.Exec.body);
2489 value = ast2obj_expr(o->v.Exec.globals);
2494 value = ast2obj_expr(o->v.Exec.locals);
4546 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Exec");
[all...]

Completed in 168 milliseconds