Searched refs:superclass (Results 1 - 25 of 101) sorted by relevance

12345

/external/fonttools/Lib/fontTools/ttLib/tables/
H A DT_S_I__2.py3 superclass = ttLib.getTableClass("TSI0") variable
5 class table_T_S_I__2(superclass):
H A D_p_r_e_p.py3 superclass = ttLib.getTableClass("fpgm") variable
5 class table__p_r_e_p(superclass):
H A DT_S_I__3.py3 superclass = ttLib.getTableClass("TSI1") variable
5 class table_T_S_I__3(superclass):
H A D_v_m_t_x.py3 superclass = ttLib.getTableClass("hmtx") variable
5 class table__v_m_t_x(superclass):
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DT_S_I__2.py3 superclass = ttLib.getTableClass("TSI0") variable
5 class table_T_S_I__2(superclass):
H A D_p_r_e_p.py3 superclass = ttLib.getTableClass("fpgm") variable
5 class table__p_r_e_p(superclass):
H A DT_S_I__3.py3 superclass = ttLib.getTableClass("TSI1") variable
5 class table_T_S_I__3(superclass):
H A D_v_m_t_x.py3 superclass = ttLib.getTableClass("hmtx") variable
5 class table__v_m_t_x(superclass):
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBeanGenerator.java35 public Object newInstance(String superclass, Map props); argument
38 private Class superclass; field in class:BeanGenerator
50 * @param superclass class to extend, or null to extend Object
52 public void setSuperclass(Class superclass) { argument
53 if (superclass != null && superclass.equals(Object.class)) {
54 superclass = null;
56 this.superclass = superclass;
67 if (superclass !
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DEarlyExitException.js9 org.antlr.runtime.EarlyExitException.superclass.constructor.call(
H A DIndexOutOfBoundsExceptions.js2 org.antlr.runtime.IndexOutOfBoundsException.superclass.constructor.call(this, m);
H A DMismatchedNotSetException.js2 org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
H A DMismatchedSetException.js2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call(
H A DFailedPredicateException.js13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
H A DMismatchedRangeExceptions.js6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call(
H A DMismatchedTokenException.js5 org.antlr.runtime.MismatchedTokenException.superclass.constructor.call(
H A DMismatchedTreeNodeException.js3 org.antlr.runtime.MismatchedTreeNodeException.superclass.constructor.call(
H A DParser.js5 org.antlr.runtime.Parser.superclass.constructor.call(this, state);
12 org.antlr.runtime.Parser.superclass.reset.call(this);
63 org.antlr.runtime.Parser.superclass.traceIn.call(
68 org.antlr.runtime.Parser.superclass.traceOut.call(
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteEmptyStreamException.js3 var sup = org.antlr.runtime.tree.RewriteEmptyStreamException.superclass;
H A DRewriteEarlyExitException.js3 var sup = org.antlr.runtime.tree.RewriteEarlyExitException.superclass;
H A DRewriteRuleNodeStream.js5 org.antlr.runtime.tree.RewriteRuleNodeStream.superclass.constructor.apply(this, arguments);
H A DTreeParser.js3 * 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/third_party/protobuf/python/google/protobuf/
H A Dreflection.py123 superclass = super(GeneratedProtocolMessageType, cls)
125 new_class = superclass.__new__(cls, name, bases, dictionary)
148 superclass = super(GeneratedProtocolMessageType, cls)
149 superclass.__init__(name, bases, dictionary)
/external/javassist/src/main/javassist/
H A DCtNewClass.java28 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() });
27 CtNewClass(String name, ClassPool cp, boolean isInterface, CtClass superclass) argument
/external/doclava/src/com/google/doclava/apicheck/
H A DApiInfo.java87 protected void mapClassToSuper(ClassInfo classInfo, String superclass) { argument
88 mClassToSuper.put(classInfo, superclass);
111 // java.lang.Object has no superclass
117 ClassInfo superclass = mAllClasses.get(scName);
118 if (superclass == null) {
120 superclass = new ClassInfo(scName);
122 cl.setSuperClass(superclass);

Completed in 4565 milliseconds

12345