HomeSort by relevance Sort by last modified time
    Searched refs:override (Results 176 - 200 of 324) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
shell.js 110 * functions, override these functions with functions that use
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarLexer.cs 48 public override string GrammarFileName { get { return "BuildOptions\\DebugGrammar.g3"; } }
455 public override void mTokens()
685 protected override void InitDFAs()
DebugGrammarParser.cs 118 public override string[] TokenNames { get { return DebugGrammarParser.tokenNames; } }
119 public override string GrammarFileName { get { return "BuildOptions\\DebugGrammar.g3"; } }
126 public override object Tree { get { return tree; } }
258 public override object Tree { get { return tree; } }
545 public override object Tree { get { return tree; } }
700 public override object Tree { get { return tree; } }
789 public override object Tree { get { return tree; } }
1002 public override object Tree { get { return tree; } }
1160 public override object Tree { get { return tree; } }
1439 protected override void InitDFAs(
    [all...]
ProfileGrammarLexer.cs 48 public override string GrammarFileName { get { return "BuildOptions\\ProfileGrammar.g3"; } }
455 public override void mTokens()
685 protected override void InitDFAs()
ProfileGrammarParser.cs 122 public override string[] TokenNames { get { return ProfileGrammarParser.tokenNames; } }
123 public override string GrammarFileName { get { return "BuildOptions\\ProfileGrammar.g3"; } }
130 public override object Tree { get { return tree; } }
262 public override object Tree { get { return tree; } }
549 public override object Tree { get { return tree; } }
704 public override object Tree { get { return tree; } }
793 public override object Tree { get { return tree; } }
1006 public override object Tree { get { return tree; } }
1164 public override object Tree { get { return tree; } }
1443 protected override void InitDFAs(
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 93 public override function get grammarFileName():String { return "<fileName>"; }
107 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
114 public override function nextToken():Token {
152 public override function memoize(input:IntStream,
159 public override function alreadyParsedRule(input:IntStream, ruleIndex:int):Boolean {
203 public override function get tokenNames():Array { return <grammar.composite.rootGrammar.recognizerName>.tokenNames; }
204 public override function get grammarFileName():String { return "<fileName>"; }
483 public override function mTokens():void {
    [all...]
AST.stg 45 override public function set treeAdaptor(adaptor:TreeAdaptor):void {
49 override public function get treeAdaptor():TreeAdaptor {
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 146 public override string GrammarFileName { get { return "<fileName>"; } }
151 public override <lexerInputStreamType()> CharStream
187 protected override void InitDFAs()
199 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
206 public override IToken NextToken()
252 public override void Memoize(IIntStream input, int ruleIndex, int ruleStartIndex)
258 public override bool AlreadyParsedRule(IIntStream input, int ruleIndex)
302 public override string[] TokenNames { get { return <grammar.composite.rootGrammar.recognizerName>.tokenNames; } }
303 public override string GrammarFileName { get { return "<fileName>"; } }
333 protected override void InitDFAs(
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 145 public override string GrammarFileName { get { return "<fileName>"; } }
148 public override <lexerInputStreamType()> CharStream
182 protected override void InitDFAs()
194 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
201 public override IToken NextToken()
247 public override void Memoize(IIntStream input, int ruleIndex, int ruleStartIndex)
253 public override bool AlreadyParsedRule(IIntStream input, int ruleIndex)
297 public override string[] TokenNames { get { return <grammar.composite.rootGrammar.recognizerName>.tokenNames; } }
298 public override string GrammarFileName { get { return "<fileName>"; } }
325 protected override void InitDFAs(
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 103 override def getGrammarFileName = "<fileName>"
115 /** A override of Lexer.nextToken() that backtracks over mTokens() looking
122 override def nextToken(): Token = {
164 override def memoize(input: IntStream,
170 override def alreadyParsedRule(input: IntStream, ruleIndex: Int):Boolean {
224 override def getTokenNames: Array[String] = tokenNames
225 override def getGrammarFileName = "<fileName>"
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 88 // manually override the type with a sorttable_type attribute
91 if (mtch) { override = mtch[1]; }
92 if (mtch && typeof sorttable["sort_"+override] == 'function') {
93 headrow[i].sorttable_sortfunction = sorttable["sort_"+override];
222 // for example, you can override the cell text with a customkey attribute.
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 26 * override this method. CommonTree returns Token.INVALID_TOKEN_TYPE
219 * override this method and any other createToken variant.
237 * override this method and any other createToken variant.
  /frameworks/base/core/java/android/webkit/
CallbackProxy.java 77 // Used to call startActivity during url override.
164 @Override
268 boolean override = false;
270 override = mWebViewClient.shouldOverrideUrlLoading(mWebView.getWebView(),
283 override = true;
289 return override;
302 @Override
372 boolean override = uiOverrideUrlLoading(overrideUrl);
376 result.setResult(override);
    [all...]
  /external/v8/test/mjsunit/
for-in.js 69 assertEquals('hest', hest, "empty-no-override");
override-read-only-property.js 29 // allowed to override read-only properties, not even if the read-only
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
shell.js 135 * functions, override these functions with functions that use
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 323 public override string ToString() {
LegacyCommonTokenStream.cs 63 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */
136 // is there a channel override for token type?
421 public override string ToString() {
RecognitionException.cs 62 * override methods mismatch and recoverFromMismatchSet.
266 public override void GetObjectData(SerializationInfo info, StreamingContext context) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 369 public override string ToString()
LegacyCommonTokenStream.cs 62 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */
144 // is there a channel override for token type?
485 public override string ToString()
RecognitionException.cs 63 * override methods mismatch and recoverFromMismatchSet.
316 public override void GetObjectData(SerializationInfo info, StreamingContext context)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 388 public override string ToString()
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
AST.stg 92 function GetTree: IANTLRInterface; override;
93 procedure SetTree(const Value: IANTLRInterface); override;
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 183 void foo2() override;

Completed in 1138 milliseconds

1 2 3 4 5 6 78 91011>>