/external/bcc/src/lua/bcc/vendor/ |
D | middleclass.lua | 93 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/ |
D | pylintrc | 57 # 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/ |
D | pylintrc | 59 # 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/ |
D | pylintrc | 58 # 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/ |
D | collections.abc.rst | 152 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
|
D | socketserver.rst | 220 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
|
D | urllib.request.rst | 342 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/ |
D | mb.py | 454 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/ |
D | TemplateLayout.java | 98 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/ |
D | api.proto | 134 // 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/ |
D | pylintrc | 177 # 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/ |
D | pylintrc | 114 # 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/ |
D | pylintrc | 122 # 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/ |
D | default.pylintrc | 244 # 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/ |
D | pylintrc | 81 # 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/ |
D | userdict.rst | 12 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
|
D | collections.rst | 1024 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
|
D | urllib2.rst | 252 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/ |
D | pylintrc | 324 # 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/ |
D | topbar.scss | 14 @mixin omnibox-width() {
|
D | common.scss | 22 @mixin transition($time:0.1s) { 37 @mixin material-icon($content) {
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 176 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/ |
D | 3.5.0b1.rst | 235 parameters to the index() mixin. Patch by Devin Jeanpierre.
|
D | 3.7.1rc1.rst | 326 Support multiple mixin classes when creating Enums.
|
/external/v8/tools/mb/docs/ |
D | user_guide.md | 239 Each mixin value is itself a dictionary that contains one or more of the
|