HomeSort by relevance Sort by last modified time
    Searched full:superclass (Results 251 - 275 of 779) sorted by null

<<11121314151617181920>>

  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 61 // Always call the superclass implementation to
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ParserRuleReturnScope.cs 55 * satisfy the superclass interface.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ParserRuleReturnScope.cs 56 * satisfy the superclass interface.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 54 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);
  /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);
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_button.cc 98 // We have the superclass handle this expose when we aren't using custom
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractCollectionTestSuiteBuilder.java 43 * Abstract superclass of all test-suite builders for collection interfaces.
  /external/jdiff/src/jdiff/
ClassDiff.java 91 res += "The superclass changed from <code>" + oldClass.extends_ + "</code> to <code>" + newClass.extends_ + "</code>.<br>";
  /external/jsr305/javadoc/javax/annotation/
package-summary.html 161 The method overrides a method in a superclass (in which case the
162 annotation of the corresponding parameter in the superclass applies)
172 The method overrides a method in a superclass (in which case the
173 annotation of the corresponding parameter in the superclass applies)
  /external/proguard/src/proguard/shrink/
InterfaceUsageMarker.java 92 // Mark the superclass (java/lang/Object).
  /frameworks/base/services/input/
InputListener.h 29 /* Superclass of all input event argument objects */
  /libcore/luni/src/main/java/java/util/
Dictionary.java 24 * Dictionary is an abstract class which is the superclass of all classes that
ListResourceBundle.java 21 * {@code ListResourceBundle} is the abstract superclass of classes which provide
  /packages/apps/Contacts/src/com/android/contacts/
ContactsActivity.java 32 * A common superclass for Contacts activities that handles application-wide services.
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 35 * Extends superclass with methods specifically for setting the contact-detail
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyInputStream.java 44 // the proxy is stored in a protected superclass variable named 'in'
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyWriter.java 43 // the proxy is stored in a protected superclass variable named 'out'
  /packages/apps/LegacyCamera/src/com/android/camera/
ActivityBase.java 32 * Superclass of Camera and VideoCamera activities.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WhitelistDictionary.java 107 // Leave implementation of getWords and isValidWord to the superclass.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcherTest.java 98 // Character matching is done by the superclass; ensure that fallback to the
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 47 scopes, superClass, literals) ::=
65 filterMode, superClass="Lexer") ::= <<
66 public class <grammar.recognizerName> extends <if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else><@superClassName><superClass><@end><endif> {
171 bitsets, inputStreamType, superClass, filterMode,
173 public class <grammar.recognizerName> extends <if(actions.(actionScope).superClass)><actions.(actionScope).superClass><else><@superClassName><superClass><@end><endif> {
235 parser(grammar, name, scopes, tokens, tokenNames, rules, numRules, bitsets, ASTLabelType="Object", superClass="Parser", labelType="Token", members={<actions.parser.members>}) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
JavaScript.stg 12 scopes, superClass, literals) ::=
27 filterMode, superClass="org.antlr.runtime.Lexer") ::= <<
41 <grammar.recognizerName>.superclass.constructor.call(this, input, state);
64 org.antlr.lang.extend(<grammar.recognizerName>, <@superClassName><superClass><@end>, {
131 <grammar.recognizerName>.superclass.prototype.memoize.call(this, input, ruleIndex, ruleStartIndex);
137 return <grammar.recognizerName>.superclass.prototype.alreadyParsedRule.call(this, input, ruleIndex);
151 bitsets, inputStreamType, superClass,
163 <grammar.recognizerName>.superclass.constructor.call(this, input, state);
191 org.antlr.lang.extend(<grammar.recognizerName>, org.antlr.runtime.<@superClassName><superClass><@end>, {
239 parser(grammar, name, scopes, tokens, tokenNames, rules, numRules, bitsets, ASTLabelType="Object", superClass="Parser", labelType="Token", members={<actions.parser.members>}) ::= <
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 21 trace, scopes, superClass, literals) ::=
168 ASTLabelType="Object", superClass="ANTLR3::Parser", labelType="ANTLR3::Token",
173 class <if(grammar.grammarIsRoot)>Parser<else><grammar.name><endif> \< <superClass>
175 end # class <if(grammar.grammarIsRoot)>Parser<else><grammar.name><endif> \< <superClass>
185 treeParser(grammar, name, scopes, tokens, tokenNames, globalAction, rules, numRules, bitsets, filterMode, labelType={<ASTLabelType>}, ASTLabelType="Object", superClass="ANTLR3::TreeParser", members={<actions.treeparser.members>}) ::= <<
188 class <if(grammar.grammarIsRoot)>TreeParser<else><grammar.name><endif> \< <superClass>
190 end # class <if(grammar.grammarIsRoot)>TreeParser<else><grammar.name><endif> \< <superClass>
197 parserBody(grammar, name, scopes, tokens, tokenNames, rules, numRules, bitsets, inputStreamType, superClass, filterMode, labelType, members, rewriteElementType, actionScope, ASTLabelType="Object") ::= <<
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h 85 // superclass implementation.
91 // and restores the new tab button. Subclasses need to call the superclass
  /external/doclava/src/com/google/doclava/
SinceTagger.java 178 for (ClassInfo superclass : spec.hierarchy()) {
179 if (superclass.allMethods().containsKey(method.getHashableName())) {

Completed in 2260 milliseconds

<<11121314151617181920>>