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

  /external/python/cpython3/Include/
symtable.h 88 #define DEF_LOCAL 2 /* assignment in code block */
97 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
104 #define SCOPE_MASK (DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /external/python/cpython2/Include/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /prebuilts/gdb/darwin-x86/include/python2.7/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /prebuilts/gdb/linux-x86/include/python2.7/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
symtable.h 64 #define DEF_LOCAL 2 /* assignment in code block */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
symtablemodule.c 63 PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
symtablemodule.c 60 PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL);
  /external/python/cpython2/Modules/
symtablemodule.c 63 PyModule_AddIntConstant(m, "DEF_LOCAL", DEF_LOCAL);
  /external/python/cpython3/Modules/
symtablemodule.c 76 PyModule_AddIntMacro(m, DEF_LOCAL);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
208 return bool(self.__flags & DEF_LOCAL)
  /external/python/cpython2/Lib/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
205 return bool(self.__flags & DEF_LOCAL)
  /external/python/cpython3/Lib/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
203 return bool(self.__flags & DEF_LOCAL)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
208 return bool(self.__flags & DEF_LOCAL)
  /prebuilts/gdb/linux-x86/lib/python2.7/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
208 return bool(self.__flags & DEF_LOCAL)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
208 return bool(self.__flags & DEF_LOCAL)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
208 return bool(self.__flags & DEF_LOCAL)
  /external/python/cpython3/Python/
symtable.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcvs.py 43 DEF_LOCAL = 1 # Default -l
408 local = DEF_LOCAL
  /external/python/cpython2/Demo/pdist/
rcvs.py 43 DEF_LOCAL = 1 # Default -l
408 local = DEF_LOCAL
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 1005 if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 1003 if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL))
    [all...]
  /external/python/cpython2/Python/
symtable.c 1005 if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL))
1021 if (!symtable_add_def(st, s->v.ClassDef.name, DEF_LOCAL))
    [all...]

Completed in 581 milliseconds