HomeSort by relevance Sort by last modified time
    Searched refs:superclass (Results 51 - 75 of 147) sorted by null

1 23 4 5 6

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 24 org.antlr.runtime.tree.CommonTree.superclass.constructor.call(this, node);
CommonTreeAdaptor.js 29 return org.antlr.runtime.tree.CommonTreeAdaptor.superclass.create.apply(this, arguments);
RewriteRuleSubtreeStream.js 2 var sup = org.antlr.runtime.tree.RewriteRuleSubtreeStream.superclass;
  /external/javassist/src/main/javassist/
ClassPool.java 793 * @param superclass the super class.
796 public synchronized CtClass makeClass(String classname, CtClass superclass)
800 CtClass clazz = new CtNewClass(classname, this, false, superclass);
837 * @param superclass the super interface.
840 public synchronized CtClass makeInterface(String name, CtClass superclass)
844 CtClass clazz = new CtNewClass(name, this, true, superclass);
    [all...]
CtClass.java 569 public boolean subclassOf(CtClass superclass) {
574 * Obtains the class object representing the superclass of the
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
__init__.py 63 superclass = eval(superclassname)
64 getbaseclasses(superclass)
65 v._propdict.update(getattr(superclass, '_propdict', {}))
66 v._elemdict.update(getattr(superclass, '_elemdict', {}))
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_SUPER.S 41 bcs .L${opcode}_nsm @ method not present in superclass
  /dalvik/vm/mterp/mips/
OP_INVOKE_SUPER.S 48 bgeu a2, a3, .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
  /external/doclava/src/com/google/doclava/
SinceTagger.java 220 for (ClassInfo superclass : spec.hierarchy()) {
221 if (superclass.allMethods().containsKey(method.getHashableName())) {
  /external/protobuf/src/google/protobuf/
repeated_field.h 931 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
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
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...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 1183 std::random_access_iterator_tag, Element> superclass; typedef in class:google::protobuf::internal::RepeatedPtrIterator
1274 std::random_access_iterator_tag, Element*> superclass; typedef in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
    [all...]
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 478 * @param superclass
481 public void setSuperclass(String superclass) throws BadBytecode {
493 int sc = cp.addClassInfo(superclass);
  /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...]
ObjectInputStream.java 1237 Class<?> superclass = superclasses.get(i); local
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 167 while((clazz = clazz.superclass()) != null) {
596 ClassDoc superClass = clazz.superclass();
597 while (superClass != null) {
598 for (MethodDoc method : superClass.methods()) {
602 superClass = superClass.superclass();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 359 * Utility to set up the prototype, constructor and superclass properties to
369 * matching items obtained from the superclass
381 subc.superclass=superc.prototype;
  /external/chromium_org/chrome/test/base/
js2gtest.js 86 // 'unit' - unit_tests harness, js2unit rule, V8UnitTest superclass.
87 // 'webui' - browser_tests harness, js2webui rule, WebUIBrowserTest superclass.
  /external/protobuf/python/google/protobuf/
reflection.py 125 superclass = super(GeneratedProtocolMessageType, cls)
126 return superclass.__new__(cls, name, bases, dictionary)
173 superclass = super(GeneratedProtocolMessageType, cls)
174 superclass.__init__(name, bases, dictionary)
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 360 ITypeReference superclass = classDefinition.getSuperClass(); local
361 if (superclass != null) {
362 if (superclass instanceof IParameterizedType) {
363 collectInterfaceClosure(((IParameterizedType) superclass)
366 collectInterfaceClosure(superclass, closure);
789 private boolean isSuperInterface(IClassDefinition superClass,
791 if (superClass == null || subClass == null) {
799 superClass)) {
803 if (isSuperInterface(superClass,
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
dojo-1.6.1.js     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 463 vars["superclass"] = SuperClassName(descriptor_);
466 "class $dllexport$$classname$ : public $superclass$ {\n"
1059 string superclass = SuperClassName(descriptor_); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 311 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);
    [all...]
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 

Completed in 3551 milliseconds

1 23 4 5 6