HomeSort by relevance Sort by last modified time
    Searched full:superclass (Results 51 - 75 of 779) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MismatchedTokenException.js 5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call(
EarlyExitException.js 9 org.antlr.runtime.EarlyExitException.superclass.constructor.call(
MissingTokenException.js 3 org.antlr.runtime.MissingTokenException.superclass.constructor.call(
NoViableAltException.js 6 org.antlr.runtime.NoViableAltException.superclass.constructor.call(this, input);
UnwantedTokenException.js 4 org.antlr.runtime.UnwantedTokenException.superclass.constructor.call(
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEarlyExitException.js 3 var sup = org.antlr.runtime.tree.RewriteEarlyExitException.superclass;
RewriteEmptyStreamException.js 3 var sup = org.antlr.runtime.tree.RewriteEmptyStreamException.superclass;
RewriteRuleNodeStream.js 5 org.antlr.runtime.tree.RewriteRuleNodeStream.superclass.constructor.apply(this, arguments);
RewriteRuleTokenStream.js 2 var sup = org.antlr.runtime.tree.RewriteRuleTokenStream.superclass;
  /external/clang/test/ASTMerge/
interface.m 8 // CHECK: interface1.m:21:17: note: inherits from superclass 'I2' here
9 // CHECK: interface2.m:21:17: note: inherits from superclass 'I1' here
19 // CHECK: interface1.m:100:17: note: inherits from superclass 'I12' here
20 // CHECK: interface2.m:99:17: note: inherits from superclass 'I11' here
  /external/proguard/src/proguard/classfile/
LibraryClass.java 43 * An extra field pointing to the superclass of this class.
46 public Clazz superClass;
160 return superClass;
177 return superClass != null &&
178 superClass.extends_(clazz);
189 if (superClass != null &&
190 superClass.extendsOrImplements(clazz))
264 // Then visit its superclass, recursively.
267 if (superClass != null)
269 superClass.hierarchyAccept(true
    [all...]
  /external/proguard/src/proguard/classfile/util/
ClassSubHierarchyInitializer.java 28 * of their superclass. These subclass lists make it more convenient to travel
39 // Add this class to the subclasses of its superclass.
52 // Add this class to the subclasses of its superclass,
53 addSubclass(libraryClass, libraryClass.superClass);
ClassSuperHierarchyInitializer.java 29 * This ClassVisitor initializes the superclass hierarchy of all classes that
33 * interfaces, replacing the superclass names and interface names. The direct
90 // Keep a reference to the superclass.
91 libraryClass.superClass = findClass(className, superClassName);
145 // We didn't find the superclass or interface. Print a warning.
150 ": can't find superclass or interface " +
156 // The superclass or interface was found in the program class pool.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutParamsParser.java 235 IClassDescriptor superClass = viewClass.getSuperclass();
236 ExtViewClassInfo superClassInfo = addView(superClass);
262 IClassDescriptor superClass = groupClass.getSuperclass();
265 // superClass != mTopViewClass || fqcn.equals(AndroidConstants.CLASS_VIEWGROUP);
267 if (superClass != null && superClass.equals(mTopViewClass) == false) {
268 ExtViewClassInfo superClassInfo = addGroup(superClass);
296 for (IClassDescriptor superClass = groupClass.getSuperclass();
298 superClass != null &&
299 superClass.equals(mTopViewClass) == false
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TLexer.g 2 // generator. It shows how to use a superclass to implement
18 superClass = AbstractTLexer;
TParser.g 13 // Use a superclass to implement all helper
18 superClass = AbstractTParser;
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t043synpred.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
  /external/clang/test/SemaObjC/
class-def-test-1.m 25 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', superclass of 'INTF3'}}
34 @interface SomeClassSub : SomeClassSup // expected-error{{cannot find interface declaration for 'SomeClassSup', superclass of 'SomeClassSub'}}
forward-class-1.m 6 @interface INTF : FOO // expected-error {{attempting to use the forward class 'FOO' as superclass of 'INTF'}}
50 @interface A : B {} // expected-error {{attempting to use the forward class 'B' as superclass of 'A'}}
  /external/icu4c/test/letest/
SimpleFontInstance.h 47 // We really want to inherit this method from the superclass, but some compilers
51 // We really want to inherit this method from the superclass, but some compilers
  /external/jsr305/ri/src/main/java/javax/annotation/
ParametersAreNullableByDefault.java 15 * <li>The method overrides a method in a superclass (in which case the
16 * annotation of the corresponding parameter in the superclass applies)
  /libcore/luni/src/main/java/java/lang/
Override.java 26 * superclass. Compilers produce an error if a method annotated with @Override
27 * does not actually override a method in a superclass.
  /external/javassist/src/main/javassist/util/proxy/
SerializedProxy.java 32 private String superClass;
40 superClass = proxy.getSuperclass().getName();
81 f.setSuperclass(loadClass(superClass));
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMockGenerator.java 234 CtClass generateSubClass(Class<?> superClass, CtClass newInterface, SdkVersion sdkVersion)
236 if (classExists(FileUtils.getSubclassNameFor(superClass, sdkVersion))) {
238 return getClassPool().get(FileUtils.getSubclassNameFor(superClass, sdkVersion));
244 CtClass newClass = generateSkeletalClass(superClass, newInterface, sdkVersion);
252 addMethods(superClass, newClass);
255 addConstructors(newClass, superClass);
260 private void addConstructors(CtClass clazz, Class<?> superClass) throws ClassNotFoundException {
261 CtClass superCtClass = getCtClassForClass(superClass);
346 void addMethods(Class<?> superClass, CtClass newClass) {
347 Method[] methods = getAllMethods(superClass);
    [all...]
  /external/clang/test/CodeGenObjC/
2008-10-3-EhValue.m 15 -superclass;

Completed in 3404 milliseconds

1 23 4 5 6 7 8 91011>>