/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
CharStreamConstants.as | 1 package org.antlr.runtime
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
ParserRuleReturnScope.pm | 1 package ANTLR::Runtime::ParserRuleReturnScope; 5 extends 'ANTLR::Runtime::RuleReturnScope'; 9 does => 'ANTLR::Runtime::Token', 14 does => 'ANTLR::Runtime::Token',
|
/external/chromium/base/third_party/nspr/ |
README.chromium | 1 Name: Netscape Portable Runtime (NSPR)
|
/external/webkit/Source/cmake/ |
WebKitFS.cmake | 3 FILE(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/Source/JavaScriptCore/runtime)
|
/external/webkit/Source/JavaScriptCore/ |
GNUmakefile.list.am | 16 Source/JavaScriptCore/runtime/ArrayPrototype.lut.h \ 17 Source/JavaScriptCore/runtime/DatePrototype.lut.h \ 18 Source/JavaScriptCore/runtime/JSONObject.lut.h \ 19 Source/JavaScriptCore/runtime/MathObject.lut.h \ 20 Source/JavaScriptCore/runtime/NumberConstructor.lut.h \ 21 Source/JavaScriptCore/runtime/ObjectConstructor.lut.h \ 22 Source/JavaScriptCore/runtime/RegExpConstructor.lut.h \ 23 Source/JavaScriptCore/runtime/RegExpObject.lut.h \ 24 Source/JavaScriptCore/runtime/StringPrototype.lut.h 215 Source/JavaScriptCore/runtime/ArgList.cpp [all...] |
JavaScriptCore.gypi | 59 'runtime/ArgList.h', 60 'runtime/ArrayPrototype.h', 61 'runtime/BooleanObject.h', 62 'runtime/CachedTranscendentalFunction.h', 63 'runtime/CallData.h', 64 'runtime/ClassInfo.h', 65 'runtime/CommonIdentifiers.h', 66 'runtime/Completion.h', 67 'runtime/ConstructData.h', 68 'runtime/DateInstance.h' [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
TreeNodeStream.js | 2 org.antlr.runtime.tree.TreeNodeStream = function() {}; 4 org.antlr.lang.extend(org.antlr.runtime.tree.TreeNodeStream, 5 org.antlr.runtime.IntStream);
|
RewriteEarlyExitException.js | 2 org.antlr.runtime.tree.RewriteEarlyExitException = function(elementDescription) { 3 var sup = org.antlr.runtime.tree.RewriteEarlyExitException.superclass; 10 org.antlr.lang.extend(org.antlr.runtime.tree.RewriteEarlyExitException, 11 org.antlr.runtime.tree.RewriteCardinalityException, { 13 return "org.antlr.runtime.tree.RewriteEarlyExitException";
|
RewriteEmptyStreamException.js | 2 org.antlr.runtime.tree.RewriteEmptyStreamException = function(elementDescription) { 3 var sup = org.antlr.runtime.tree.RewriteEmptyStreamException.superclass; 7 org.antlr.lang.extend(org.antlr.runtime.tree.RewriteEmptyStreamException, 8 org.antlr.runtime.tree.RewriteCardinalityException, { 10 return "org.antlr.runtime.tree.RewriteEmptyStreamException";
|
TreeRuleReturnScope.js | 6 org.antlr.runtime.tree.TreeRuleReturnScope = function(){}; 8 org.antlr.lang.extend(org.antlr.runtime.tree.TreeRuleReturnScope, 9 org.antlr.runtime.RuleReturnScope,
|
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/ |
CommonToken.pm | 1 package Test::ANTLR::Runtime::CommonToken; 5 use ANTLR::Runtime::Token; 12 my $token = ANTLR::Runtime::CommonToken->new({ 23 ok(ANTLR::Runtime::Token->EOF_TOKEN == ANTLR::Runtime::Token->EOF_TOKEN); 24 ok(ANTLR::Runtime::Token->SKIP_TOKEN == ANTLR::Runtime::Token->SKIP_TOKEN); 28 ok !(ANTLR::Runtime::Token->EOF_TOKEN != ANTLR::Runtime::Token->EOF_TOKEN); 29 ok !(ANTLR::Runtime::Token->SKIP_TOKEN != ANTLR::Runtime::Token->SKIP_TOKEN) [all...] |
Lexer.pm | 1 package Test::ANTLR::Runtime::Lexer; 5 use ANTLR::Runtime::ANTLRStringStream; 6 use ANTLR::Runtime::Lexer; 13 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => 'ABC' }); 14 my $lexer = ANTLR::Runtime::Lexer->new({ input => $input });
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
MismatchedRangeExceptions.js | 1 org.antlr.runtime.MismatchedRangeException = function(a, b, input) { 6 org.antlr.runtime.MismatchedRangeException.superclass.constructor.call( 13 org.antlr.runtime.MismatchedRangeException, 14 org.antlr.runtime.RecognitionException, { 19 name: "org.antlr.runtime.MismatchedRangeException"
|
FailedPredicateException.js | 7 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception. 10 * @extends org.antlr.runtime.RecognitionException 12 org.antlr.runtime.FailedPredicateException = function(input, ruleName, predicateText){ 13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input); 19 org.antlr.runtime.FailedPredicateException, 20 org.antlr.runtime.RecognitionException, 21 /** @lends org.antlr.runtime.FailedPredicateException.prototype */ 33 name: "org.antlr.runtime.FailedPredicateException [all...] |
NoViableAltException.js | 1 org.antlr.runtime.NoViableAltException = function(grammarDecisionDescription, 6 org.antlr.runtime.NoViableAltException.superclass.constructor.call(this, input); 13 org.antlr.runtime.NoViableAltException, 14 org.antlr.runtime.RecognitionException, { 16 if ( this.input instanceof org.antlr.runtime.CharStream ) { 23 name: "org.antlr.runtime.NoViableAltException"
|
UnwantedTokenException.js | 2 org.antlr.runtime.UnwantedTokenException = function(expecting, input) { 4 org.antlr.runtime.UnwantedTokenException.superclass.constructor.call( 10 org.antlr.runtime.UnwantedTokenException, 11 org.antlr.runtime.MismatchedTokenException, { 17 if ( this.expecting===org.antlr.runtime.Token.INVALID_TOKEN_TYPE ) { 25 name: "org.antlr.runtime.UnwantedTokenException"
|
/external/antlr/antlr-3.4/runtime/CSharp2/ |
README.TXT | 1 ANTLR v3.1 .NET Runtime Library (for us with the ANTLR C# Code Generator) 10 The ANTLR v3.1 .NET Runtime Library extend the ANTLR language processing 17 We hope you find the ANTLR v3.1 .NET Runtime Library delightful and useful 32 1. Antlr3.Runtime - the ANTLR v3.1 .NET Runtime Library 34 2. Antlr3.Utility - the ANTLR v3.1 .NET Runtime Utility Library 36 3. Antlr3.Runtime.Tests - the ANTLR v3.1 .NET Runtime Library Tests 42 1. Antlr3.Runtime - none 44 2. Antlr3.Utility - Antlr3.Runtime.dl [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/ |
simplecalc.pl | 6 use ANTLR::Runtime::ANTLRFileStream; 7 use ANTLR::Runtime::CommonTokenStream; 8 use ANTLR::Runtime::RecognitionException; 12 my $input = ANTLR::Runtime::ANTLRFileStream->new({ file_name => $ARGV[0] }); 14 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer }); 22 if (my $ex = ANTLR::Runtime::RecognitionException->caught()) {
|
/external/clang/test/Driver/ |
gnu-runtime.m | 1 // RUN: %clang -target i386-apple-darwin10 -### -fsyntax-only -fgnu-runtime %s 2>&1 | FileCheck %s 2 // RUN: %clang -target i386-apple-darwin10 -### -x objective-c++ -fsyntax-only -fgnu-runtime %s 2>&1 | FileCheck %s 3 // CHECK: -fobjc-runtime=gcc
|
/dalvik/tests/004-annotations/src/android/test/ |
AnnoSimplePackage1.java | 6 @Retention(RetentionPolicy.RUNTIME)
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
AnnoSimpleConstructor.java | 6 @Retention(RetentionPolicy.RUNTIME)
|
AnnoSimpleField.java | 6 @Retention(RetentionPolicy.RUNTIME)
|
AnnoSimpleLocalVariable.java | 6 @Retention(RetentionPolicy.RUNTIME)
|
AnnoSimpleMethod.java | 6 @Retention(RetentionPolicy.RUNTIME)
|
AnnoSimplePackage.java | 6 @Retention(RetentionPolicy.RUNTIME)
|