/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t053heteroTP17.g | 10 V17.superclass.constructor.call(this, new org.antlr.runtime.CommonToken(ttype));
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
capture_status_view.js | 12 var superClass = DivView; 15 superClass.call(this, CaptureStatusView.MAIN_BOX_ID); 34 // Inherit the superclass's methods. 35 __proto__: superClass.prototype,
|
timeline_data_series.js | 143 var superClass = TimelineDataSeries; 149 superClass.call(this, TimelineDataType.SOURCE_COUNT); 162 // Inherit the superclass's methods. 163 __proto__: superClass.prototype, 216 var superClass = SourceCountDataSeries; 222 superClass.call(this, EventSourceType.SOCKET, EventType.SOCKET_IN_USE); 226 // Inherit the superclass's methods. 227 __proto__: superClass.prototype, 237 superClass.prototype.onReceivedLogEntry.call(this, entry); 251 var superClass = TimelineDataSeries [all...] |
bandwidth_view.js | 10 var superClass = DivView; 18 // Call superclass's constructor. 19 superClass.call(this, BandwidthView.MAIN_BOX_ID); 38 // Inherit the superclass's methods. 39 __proto__: superClass.prototype,
|
modules_view.js | 17 var superClass = DivView; 25 // Call superclass's constructor. 26 superClass.call(this, ModulesView.MAIN_BOX_ID); 50 // Inherit the superclass's methods. 51 __proto__: superClass.prototype,
|
sockets_view.js | 16 var superClass = DivView; 24 // Call superclass's constructor. 25 superClass.call(this, SocketsView.MAIN_BOX_ID); 52 // Inherit the superclass's methods. 53 __proto__: superClass.prototype,
|
horizontal_scrollbar_view.js | 18 var superClass = DivView; 24 superClass.call(this, divId); 41 // Inherit the superclass's methods. 42 __proto__: superClass.prototype, 45 superClass.prototype.setGeometry.call(this, left, top, width, height); 50 superClass.prototype.show.call(this, isVisible);
|
/external/llvm/test/TableGen/ |
SuperSubclassSameName.td | 3 // Test for template arguments that have the same name as superclass template
|
/external/objenesis/main/src/org/objenesis/instantiator/ |
SerializationInstantiatorHelper.java | 28 * Returns the first non-serializable superclass of a given class. According to Java Object
30 * accessible no-arg constructor from the first non-serializable superclass in the object's
33 * @param type Serializable class for which the first non-serializable superclass is to be found
34 * @return The first non-serializable superclass of 'type'.
|
/external/smali/baksmali/src/test/smali/deodex_test1/ |
superclass.smali | 16 const-string v1, "superclass.somemethod"
|
/external/smali/baksmali/src/test/smali/deodex_test2/bootclass_classes/ |
superclass.smali | 16 const-string v1, "superclass.somemethod"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
__init__.py | 38 superclass = eval(superclassname) 39 getbaseclasses(superclass) 40 v._propdict.update(getattr(superclass, '_propdict', {})) 41 v._elemdict.update(getattr(superclass, '_elemdict', {}))
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/check_cast/d/ |
T_check_cast_2.d | 22 .class public dot.junit.opcodes.check_cast.d.T_check_cast_2.SuperClass 35 .super dot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass 40 invoke-direct {v0}, dot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass/<init>()V 62 ; (SubClass instanceof SuperClass) 65 check-cast v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass 67 ; (SubClass[] instanceof SuperClass[]) 70 check-cast v10, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass; 83 ; !(SuperClass instanceof SubClass) 85 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass 86 invoke-direct {v10}, dot/junit/opcodes/check_cast/d/T_check_cast_2/SuperClass/<init>() [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/instance_of/d/ |
T_instance_of_2.d | 22 .class public dot.junit.opcodes.instance_of.d.T_instance_of_2.SuperClass 35 .super dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass 40 invoke-direct {v0}, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass/<init>()V 62 ; (SubClass instanceof SuperClass) 65 instance-of v15, v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass 68 ; (SubClass[] instanceof SuperClass[]) 71 instance-of v15, v10, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass; 85 ; !(SuperClass instanceof SubClass) 86 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass 87 invoke-direct {v10}, dot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass/<init>() [all...] |
/external/clang/test/SemaObjC/ |
undef-superclass-1.m | 5 @interface INTF :SUPER // expected-error {{attempting to use the forward class 'SUPER' as superclass of 'INTF'}} 16 @interface INTF3 : Y // expected-error {{attempting to use the forward class 'Y' as superclass of 'INTF3'}} \ 29 @interface RecursiveClass : RecursiveClass // expected-error {{trying to recursively use 'RecursiveClass' as superclass of 'RecursiveClass'}}
|
/external/javassist/src/main/javassist/ |
CtNewClass.java | 28 boolean isInterface, CtClass superclass) { 32 if (isInterface || superclass == null) 35 superName = superclass.getName(); 38 if (isInterface && superclass != null) 39 classfile.setInterfaces(new String[] { superclass.getName() });
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ClassDefItem.java | 55 * {@code null-ok;} superclass or {@code null} if this class is a/the 58 private final CstType superclass; field in class:ClassDefItem 84 * @param superclass {@code null-ok;} superclass or {@code null} if 91 CstType superclass, TypeList interfaces, CstUtf8 sourceFile) { 97 * TODO: Maybe check accessFlags and superclass, at 107 this.superclass = superclass; 150 if (superclass != null) { 151 typeIds.intern(superclass); [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ClassDefItem.java | 52 * {@code null-ok;} superclass or {@code null} if this class is a/the 55 private final CstType superclass; field in class:ClassDefItem 81 * @param superclass {@code null-ok;} superclass or {@code null} if 88 CstType superclass, TypeList interfaces, CstString sourceFile) { 94 * TODO: Maybe check accessFlags and superclass, at 104 this.superclass = superclass; 147 if (superclass != null) { 148 typeIds.intern(superclass); [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefItem.java | 53 * {@code null-ok;} superclass or {@code null} if this class is a/the 56 private final CstType superclass; field in class:ClassDefItem 82 * @param superclass {@code null-ok;} superclass or {@code null} if 89 CstType superclass, TypeList interfaces, CstString sourceFile) { 95 * TODO: Maybe check accessFlags and superclass, at 105 this.superclass = superclass; 148 if (superclass != null) { 149 typeIds.intern(superclass); [all...] |
/external/proguard/src/proguard/classfile/ |
ProgramClass.java | 213 Clazz superClass = getSuperClass(); 214 return superClass != null && 215 superClass.extends_(clazz); 226 Clazz superClass = getSuperClass(); 227 if (superClass != null && 228 superClass.extendsOrImplements(clazz)) 297 // Then visit its superclass, recursively. 300 Clazz superClass = getSuperClass(); 301 if (superClass != null) 303 superClass.hierarchyAccept(true [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
MismatchedRangeExceptions.js | 6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
|
MismatchedTokenException.js | 5 org.antlr.runtime.MismatchedTokenException.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;
|
/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
|