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
125
) sorted by null
1
2
3
4
5
/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));
/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/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/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/junit/src/org/junit/runners/model/
TestClass.java
66
* its
superclasses
that are annotated with {@code annotationClass}.
75
*
superclasses
that are annotated with {@code annotationClass}.
/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/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/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
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java
82
* or any of its
superclasses
.
103
* method, its declaring class, or any of its
superclasses
.
116
* or any of its
superclasses
.
139
* method, its declaring class, or any of its
superclasses
.
/external/junit/src/org/junit/runners/
ParentRunner.java
144
* and
superclasses
before the previous step; if any throws an
147
* and
superclasses
before any of the previous steps; all AfterClass methods are
165
* and
superclasses
before executing {@code statement}; if any throws an
177
* and
superclasses
before executing {@code statement}; all AfterClass methods are
BlockJUnit4ClassRunner.java
89
* methods annotated with {@code @Test} on this class and
superclasses
that
214
* and
superclasses
before any of the previous steps; if any throws an
217
* and
superclasses
after any of the previous steps; all After methods are
295
* methods on this class and
superclasses
before running {@code next}; if
311
* methods on this class and
superclasses
before running {@code next}; all
/sdk/eclipse/
dictionary.txt
296
superclasses
/external/proguard/src/proguard/classfile/util/
ClassSuperHierarchyInitializer.java
32
* Visited library classes get direct references to their
superclasses
and
37
* This visitor optionally prints warnings if some
superclasses
can't be found
/external/guava/guava/src/com/google/common/eventbus/
EventBus.java
72
* includes implemented interfaces, all
superclasses
, and all interfaces
73
* implemented by
superclasses
.
345
* will include all
superclasses
(transitively), and all interfaces
346
* implemented by these
superclasses
.
/external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java
119
*
superclasses
of the same package.
131
* including those "inherited" from
superclasses
of the same package.
140
* inherited from
superclasses
of the same package.
160
* {@code instance}, including those inherited from
superclasses
of the same
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InterfaceMaker.java
68
* Methods from
superclasses
are included, except for methods declared in the base
/external/mockito/src/org/mockito/internal/util/reflection/
Fields.java
26
* Instance fields declared in the class and
superclasses
of the given instance.
Completed in 524 milliseconds
1
2
3
4
5