Searched defs:types (Results 1 - 9 of 9) sorted by relevance

/pkg/src/modules/
H A Dpkgsubprocess.py28 import types namespace
H A Dfacet.py32 import types namespace
533 Facets.allow_action = types.MethodType(_allow_facet, None, Facets)
H A Dvariant.py32 import types namespace
56 _Variants.allow_action = types.MethodType(_allow_variant, None, _Variants)
91 # the actions. Specifically, it records what types of variants exist
93 # (x86/sparc or debug/non-debug). The variant types are the keys of the
109 """Class for holding a template of variant types and their potential
167 # differences. The type_diffs field stores the variant types which are in the
169 # the values for particular types which are in the caller and not in the
431 difficult in the face of arbitrary numbers of variant types and
452 # variant types is necessary. 'keep_going' tracks whether that
528 # another pass over the variant types a
[all...]
H A Dcatalog.py40 import types namespace
2045 indicating the types of catalog data that will be returned
2418 constants indicating the types of catalog data that will
2472 constants indicating the types of catalog data that will
2568 indicating the types of catalog data that will be returned
2701 constants indicating the types of catalog data that will
2786 indicating the types of catalog data that will be returned
3722 constants indicating the types of catalog data that will
/pkg/src/modules/actions/
H A D__init__.py30 This package contains modules describing packaging actions, or file types. The
36 "types", a dictionary which maps the action names to the classes that
57 # A dictionary of all the types in this package, mapping to the classes that
59 types = {} variable
81 types[cls.name] = cls
261 if atype not in types:
316 action = types[atype](data, **attrs)
H A Dfile.py38 import types namespace
889 FileAction.__init__ = types.MethodType(_common._file_init, None, FileAction)
H A Dgeneric.py42 import types namespace
180 # Most types of actions do not have a payload.
448 # Comparing different action types.
1178 """Common validation logic for all action types.
1271 Action.__init__ = types.MethodType(_common._generic_init, None, Action)
/pkg/src/tests/api/
H A Dt_manifest.py31 import types namespace
/pkg/src/tests/
H A Drun.py194 import types namespace
240 if six.PY2 and isinstance(obj, types.MethodType):
244 elif six.PY3 and isinstance(obj, types.FunctionType):

Completed in 36 milliseconds