Searched refs:superclass (Results 51 - 75 of 101) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js54 var sup = org.antlr.runtime.TokenRewriteStream.superclass;
109 trs.InsertBeforeOp.superclass.constructor.call(this, index, text);
122 trs.ReplaceOp.superclass.constructor.call(this, from, text);
135 trs.DeleteOp.superclass.constructor.call(this, from, to);
H A DRecognitionException.js32 org.antlr.runtime.RecognitionException.superclass.constructor.call(this);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTree.js24 org.antlr.runtime.tree.CommonTree.superclass.constructor.call(this, node);
H A DCommonTreeAdaptor.js29 return org.antlr.runtime.tree.CommonTreeAdaptor.superclass.create.apply(this, arguments);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DReflectUtils.java350 Class superclass = type.getSuperclass();
351 if (superclass != null) {
352 addAllMethods(superclass, list);
363 Class superclass = type.getSuperclass();
364 if (superclass != null) {
366 addAllInterfaces(superclass, list);
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java111 String superclass = attributes.getValue("extends");
112 if (superclass == null && !isInterface && !"java.lang.Object".equals(qualifiedName)) {
113 throw new AssertionError("no superclass known for class " + name);
116 // Resolve superclass after .xml completely parsed.
117 mApi.mapClassToSuper(mCurrentClass, superclass);
/external/chromium_org/extensions/renderer/resources/
H A Dutils.js77 * @param {{superclass: ?Function,
81 * implementation class to be exposed. |superclass| represents the
82 * constructor of the class to be used as the superclass of the exposed
88 var publicClass = createClassWrapper(name, cls, exposed.superclass);
/external/javassist/src/main/javassist/
H A DClassPool.java793 * @param superclass the super class.
796 public synchronized CtClass makeClass(String classname, CtClass superclass) argument
800 CtClass clazz = new CtNewClass(classname, this, false, superclass);
837 * @param superclass the super interface.
840 public synchronized CtClass makeInterface(String name, CtClass superclass) argument
844 CtClass clazz = new CtNewClass(name, this, true, superclass);
H A DCtClass.java569 public boolean subclassOf(CtClass superclass) { argument
574 * Obtains the class object representing the superclass of the
H A DCtClassType.java669 public boolean subclassOf(CtClass superclass) { argument
670 if (superclass == null)
673 String superName = superclass.getName();
/external/doclava/src/com/google/doclava/
H A DSinceTagger.java220 for (ClassInfo superclass : spec.hierarchy()) {
221 if (superclass.allMethods().containsKey(method.getHashableName())) {
H A DDoclava.java1009 ClassInfo supr = cl.superclass();
1589 while (!remove && (clazz = clazz.superclass()) != null && !clazz.equals(topLayoutParams)) {
1696 while ((superClass = superClass.superclass()) != null) {
1723 ClassInfo parent = clazz.superclass();
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h931 std::random_access_iterator_tag, Element> superclass; typedef in class:google::protobuf::internal::RepeatedPtrIterator
935 typedef typename superclass::reference reference;
936 typedef typename superclass::pointer pointer;
937 typedef typename superclass::difference_type difference_type;
1019 std::random_access_iterator_tag, Element*> superclass; typedef in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
1023 typedef typename superclass::reference reference;
1024 typedef typename superclass::pointer pointer;
1025 typedef typename superclass::difference_type difference_type;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.h1183 std::random_access_iterator_tag, Element> superclass; typedef in class:google::protobuf::internal::RepeatedPtrIterator
1187 typedef typename superclass::reference reference;
1188 typedef typename superclass::pointer pointer;
1189 typedef typename superclass::difference_type difference_type;
1274 std::random_access_iterator_tag, Element*> superclass; typedef in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
1278 typedef typename superclass::reference reference;
1279 typedef typename superclass::pointer pointer;
1280 typedef typename superclass::difference_type difference_type;
/external/javassist/src/main/javassist/bytecode/
H A DMethodInfo.java478 * @param superclass
481 public void setSuperclass(String superclass) throws BadBytecode { argument
493 int sc = cp.addClassInfo(superclass);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DDexBuilder.java111 @Nullable String superclass,
135 context.typePool.internNullableType(superclass),
109 internClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable List<String> interfaces, @Nullable String sourceFile, @Nonnull Set<? extends Annotation> annotations, @Nullable Iterable<? extends BuilderField> fields, @Nullable Iterable<? extends BuilderMethod> methods) argument
H A DBuilderClassPool.java122 return builderClassDef.superclass;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js359 * Utility to set up the prototype, constructor and superclass properties to
369 * matching items obtained from the superclass
381 subc.superclass=superc.prototype;
/external/protobuf/python/google/protobuf/
H A Dreflection.py125 superclass = super(GeneratedProtocolMessageType, cls)
126 return superclass.__new__(cls, name, bases, dictionary)
173 superclass = super(GeneratedProtocolMessageType, cls)
174 superclass.__init__(name, bases, dictionary)
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js2558 // calculate the superclass offset
2923 d.declare = function(className, superclass, props){
2926 props = superclass;
2927 superclass = className;
2932 var proto, i, t, ctor, name, bases, chains, mixins = 1, parents = superclass;
2935 if(opts.call(superclass) == "[object Array]"){
2937 bases = c3mro(superclass, className);
2940 superclass = bases[mixins];
2943 if(superclass){
2944 if(opts.call(superclass)
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DMethodAnalyzer.java1542 String superclass = fieldClass.getSuperclass();
1543 if (superclass == null) {
1548 fieldClass = classPath.getClassDef(superclass);
1625 // no need to check class access for invoke-super. A class can obviously access its superclass.
1634 String superclass = methodClass.getSuperclass();
1635 if (superclass == null) {
1640 methodClass = classPath.getClassDef(superclass);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc463 vars["superclass"] = SuperClassName(descriptor_);
466 "class $dllexport$$classname$ : public $superclass$ {\n"
1059 string superclass = SuperClassName(descriptor_); local
1064 " : $superclass$() {\n"
1068 "superclass", superclass);
1105 " : $superclass$() {\n"
1111 "superclass", superclass);
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc311 vars["superclass"] = SuperClassName(descriptor_);
314 "class $dllexport$$classname$ : public $superclass$ {\n"
846 string superclass = SuperClassName(descriptor_); local
851 " : $superclass$() {\n"
855 "superclass", superclass);
886 " : $superclass$() {\n"
892 "superclass", superclass);
/external/chromium_org/chrome/renderer/resources/extensions/automation/
H A Dautomation_node.js612 { superclass: AutomationNode,
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb321 superclass.token_class rescue
915 Lexer is the default superclass of all lexers generated by ANTLR. The class

Completed in 823 milliseconds

12345