Home
last modified time | relevance | path

Searched refs:subclasses (Results 1 – 25 of 372) sorted by relevance

12345678910>>...15

/external/proguard/src/proguard/classfile/visitor/
DSubclassFilter.java74 private boolean present(Clazz[] subclasses) in present() argument
76 if (subclasses == null) in present()
81 for (int index = 0; index < subclasses.length; index++) in present()
83 if (subclasses[index].equals(subclass)) in present()
/external/python/cpython2/Lib/ctypes/test/
Dtest_repr.py4 subclasses = [] variable
10 subclasses.append(X)
19 for typ in subclasses:
/external/python/cpython3/Lib/ctypes/test/
Dtest_repr.py4 subclasses = [] variable
10 subclasses.append(X)
19 for typ in subclasses:
/external/doclava/res/assets/templates/
Dclass.cs29 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
30 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
142 <?cs if:subcount(class.subclasses.direct) && !class.subclasses.hidden ?>
145 <?cs call:expandable_class_list("subclasses-direct", class.subclasses.direct, "list") ?>
149 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
152 <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
/external/python/cpython3/Modules/
D_abc.c576 PyObject *ok, *subclasses = NULL, *result = NULL; in _abc__abc_subclasscheck_impl() local
667 subclasses = PyObject_CallMethod(self, "__subclasses__", NULL); in _abc__abc_subclasscheck_impl()
668 if (subclasses == NULL) { in _abc__abc_subclasscheck_impl()
671 if (!PyList_Check(subclasses)) { in _abc__abc_subclasscheck_impl()
675 for (pos = 0; pos < PyList_GET_SIZE(subclasses); pos++) { in _abc__abc_subclasscheck_impl()
676 PyObject *scls = PyList_GET_ITEM(subclasses, pos); in _abc__abc_subclasscheck_impl()
700 Py_XDECREF(subclasses); in _abc__abc_subclasscheck_impl()
/external/bcc/src/lua/bcc/vendor/
Dmiddleclass.lua53 for subclass in pairs(aClass.subclasses) do
79 subclasses = setmetatable({}, {__mode='k'}) }
146 self.subclasses[subclass] = true
/external/clang/test/Analysis/
Dsuperclass.m175 // Do warn for UIResponder subclasses that don't call super
185 // Do not warn for UIResponder subclasses that do the right thing
195 // Do warn for NSResponder subclasses that don't call super
206 // Do not warn for NSResponder subclasses that do the right thing
219 // Do warn for NSDocument subclasses that don't call super
230 // Do not warn for NSDocument subclasses that do the right thing
/external/doclava/res/assets/templates-sdk/
Dpage_info.cs50 <?cs if:inhattrs || inhconstants || inhfields || inhmethods || (!class.subclasses.hidden &&
51 (subcount(class.subclasses.direct) || subcount(class.subclasses.indirect))) ?>
Dclass.cs328 # Collapsible list of subclasses
331 if:subcount(class.subclasses.direct) && !class.subclasses.hidden ?>
336 <span class="expand-control">Known direct subclasses</span>
337 <?cs call:expandable_class_list("subclasses-direct", class.subclasses.direct, "list") ?>
343 <?cs if:subcount(class.subclasses.indirect) && !class.subclasses.hidden ?>
348 <span class="expand-control">Known indirect subclasses</span>
349 … <?cs call:expandable_class_list("subclasses-indirect", class.subclasses.indirect, "list") ?>
/external/python/cpython2/Doc/library/
Dabc.rst36 classes (even built-in classes) and unrelated ABCs as "virtual subclasses" --
37 these and their descendants will be considered subclasses of the registering
114 here can still be called from subclasses. The :meth:`get_iterator` method
146 supported. The :func:`abstractmethod` only affects subclasses derived using
147 regular inheritance; "virtual subclasses" registered with the ABC's
Dcmd.rst84 All subclasses of :class:`Cmd` inherit a predefined :meth:`do_help`. This
126 :class:`Cmd`; it exists to be overridden by subclasses. The return value is
135 a stub in :class:`Cmd`; it exists to be overridden by subclasses. *line* is the
146 in :class:`Cmd`; it exists to be overridden by subclasses.
152 is a stub in :class:`Cmd`; it exists to be overridden by subclasses.
155 Instances of :class:`Cmd` subclasses have some public instance variables:
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/java/com/android/dx/mockito/inline/
DStaticMockMethodAdvice.java145 ArrayList<Class<?>> subclasses = new ArrayList<>(); in getAllSubclasses() local
148 subclasses.add(possibleSubClass); in getAllSubclasses()
152 return subclasses; in getAllSubclasses()
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy45 // Tests (common to all subclasses)
64 // Abstract Method Declarations (must be implemented by all subclasses)
68 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
74 * under test. Concrete subclasses must implement.
/external/python/cpython3/Doc/library/
Dabc.rst61 classes (even built-in classes) and unrelated ABCs as "virtual subclasses" --
62 these and their descendants will be considered subclasses of the registering
145 here can still be called from subclasses. The :meth:`get_iterator` method
178 supported. The :func:`abstractmethod` only affects subclasses derived using
179 regular inheritance; "virtual subclasses" registered with the ABC's
333 the current version of the abstract base class cache for virtual subclasses.
/external/python/cpython3/Doc/c-api/
Ddatetime.rst130 :c:data:`PyDateTime_Date`, including subclasses (such as
150 instance of :c:data:`PyDateTime_DateTime`, including subclasses. The argument
174 :c:data:`PyDateTime_Time`, including subclasses. The argument must not be *NULL*,
198 instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument must
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy54 // Tests (common to all subclasses)
82 // Abstract Method Declarations (must be implemented by all subclasses)
86 …* Create and return a new instance of the CommandHandler class under test. Concrete subclasses mus…
92 * under test. Concrete subclasses must implement.

12345678910>>...15