/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.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/ |
__init__.py | 54 superclass = eval(superclassname) 55 getbaseclasses(superclass) 56 v._propdict.update(getattr(superclass, '_propdict', {})) 57 v._elemdict.update(getattr(superclass, '_elemdict', {}))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
__init__.py | 58 superclass = eval(superclassname) 59 getbaseclasses(superclass) 60 v._propdict.update(getattr(superclass, '_propdict', {})) 61 v._elemdict.update(getattr(superclass, '_elemdict', {}))
|
/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(SdkConstants.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/chromium_org/third_party/icu/source/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/clang/test/SemaObjC/ |
class-def-test-1.m | 26 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', superclass of 'INTF3'}} 35 @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)
|
/external/mockito/src/org/mockito/internal/util/ |
MockCreationValidator.java | 56 // Having a **superclass that do not implements Serializable** might fail as well when serialized
57 // Though it might prevent issues when mockito is mocking a class without superclass.
|
/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/chromium_org/chrome/browser/resources/net_internals/ |
capture_view.js | 12 var superClass = DivView; 20 // Call superclass's constructor. 21 superClass.call(this, CaptureView.MAIN_BOX_ID); 68 // Inherit the superclass's methods. 69 __proto__: superClass.prototype,
|
details_view.js | 9 var superClass = DivView; 18 superClass.call(this, boxId); 33 // Inherit the superclass's methods. 34 __proto__: superClass.prototype, 89 superClass.prototype.show.call(this, isVisible);
|
resizable_vertical_split_view.js | 34 var superClass = View; 40 // Call superclass's constructor. 41 superClass.call(this); 66 // Inherit the superclass's methods. 67 __proto__: superClass.prototype, 81 superClass.prototype.setGeometry.call(this, left, top, width, height); 107 superClass.prototype.show.call(this, isVisible);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
ClassPath.java | 382 class1 = class1.superclass; 387 class2 = class2.superclass; 395 class1 = class1.superclass; 397 class2 = class2.superclass; 414 //same number of dimensions, for the common superclass of the 2 element classes 584 private final ClassDef superclass; field in class:ClassPath.ClassDef 587 * all interfaces implemented by the superclass, and all super-interfaces of any implemented interface. The 637 this.superclass = ClassPath.theClassPath.javaLangObjectClassDef; 644 vtable = superclass.vtable; 645 methodLookup = superclass.methodLookup 841 ClassDef superclass; local [all...] |
/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/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
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);
|