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

  /external/python/cpython3/Include/
symtable.h 88 #define DEF_PARAM 2<<1 /* formal parameter */
96 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
103 #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 65 #define DEF_PARAM 2<<1 /* formal parameter */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
symtable.h 65 #define DEF_PARAM 2<<1 /* formal parameter */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /external/python/cpython2/Include/
symtable.h 65 #define DEF_PARAM 2<<1 /* formal parameter */
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
symtablemodule.c 64 PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
symtablemodule.c 61 PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM);
  /external/python/cpython2/Modules/
symtablemodule.c 64 PyModule_AddIntConstant(m, "DEF_PARAM", DEF_PARAM);
  /external/python/cpython3/Modules/
symtablemodule.c 88 PyModule_AddIntMacro(m, DEF_PARAM);
  /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,
135 self.__params = self.__idents_matching(lambda x:x & DEF_PARAM)
190 return bool(self.__flags & DEF_PARAM)
  /external/python/cpython2/Lib/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
132 self.__params = self.__idents_matching(lambda x:x & DEF_PARAM)
187 return bool(self.__flags & DEF_PARAM)
  /external/python/cpython3/Lib/
symtable.py 4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
127 self.__params = self.__idents_matching(lambda x:x & DEF_PARAM)
182 return bool(self.__flags & DEF_PARAM)
  /external/python/cpython3/Python/
symtable.c 992 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
1012 if (flag & DEF_PARAM)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 378 if (flags & DEF_PARAM) {
891 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
911 if (flag & DEF_PARAM) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 376 if (flags & DEF_PARAM) {
889 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
909 if (flag & DEF_PARAM) {
    [all...]
  /external/python/cpython2/Python/
symtable.c 380 if (flags & DEF_PARAM) {
897 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
917 if (flag & DEF_PARAM) {
    [all...]

Completed in 486 milliseconds