Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dpkgutil.py300 mod_type = self.etc[2]
301 if mod_type==imp.PY_SOURCE:
303 elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
321 mod_type = self.etc[2]
322 if mod_type==imp.PY_SOURCE:
325 elif mod_type==imp.PY_COMPILED:
331 elif mod_type==imp.PKG_DIRECTORY:
338 mod_type = self.etc[2]
339 if mod_type==imp.PY_SOURCE:
345 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/src/xkbcomp/
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,
Dexpr.c93 enum mod_type mod_type; member
104 enum mod_type mod_type = arg->mod_type; in LookupModMask() local
123 ndx = XkbModNameToIndex(mods, field, mod_type); in LookupModMask()
636 enum mod_type mod_type, const struct xkb_mod_set *mods, in ExprResolveModMask() argument
639 LookupModMaskPriv priv = { .mods = mods, .mod_type = mod_type }; in ExprResolveModMask()
668 enum mod_type mod_type, const struct xkb_mod_set *mods, in ExprResolveMod() argument
683 ndx = XkbModNameToIndex(mods, name, mod_type); in ExprResolveMod()
/external/libxkbcommon/src/
Dkeymap.h113 enum mod_type { enum
352 enum mod_type type;
468 enum mod_type type);
Dkeymap-priv.c132 enum mod_type type) in XkbModNameToIndex()
/external/perfetto/tools/
Dgen_android_bp439 def __init__(self, mod_type, name, gn_target): argument
440 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.c192 PyObject *mod_type; member
437 Py_CLEAR(state->mod_type); in _PyAST_Fini()
1209 state->mod_type = make_type(state, "mod", state->AST_type, NULL, 0, in init_types()
1214 if (!state->mod_type) return 0; in init_types()
1215 if (!add_attributes(state, state->mod_type, NULL, 0)) return 0; in init_types()
1216 state->Module_type = make_type(state, "Module", state->mod_type, in init_types()
1220 state->Interactive_type = make_type(state, "Interactive", state->mod_type, in init_types()
1224 state->Expression_type = make_type(state, "Expression", state->mod_type, in init_types()
1229 state->mod_type, FunctionType_fields, in init_types()
9653 if (PyModule_AddObject(m, "mod", state->mod_type) < 0) { in astmodule_exec()
[all …]
/external/python/cpython3/Tools/c-analyzer/
Dknown.tsv503 Python/Python-ast.c - mod_type variable static PyTypeObject *mod_type