Home
last modified time | relevance | path

Searched refs:mod_type (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/
Dpkgutil.py299 mod_type = self.etc[2]
300 if mod_type==imp.PY_SOURCE:
302 elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
320 mod_type = self.etc[2]
321 if mod_type==imp.PY_SOURCE:
324 elif mod_type==imp.PY_COMPILED:
330 elif mod_type==imp.PKG_DIRECTORY:
337 mod_type = self.etc[2]
338 if mod_type==imp.PY_SOURCE:
344 elif mod_type==imp.PY_COMPILED:
[all …]
/external/python/cpython2/Lib/
Dpkgutil.py257 mod_type = self.etc[2]
258 if mod_type==imp.PY_SOURCE:
260 elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
278 mod_type = self.etc[2]
279 if mod_type==imp.PY_SOURCE:
282 elif mod_type==imp.PY_COMPILED:
288 elif mod_type==imp.PKG_DIRECTORY:
295 mod_type = self.etc[2]
296 if mod_type==imp.PY_SOURCE:
302 elif mod_type==imp.PY_COMPILED:
[all …]
/external/libxkbcommon/xkbcommon/src/xkbcomp/
Dexpr.c87 enum mod_type mod_type; member
98 enum mod_type mod_type = arg->mod_type; in LookupModMask() local
115 ndx = XkbModNameToIndex(mods, field, mod_type); in LookupModMask()
622 enum mod_type mod_type, const struct xkb_mod_set *mods, in ExprResolveModMask() argument
625 LookupModMaskPriv priv = { .mods = mods, .mod_type = mod_type }; in ExprResolveModMask()
654 enum mod_type mod_type, const struct xkb_mod_set *mods, in ExprResolveMod() argument
669 ndx = XkbModNameToIndex(mods, name, mod_type); in ExprResolveMod()
Dexpr.h37 enum mod_type mod_type, const struct xkb_mod_set *mods,
42 enum mod_type mod_type, const struct xkb_mod_set *mods,
/external/libxkbcommon/xkbcommon/src/
Dkeymap.h113 enum mod_type { enum
351 enum mod_type type;
456 enum mod_type type);
Dkeymap-priv.c129 enum mod_type type) in XkbModNameToIndex()
/external/u-boot/arch/x86/include/asm/
Dglobal_data.h34 uint8_t mod_type; member
/external/perfetto/tools/
Dgen_android_bp200 def __init__(self, mod_type, name): argument
201 self.type = mod_type
/external/python/cpython2/Python/
DPython-ast.c16 static PyTypeObject *mod_type; variable
674 mod_type = make_type("mod", &AST_type, NULL, 0); in init_types()
675 if (!mod_type) return 0; in init_types()
676 if (!add_attributes(mod_type, NULL, 0)) return 0; in init_types()
677 Module_type = make_type("Module", mod_type, Module_fields, 1); in init_types()
679 Interactive_type = make_type("Interactive", mod_type, in init_types()
682 Expression_type = make_type("Expression", mod_type, Expression_fields, in init_types()
685 Suite_type = make_type("Suite", mod_type, Suite_fields, 1); in init_types()
6772 if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c9 static PyTypeObject *mod_type; variable
843 mod_type = make_type("mod", &AST_type, NULL, 0); in init_types()
844 if (!mod_type) return 0; in init_types()
845 if (!add_attributes(mod_type, NULL, 0)) return 0; in init_types()
846 Module_type = make_type("Module", mod_type, Module_fields, 1); in init_types()
848 Interactive_type = make_type("Interactive", mod_type, Interactive_fields, in init_types()
851 Expression_type = make_type("Expression", mod_type, Expression_fields, 1); in init_types()
853 Suite_type = make_type("Suite", mod_type, Suite_fields, 1); in init_types()
8163 if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return NULL; in PyInit__ast()