/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
WidgetClassLoader.java | 105 void setSuperClass(ClassDescriptor superClass) { 106 mSuperClass = superClass; 258 ClassDescriptor superClass = processClass(classes, index+1, map); 259 if (superClass != null) { 260 clazz.setSuperClass(superClass);
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
events_view.js | 33 var superClass = View; 41 // Call superclass's constructor. 42 superClass.call(this); 106 // Inherit the superclass's methods. 107 __proto__: superClass.prototype, 124 superClass.prototype.setGeometry.call(this, left, top, width, height); 129 superClass.prototype.show.call(this, isVisible);
|
/art/runtime/mirror/ |
class.h | 685 // Finds the given instance field in this class or a superclass. 689 // Finds the given instance field in this class or a superclass, only searches classes that 700 // Finds the given static field in this class or a superclass. 704 // Finds the given static field in this class or superclass, only searches classes that 785 // listed in ifields; fields declared by a superclass are listed in 786 // the superclass's Class.ifields. 795 // pair for each interface we support directly, indirectly via superclass, or indirectly via a 796 // superinterface. This will be null if neither we nor our superclass implement any interfaces. 812 // The superclass, or NULL if this is java.lang.Object, an interface or primitive type. 821 // Virtual method table (vtable), for use by "invoke-virtual". The vtable from the superclass i [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ClassFileWriter.java | 38 * int superClass = cpw.addClassInfo("java/lang/Object"); 46 * mw.add16(cpw.addMethodrefInfo(superClass, signature)); 57 * byte[] classfile = cfw.end(AccessFlag.PUBLIC, thisClass, superClass, 80 int thisClass, superClass; 119 * @param superClass super class. an index indicating its <code>CONSTANT_Class_info</code>. 127 public byte[] end(int accessFlags, int thisClass, int superClass, 132 output.writeShort(superClass); 162 * @param superClass super class. an index indicating its <code>CONSTANT_Class_info</code>. 171 int accessFlags, int thisClass, int superClass, 179 out.writeShort(superClass); [all...] |
/external/mockito/src/org/mockito/internal/matchers/apachecommons/ |
EqualsBuilder.java | 109 * <p>Static fields will not be tested. Superclass fields will be included.</p> 131 * <p>Static fields will not be tested. Superclass fields will be included.</p> 155 * <p>Static fields will not be tested. Superclass fields will be included.</p> 179 * <p>Static fields will not be included. Superclass fields will be appended 180 * up to and including the specified superclass. A null superclass is treated 186 * @param reflectUpToClass the superclass to reflect up to (inclusive), 208 * <p>Static fields will not be included. Superclass fields will be appended 209 * up to and including the specified superclass. A null superclass is treate [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/ |
Test_invoke_direct.java | 107 * @title invoke-direct target must be in self or superclass 190 * @title Superclass' method call 258 * @title Attempt to invoke private method of superclass.
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/ |
Test_invoke_direct_range.java | 107 * @title invoke-direct target must be in self or superclass 190 * @title Superclass' method call 258 * @title Attempt to invoke private method of superclass. Java throws IllegalAccessError
|
/external/clang/test/Analysis/ |
superclass.m | 52 // Do not warn if UIViewController/*Responder/NSDocument is not our superclass 72 // Warn if UIViewController is our superclass and we do not call super 96 // Do not warn if UIViewController is our superclass but we did call super
|
/libcore/luni/src/main/java/java/io/ |
ObjectStreamClass.java | 161 // Descriptor for the superclass of the class associated with this 163 private transient ObjectStreamClass superclass; field in class:ObjectStreamClass 246 Class<?> superclass = cl.getSuperclass(); local 247 if (superclass != null) { 248 result.setSuperclass(lookup(superclass)); 378 * The value is computed based on the class name, superclass chain, field [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_INVOKE_SUPER.S | 41 bcs .L${opcode}_nsm @ method not present in superclass
|
/dalvik/vm/mterp/x86/ |
OP_INVOKE_SUPER.S | 38 jae .L${opcode}_nsm # method not present in superclass
|
/dalvik/vm/oo/ |
Object.h | 393 /* superclass, or NULL if this is java.lang.Object */ 418 * vtable from the superclass is copied in, and virtual methods from 427 * directly, indirectly via superclass, or indirectly via 428 * superinterface. This will be null if neither we nor our superclass 453 * are listed in ifields; fields defined by a superclass are listed 454 * in the superclass's ClassObject.ifields. 587 * Find a method within a class. The superclass is not searched. 637 * Find a field within a class. The superclass is not searched. 656 * searches the specified class, not the superclass.
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
PackageInfo.java | 53 * @param superclassName Fully-qualified binary or non-binary superclass
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
FastSimpleExpression.g3 | 43 @lexer::superClass{Antlr.Runtime.SlimLexer}
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ParserRuleReturnScope.java | 48 * satisfy the superclass interface.
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
ANTLRFileStream.js | 25 org.antlr.runtime.ANTLRFileStream.superclass.constructor.call(this, data);
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t004lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t005lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t008lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t009lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t010lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t011lexer.html | 17 TLexer.superclass.constructor.apply(this, arguments);
|
t017parser.html | 19 TestParser.superclass.constructor.apply(this, arguments);
|
t030specialStates.html | 20 TParser.superclass.constructor.apply(this, arguments);
|
t031emptyAlt.html | 20 TParser.superclass.constructor.apply(this, arguments);
|