HomeSort by relevance Sort by last modified time
    Searched full:superclasses (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /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/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>&#064;After</code> methods declared in superclasses will be run after those of the current
AfterClass.java 13 * exception. The <code>&#064;AfterClass</code> methods declared in superclasses will be run after those of the current
Before.java 12 * The <code>&#064;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 183 // The two classes must have the same superclasses and interfaces
187 // The two classes must have the same superclasses and interfaces
191 // The two classes must have the same superclasses that are caught
319 // Visit all superclasses and collect their interfaces.
330 * Returns the set of superclasses and interfaces that are initialized.
336 // Visit all superclasses and interfaces, collecting the ones that have
349 * Returns the set of superclasses and interfaces that are used in
356 // Visit all superclasses and interfaces, collecting the ones that are
367 * Returns the set of superclasses that are caught as exceptions.
373 // Visit all superclasses, collecting the ones that are caught
    [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/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/
ReferenceValue.java 278 // Collect the superclasses and interfaces of this class.
283 // Collect the superclasses and interfaces of the other class.
295 // Find the common superclasses.
303 // Find a class that is a subclass of all common superclasses,
304 // or that at least has the maximum number of common superclasses.
309 // Go over all common superclasses to find it. In case of
387 * Returns if the number of superclasses of the given class in the given
  /dalvik/vm/oo/
Resolve.h 25 * we travel up into superclasses.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
FeatureUtil.java 84 * or any of its superclasses.
105 * method, its declaring class, or any of its superclasses.
118 * or any of its superclasses.
141 * 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 295 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
  /libcore/luni/src/main/java/java/lang/
Class.java 228 // Traverse all superclasses.
269 * annotations from superclasses that have the "@Inherited" annotation
429 // search superclasses
661 * superclasses of C.
679 // search superclasses
703 * in C, the interfaces it implements or in the superclasses of C. The
725 * superclasses, and all implemented interfaces.
728 // search superclasses
778 * class C represented by this {@code Class}, then the superclasses of C and
779 * finally the interfaces implemented by C and finally the superclasses of
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 35 // superclasses) do lots of "isMemberOfClass/isKindOfClass" calls, and if your
  /external/guava/guava/src/com/google/common/eventbus/
EventBus.java 71 * includes implemented interfaces, all superclasses, and all interfaces
72 * implemented by superclasses.
345 * will include all superclasses (transitively), and all interfaces
346 * implemented by these superclasses.
  /external/mockito/src/org/mockito/internal/util/reflection/
Fields.java 26 * Instance fields declared in the class and superclasses of the given instance.
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 158 /// SuperClasses - The super classes of this class. Note that for simplicities
160 /// operands include all superclasses.
161 std::vector<ClassInfo*> SuperClasses;
231 while (!Root->SuperClasses.empty())
232 Root = Root->SuperClasses.front();
235 while (!RHSRoot->SuperClasses.empty())
236 RHSRoot = RHSRoot->SuperClasses.front();
248 for (std::vector<ClassInfo*>::const_iterator it = SuperClasses.begin(),
249 ie = SuperClasses.end(); it != ie; ++it)
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
ApkCheck.java 118 /* "flatten" superclasses and interfaces */
214 * through its superclasses.
217 * or we can "flatten" the methods declared by the superclasses and

Completed in 5505 milliseconds

1 2 3 4