/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
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);
|
rhino-python.prog | 39 MyLexer.superclass.constructor.apply(this, arguments); 46 return MyLexer.superclass.nextToken.call(this);
|
t044trace.html | 18 TLexer.superclass.constructor.apply(this, arguments); 35 TParser.superclass.constructor.apply(this, arguments);
|
/external/harfbuzz_ng/src/hb-icu-le/ |
PortableFontInstance.h | 86 // We really want to inherit this method from the superclass, but some compilers 90 // We really want to inherit this method from the superclass, but some compilers
|
/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);
|
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/doclava/src/com/google/doclava/ |
ClassInfo.java | 114 ClassInfo containingClass, ClassInfo superclass, 127 mRealSuperclass = superclass; 131 // after providing new methods and new superclass info,clear any cached 132 // lists of self + superclass methods, ctors, etc. 285 ClassInfo superclass = mRealSuperclass; local 286 while (superclass != null && !superclass.checkLevel()) { 287 gatherHiddenInterfaces(superclass, interfaces); 288 superclass = superclass.mRealSuperclass 420 ClassInfo superclass = superclass(); local 459 ClassInfo superclass = superclass(); local 650 public ClassInfo superclass() { method in class:ClassInfo 655 ClassInfo superclass = mRealSuperclass; local [all...] |
/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...] |
/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;
|
/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;
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
Extension.java | 83 Type superclass = getClass().getGenericSuperclass(); local 84 if (superclass instanceof Class) { 87 this.type = ((ParameterizedType) superclass).getActualTypeArguments()[0];
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
ClassAttributeDescriptor.java | 33 /** Superclass of the class value. */ 45 * @param superClassName the fully qualified name of the superclass of the class represented 69 * @param superClassName the fully qualified name of the superclass of the class represented
|
/external/jmonkeyengine/engine/src/core/com/jme3/export/ |
SavableClassUtil.java | 91 Class superclass = clazz; local 93 versionList.add(getSavableVersion(superclass)); 94 superclass = superclass.getSuperclass(); 95 } while (superclass != null && SavableClassUtil.isImplementingSavable(superclass));
|
/external/chromium_org/third_party/icu/source/test/letest/ |
PortableFontInstance.h | 93 // We really want to inherit this method from the superclass, but some compilers 97 // We really want to inherit this method from the superclass, but some compilers
|
SimpleFontInstance.cpp | 89 // We really want to inherit this method from the superclass, but some compilers 96 // We really want to inherit this method from the superclass, but some compilers
|