HomeSort by relevance Sort by last modified time
    Searched full:superclass (Results 126 - 150 of 1115) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t036multipleReturnValues.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t037rulePropertyRef.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t039labels.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t041parameters.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t045dfabug.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t046rewrite.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
t047treeparser.html 19 TLexer.superclass.constructor.apply(this, arguments);
28 TParser.superclass.constructor.apply(this, arguments);
37 TWalker.superclass.constructor.apply(this, arguments);
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 27 CtClass superclass) {
28 super(realName, cp, isInterface, superclass);
  /external/objenesis/main/src/org/objenesis/instantiator/sun/
SunReflectionFactorySerializationInstantiator.java 28 * a way compatible with serialization, calling the first non-serializable superclass' no-arg
48 throw new ObjenesisException(new NotSerializableException(type+" has no suitable superclass constructor"));
  /frameworks/base/core/java/android/view/
AbsSavedState.java 41 * @param superState The state of the superclass of this view
51 * Constructor used when reading from a parcel. Reads the state of the superclass.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
TreeParser.js 3 * the BaseRecognizer superclass.
6 org.antlr.runtime.tree.TreeParser.superclass.constructor.call(this, arguments[1]);
20 TP.superclass.reset.call(this); // reset all recognizer state variables
112 return TP.superclass.getErrorMessage.call(this, e, tokenNames);
116 TP.superclass.traceIn.call(this, ruleName, ruleIndex, this.input.LT(1));
120 TP.superclass.traceOut.call(this, ruleName, ruleIndex, this.input.LT(1));
  /external/chromium_org/chrome/browser/resources/net_internals/
tab_switcher_view.js 18 var superClass = View;
41 superClass.call(this);
45 // Inherit the superclass's methods.
46 __proto__: superClass.prototype,
53 superClass.prototype.setGeometry.call(this, left, top, width, height);
63 superClass.prototype.show.call(this, isVisible);
waterfall_view.js 12 var superClass = DivView;
20 // Call superclass's constructor.
21 superClass.call(this, WaterfallView.MAIN_BOX_ID);
71 // Inherit the superclass's methods.
72 __proto__: superClass.prototype,
111 superClass.prototype.setGeometry.call(this, left, top, width, height);
116 superClass.prototype.show.call(this, isVisible);
export_view.js 12 var superClass = DivView;
20 // Call superclass's constructor.
21 superClass.call(this, ExportView.MAIN_BOX_ID);
58 // Inherit the superclass's methods.
59 __proto__: superClass.prototype,
hsts_view.js 18 var superClass = DivView;
26 // Call superclass's constructor.
27 superClass.call(this, HSTSView.MAIN_BOX_ID);
72 // Inherit the superclass's methods.
73 __proto__: superClass.prototype,
import_view.js 16 var superClass = DivView;
24 // Call superclass's constructor.
25 superClass.call(this, ImportView.MAIN_BOX_ID);
54 // Inherit the superclass's methods.
55 __proto__: superClass.prototype,
proxy_view.js 17 var superClass = DivView;
25 // Call superclass's constructor.
26 superClass.call(this, ProxyView.MAIN_BOX_ID);
59 // Inherit the superclass's methods.
60 __proto__: superClass.prototype,
test_view.js 17 var superClass = DivView;
25 // Call superclass's constructor.
26 superClass.call(this, TestView.MAIN_BOX_ID);
54 // Inherit the superclass's methods.
55 __proto__: superClass.prototype,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderClassDef.java 49 @Nullable final BuilderTypeReference superclass; field in class:BuilderClassDef
64 @Nullable BuilderTypeReference superclass,
79 this.superclass = superclass;
91 @Nullable @Override public String getSuperclass() { return superclass==null?null:superclass.getType(); }
  /external/javassist/src/main/javassist/bytecode/
ClassFile.java 38 int superClass;
118 * @param superclass
121 public ClassFile(boolean isInterface, String classname, String superclass) {
131 initSuperclass(superclass);
142 private void initSuperclass(String superclass) {
143 if (superclass != null) {
144 this.superClass = constPool.addClassInfo(superclass);
145 cachedSuperclass = superclass;
148 this.superClass = constPool.addClassInfo("java.lang.Object")
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java 132 // other object is superclass
135 // other object is superclass two levels up
153 // undefined superclass and object
159 // undefined superclass and unrelated type
171 // undefined superclass and direct subclass
174 // siblings with undefined superclass
177 // undefined superclass and nephew
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassDefinition.java 42 private ITypeReference superClass = Uninitialized.unset();
126 return superClass;
129 public void setSuperClass(ITypeReference superClass) {
130 this.superClass = superClass;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 59 * A class "prototype". This contains things like the interfaces, the superclass, the vtable and the instance fields
109 * interfaces transitively implemented), but not for any interfaces that are only implemented by a superclass of
112 * For any interfaces that are only implemented by a superclass (or the class itself, if the class is an interface),
165 String superclass = getSuperclass();
166 if (superclass != null) {
167 ClassProto superclassProto = (ClassProto) classPath.getClass(superclass);
188 * This does not include any interfaces that are only implemented by a superclass
402 ClassProto superclass = null;
404 superclass = (ClassProto) classPath.getClass(superclassType);
405 if (superclass != null)
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ClassProjection.java 140 private ITypeReference superClass = null;
146 superClass = ViewpointAdapter.substitutedTypeReference(original
151 return superClass;
  /dalvik/hit/src/com/android/hit/
Heap.java 163 ClassObj superClass = mClassesById.get(theClass.mSuperclassId);
165 if (superClass != null) {
166 superclassName = superClass.mClassName;

Completed in 1396 milliseconds

1 2 3 4 56 7 8 91011>>