HomeSort by relevance Sort by last modified time
    Searched refs:symtable (Results 1 - 25 of 36) sorted by null

1 2

  /external/python/cpython3/Include/
symtable.h 18 struct symtable { struct
63 struct symtable *ste_table;
72 PyAPI_FUNC(struct symtable *) PySymtable_Build(
76 PyAPI_FUNC(struct symtable *) PySymtable_BuildObject(
80 PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
82 PyAPI_FUNC(void) PySymtable_Free(struct symtable *);
pythonrun.h 117 PyAPI_FUNC(struct symtable *) Py_SymtableString(
122 PyAPI_FUNC(struct symtable *) Py_SymtableStringObject(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 13 struct symtable { struct
46 struct symtable *ste_table;
55 PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *,
57 PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
59 PyAPI_FUNC(void) PySymtable_Free(struct symtable *);
pythonrun.h 68 PyAPI_FUNC(struct symtable *) Py_SymtableString(const char *, const char *, int);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 13 struct symtable { struct
46 struct symtable *ste_table;
55 PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *,
57 PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
59 PyAPI_FUNC(void) PySymtable_Free(struct symtable *);
pythonrun.h 68 PyAPI_FUNC(struct symtable *) Py_SymtableString(const char *, const char *, int);
  /external/python/cpython2/Include/
symtable.h 13 struct symtable { struct
46 struct symtable *ste_table;
55 PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *,
57 PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
59 PyAPI_FUNC(void) PySymtable_Free(struct symtable *);
pythonrun.h 68 PyAPI_FUNC(struct symtable *) Py_SymtableString(const char *, const char *, int);
  /external/python/cpython3/Lib/test/
test_symtable.py 2 Test the API of the symtable module.
4 import symtable
44 top = symtable.symtable(TEST_CODE, "?", "exec")
137 st1 = symtable.symtable('def f():\n x: int\n', 'test', 'exec')
142 st3 = symtable.symtable('def f():\n x = 1\n', 'test', 'exec')
164 symtable.symtable(brokencode, "spam", "exec"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_symtable.py 2 Test the API of the symtable module.
4 import symtable
48 top = symtable.symtable(TEST_CODE, "?", "exec")
162 symtable.symtable(brokencode, "spam", "exec")
168 checkfilename("def f(x): global x") # symtable-build-time
171 symbols = symtable.symtable("42", "?", "eval")
174 symbols = symtable.symtable("42", "?", "single")
    [all...]
  /external/python/cpython2/Lib/test/
test_symtable.py 2 Test the API of the symtable module.
4 import symtable
48 top = symtable.symtable(TEST_CODE, "?", "exec")
162 symtable.symtable(brokencode, "spam", "exec")
168 checkfilename("def f(x): global x") # symtable-build-time
171 symbols = symtable.symtable("42", "?", "eval")
174 symbols = symtable.symtable("42", "?", "single"
    [all...]
  /external/python/cpython3/Python/
symtable.c 8 #include "symtable.h"
39 ste_new(struct symtable *st, identifier name, _Py_block_ty block,
105 return PyUnicode_FromFormat("<symtable entry %U(%ld), line %d>",
139 "symtable entry",
178 static int symtable_analyze(struct symtable *st);
179 static int symtable_enter_block(struct symtable *st, identifier name,
182 static int symtable_exit_block(struct symtable *st, void *ast);
183 static int symtable_visit_stmt(struct symtable *st, stmt_ty s);
184 static int symtable_visit_expr(struct symtable *st, expr_ty s);
185 static int symtable_visit_genexp(struct symtable *st, expr_ty s)
    [all...]
pythonrun.c 22 #include "symtable.h"
1128 struct symtable *
1131 struct symtable *st;
1151 struct symtable *
1155 struct symtable *st;
    [all...]
  /external/python/cpython2/Python/
symtable.c 4 #include "symtable.h"
21 ste_new(struct symtable *st, identifier name, _Py_block_ty block,
90 "<symtable entry %.100s(%ld), line %d>",
125 "symtable entry",
164 static int symtable_analyze(struct symtable *st);
165 static int symtable_warn(struct symtable *st,
167 static int symtable_enter_block(struct symtable *st, identifier name,
169 static int symtable_exit_block(struct symtable *st, void *ast);
170 static int symtable_visit_stmt(struct symtable *st, stmt_ty s);
171 static int symtable_visit_expr(struct symtable *st, expr_ty s)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 4 #include "symtable.h"
21 ste_new(struct symtable *st, identifier name, _Py_block_ty block,
90 "<symtable entry %.100s(%ld), line %d>",
125 "symtable entry",
164 static int symtable_analyze(struct symtable *st);
165 static int symtable_warn(struct symtable *st, char *msg, int lineno);
166 static int symtable_enter_block(struct symtable *st, identifier name,
168 static int symtable_exit_block(struct symtable *st, void *ast);
169 static int symtable_visit_stmt(struct symtable *st, stmt_ty s);
170 static int symtable_visit_expr(struct symtable *st, expr_ty s);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 4 #include "symtable.h"
21 ste_new(struct symtable *st, identifier name, _Py_block_ty block,
88 "<symtable entry %.100s(%ld), line %d>",
123 "symtable entry",
162 static int symtable_analyze(struct symtable *st);
163 static int symtable_warn(struct symtable *st, char *msg, int lineno);
164 static int symtable_enter_block(struct symtable *st, identifier name,
166 static int symtable_exit_block(struct symtable *st, void *ast);
167 static int symtable_visit_stmt(struct symtable *st, stmt_ty s);
168 static int symtable_visit_expr(struct symtable *st, expr_ty s);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
symtablemodule.c 6 #include "symtable.h"
11 struct symtable *st;
19 if (!PyArg_ParseTuple(args, "sss:symtable", &str, &filename,
30 "symtable() arg 3 must be 'exec' or 'eval' or 'single'");
44 {"symtable", symtable_symtable, METH_VARARGS,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
symtablemodule.c 6 #include "symtable.h"
11 struct symtable *st;
19 if (!PyArg_ParseTuple(args, "sss:symtable", &str, &filename,
30 "symtable() arg 3 must be 'exec' or 'eval' or 'single'");
44 {"symtable", symtable_symtable, METH_VARARGS,
  /external/python/cpython2/Modules/
symtablemodule.c 6 #include "symtable.h"
11 struct symtable *st;
19 if (!PyArg_ParseTuple(args, "sss:symtable", &str, &filename,
30 "symtable() arg 3 must be 'exec' or 'eval' or 'single'");
44 {"symtable", symtable_symtable, METH_VARARGS,
  /external/python/cpython3/Modules/
symtablemodule.c 5 #include "symtable.h"
15 _symtable.symtable
30 struct symtable *st;
42 "symtable() arg 3 must be 'exec' or 'eval' or 'single'");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symtable.py 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
12 def symtable(code, filename, compile_type): function
13 raw = _symtable.symtable(code, filename, compile_type)
239 mod = symtable(src, os.path.split(sys.argv[0])[1], "exec")
  /external/python/cpython2/Lib/
symtable.py 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
12 def symtable(code, filename, compile_type): function
13 top = _symtable.symtable(code, filename, compile_type)
236 mod = symtable(src, os.path.split(sys.argv[0])[1], "exec")
  /external/python/cpython3/Lib/
symtable.py 10 __all__ = ["symtable", "SymbolTable", "Class", "Function", "Symbol"]
12 def symtable(code, filename, compile_type): function
13 top = _symtable.symtable(code, filename, compile_type)
235 mod = symtable(src, os.path.split(sys.argv[0])[1], "exec")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
symbols.py 417 import symtable
428 syms = symtable.symtable(buf, file, "exec")
  /external/python/cpython2/Lib/compiler/
symbols.py 417 import symtable
428 syms = symtable.symtable(buf, file, "exec")

Completed in 232 milliseconds

1 2