Home
last modified time | relevance | path

Searched refs:mixin (Results 1 – 25 of 33) sorted by relevance

12

/external/bcc/src/lua/bcc/vendor/
Dmiddleclass.lua93 local function _includeMixin(aClass, mixin)
94 assert(type(mixin) == 'table', "mixin must be a table")
96 for name,method in pairs(mixin) do
100 for name,method in pairs(mixin.static or {}) do
104 if type(mixin.included)=="function" then mixin:included(aClass) end
165 for _,mixin in ipairs({...}) do _includeMixin(self, mixin) end
/external/chromium-trace/catapult/dependency_manager/
Dpylintrc57 # Tells wether missing members accessed in mixin class should be ignored. A
58 # mixin class is detected if its name ends with "mixin" (case insensitive).
59 ignore-mixin-members=yes
/external/chromium-trace/catapult/systrace/
Dpylintrc59 # Tells wether missing members accessed in mixin class should be ignored. A
60 # mixin class is detected if its name ends with "mixin" (case insensitive).
61 ignore-mixin-members=yes
/external/chromium-trace/catapult/devil/
Dpylintrc58 # Tells wether missing members accessed in mixin class should be ignored. A
59 # mixin class is detected if its name ends with "mixin" (case insensitive).
60 ignore-mixin-members=yes
/external/python/cpython3/Doc/library/
Dcollections.abc.rst152 Implementation note: Some of the mixin methods, such as
156 access speed, the mixin methods will have linear performance;
276 Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
279 Since some set operations create new sets, the default mixin methods need
284 If the :class:`Set` mixin is being used in a class with a different
295 The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
Dsocketserver.rst220 also calls :meth:`service_actions`, which may be used by a subclass or mixin
232 overridden by subclasses or mixin classes to perform actions specific to
Durllib.request.rst342 This is a mixin class that helps with HTTP authentication, both to the remote
382 This is a mixin class that helps with HTTP authentication, both to the remote
/external/v8/tools/mb/
Dmb.py454 for mixin in mixins:
455 if not mixin in self.mixins:
457 (mixin, config))
458 referenced_mixins.add(mixin)
460 for mixin in self.mixins:
461 for sub_mixin in self.mixins[mixin].get('mixins', []):
464 (sub_mixin, mixin))
468 for mixin in self.mixins:
469 if not mixin in referenced_mixins:
470 errs.append('Unreferenced mixin "%s".' % mixin)
/external/setupcompat/main/java/com/google/android/setupcompat/internal/
DTemplateLayout.java98 protected <M extends Mixin> void registerMixin(Class<M> cls, M mixin) { in registerMixin() argument
99 mixins.put(cls, mixin); in registerMixin()
/external/protobuf/src/google/protobuf/
Dapi.proto134 // Example of a simple mixin:
154 // Example of a mixin configuration:
161 // The mixin construct implies that all methods in `AccessControl` are
177 // If the `root` field in the mixin is specified, it should be a
/external/antlr/runtime/Python3/
Dpylintrc177 # Tells whether missing members accessed in mixin class should be ignored. A
178 # mixin class is detected if its name ends with "mixin" (case insensitive).
179 ignore-mixin-members=yes
/external/antlr/runtime/Python/
Dpylintrc114 # Tells wether missing members accessed in mixin class should be ignored. A
115 # mixin class is detected if its name ends with "mixin" (case insensitive).
116 ignore-mixin-members=yes
/external/autotest/utils/
Dpylintrc122 # Tells whether missing members accessed in mixin class should be ignored. A
123 # mixin class is detected if its name ends with "mixin" (case insensitive).
124 #ignore-mixin-members=yes
/external/python/apitools/
Ddefault.pylintrc244 # Tells whether missing members accessed in mixin class should be ignored. A
245 # mixin class is detected if its name ends with "mixin" (case insensitive).
246 # DEFAULT: ignore-mixin-members=yes
/external/tensorflow/tensorflow/tools/ci_build/
Dpylintrc81 # Tells whether missing members accessed in mixin class should be ignored. A
82 # mixin class is detected if its name ends with "mixin" (case insensitive).
83 ignore-mixin-members=yes
/external/python/cpython2/Doc/library/
Duserdict.rst12 The module defines a mixin, :class:`DictMixin`, defining all dictionary methods
63 This mixin should be used as a superclass. Adding each of the above methods
71 Since the mixin has no knowledge of the subclass constructor, it does not define
Dcollections.rst1024 Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
1027 Since some set operations create new sets, the default mixin methods need
1032 If the :class:`Set` mixin is being used in a class with a different
1043 The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
Durllib2.rst252 This is a mixin class that helps with HTTP authentication, both to the remote
277 This is a mixin class that helps with HTTP authentication, both to the remote
/external/yapf/
Dpylintrc324 # Tells whether missing members accessed in mixin class should be ignored. A
325 # mixin class is detected if its name ends with "mixin" (case insensitive).
326 ignore-mixin-members=yes
/external/perfetto/ui/src/assets/
Dtopbar.scss14 @mixin omnibox-width() {
Dcommon.scss22 @mixin transition($time:0.1s) {
37 @mixin material-icon($content) {
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py176 def create_executor_tests(mixin, bases=(BaseTestCase,), argument
191 % (strip_mixin(exe.__name__), strip_mixin(mixin.__name__)))
192 cls = type(name, (mixin,) + (exe,) + bases, {})
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst235 parameters to the index() mixin. Patch by Devin Jeanpierre.
D3.7.1rc1.rst326 Support multiple mixin classes when creating Enums.
/external/v8/tools/mb/docs/
Duser_guide.md239 Each mixin value is itself a dictionary that contains one or more of the

12