OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:superclasses
(Results
1 - 25
of
304
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/testng/src/test/java/test/verify/
Verify3SampleTest.java
6
* Make sure that @Listeners annotations can come from
superclasses
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java
162
List<String>
superClasses
= null;
166
superClasses
= Arrays.asList(CLASS_V4_FRAGMENT, CLASS_FRAGMENT);
169
superClasses
= Collections.singletonList(CLASS_VIEW);
173
superClasses
= Collections.singletonList(CLASS_ACTIVITY);
176
if (
superClasses
!= null) {
183
IType type = javaProject.findType(
superClasses
.get(0));
194
assert
superClasses
.size() <= 2; // If more, need to do additional work below
195
if (
superClasses
.size() == 2) {
196
type = javaProject.findType(
superClasses
.get(1));
/external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_streaming_fixture.h
16
// This fixture will, in addition to the work done by its
superclasses
,
before_streaming_fixture.h
18
// This fixture will, in addition to the work done by its
superclasses
,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/external/python/cpython2/Lib/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep352.py
56
superclasses
= [] # Loop will insert base exception
77
superclasses
.append((last_depth, last_exc))
79
while
superclasses
[-1][0] >= depth:
80
superclasses
.pop()
81
self.assertTrue(issubclass(exc,
superclasses
[-1][1]),
83
superclasses
[-1][1].__name__))
/external/clang/test/ASTMerge/
interface.m
7
// CHECK: interface1.m:21:12: error: class 'I4' has incompatible
superclasses
18
// CHECK: interface1.m:100:17: error: class 'I15' has incompatible
superclasses
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
IAndroidClassLoader.java
53
* @param
superClasses
The super classes of all the classes to find.
63
String rootPackage, String[]
superClasses
)
LayoutParamsParser.java
153
String[]
superClasses
= new String[2 + (paramsClassName == null ? 0 : 1)];
154
superClasses
[0] = groupClassName;
155
superClasses
[1] = rootClassName;
157
superClasses
[2] = paramsClassName;
160
mClassLoader.findClassesDerivingFrom("android.",
superClasses
); //$NON-NLS-1$
/external/junit/src/main/java/org/junit/
After.java
13
* exception. The <code>@After</code> methods declared in
superclasses
will be run after those of the current
AfterClass.java
13
* exception. The <code>@AfterClass</code> methods declared in
superclasses
will be run after those of the current
Before.java
12
* The <code>@Before</code> methods of
superclasses
will be run before those of the current class,
BeforeClass.java
13
* the test methods in the class. The <code>@BeforeClass</code> methods of
superclasses
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
SuperTypesLastSorter.java
16
* Sort fields in an order suitable for injection, by name with
superclasses
/external/proguard/src/proguard/optimize/peephole/
ClassMerger.java
204
(!DETAILS || print(programClass, "Same initialized
superclasses
?")) &&
206
// The two classes must have the same
superclasses
and interfaces
210
(!DETAILS || print(programClass, "Same instanceofed
superclasses
?")) &&
212
// The two classes must have the same
superclasses
and interfaces
216
(!DETAILS || print(programClass, "Same caught
superclasses
?")) &&
218
// The two classes must have the same
superclasses
that are caught
404
// Visit all
superclasses
and collect their interfaces.
432
* Returns the set of
superclasses
and interfaces that are initialized.
438
// Visit all
superclasses
and interfaces, collecting the ones that have
449
* Returns the set of
superclasses
and interfaces that are used i
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java
44
* Get the chain of
superclasses
of the given class. The first element will be the immediate superclass followed by
52
* @return An iterable containing the
superclasses
of this class.
/external/junit/src/main/java/org/junit/runners/model/
TestClass.java
110
* its
superclasses
that are annotated}.
122
* its
superclasses
that are annotated with {@code annotationClass}.
131
*
superclasses
that are annotated.
141
*
superclasses
that are annotated with {@code annotationClass}.
/external/proguard/src/proguard/classfile/visitor/
ImplementingClassConstantFilter.java
46
* @param implementingClass the class whose
superclasses
and interfaces will
SubclassFilter.java
40
* @param subclass the class whose
superclasses
will not be visited.
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
ClassProcessor.java
60
// Ensure
superclasses
are processed first. We need it since we use information
61
// about methods added to
superclasses
when we decide if we want to add a default
118
// by this class as well as its
superclasses
.
140
// Remove from candidates methods defined in class or any of its
superclasses
.
/external/proguard/src/proguard/evaluation/value/
TypedReferenceValue.java
352
// Collect the
superclasses
or the interfaces of this class.
373
// Collect the
superclasses
or the interfaces of the other class.
401
// Find the common
superclasses
.
414
// Find a class that is a subclass of all common
superclasses
,
415
// or that at least has the maximum number of common
superclasses
.
420
// Go over all common
superclasses
to find it. In case of
471
* Returns if the number of
superclasses
of the given class in the given
Completed in 1086 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>