HomeSort by relevance Sort by last modified time
    Searched full:superc (Results 1 - 2 of 2) sorted by null

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 366 * @param {Function} superc the object to inherit
372 extend: function(subc, superc, overrides) {
373 if (!superc||!subc) {
378 F.prototype=superc.prototype;
381 subc.superclass=superc.prototype;
382 if (superc.prototype.constructor == Object.prototype.constructor) { class
383 superc.prototype.constructor=superc;
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 769 * Returns true if superC is a super class of subC.
771 private boolean isSuperClass(IClassDefinition superC,
773 if (superC == null || subC == null) {
780 if (getClassDefinition(subC.getSuperClass()).equals(superC)) {
783 return isSuperClass(superC, getClassDefinition(subC
    [all...]

Completed in 72 milliseconds