/external/antlr/antlr-3.4/runtime/CSharp2/ |
D | API CHANGES.TXT | 11 Antlr.Runtime.Tree.Tree renamed to Antlr.Runtime.Tree.TreeConstants 13 Antlr.Runtime.BaseRecognizer.Failed() has been turned into a property 14 Antlr.Runtime.BaseRecognizer.NEXT_TOKEN_RULE_NAME renamed to Antlr.Runtime.BaseRecognizer.NextToken… 15 Antlr.Runtime.BaseRecognizer.MEMO_RULE_FAILED renamed to Antlr.Runtime.BaseRecognizer.MemoRuleFailed 16 Antlr.Runtime.BaseRecognizer.MEMO_RULE_UNKNOWN renamed to Antlr.Runtime.BaseRecognizer.MemoRuleUnkn… 17 Antlr.Runtime.BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE renamed to Antlr.Runtime.BaseRecognizer.Init… 18 Antlr.Runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL renamed to Antlr.Runtime.BaseRecognizer.DefaultT… 19 Antlr.Runtime.BaseRecognizer.HIDDEN renamed to Antlr.Runtime.BaseRecognizer.Hidden 20 Antlr.Runtime.BaseRecognizer.Input has been removed. 22 Antlr.Runtime.Parser.Input - return type has been changed to ITokenStream [all …]
|
D | 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.dll 48 3. Antlr3.Runtime.Tests - Antlr3.Runtime.dll 52 In addition, Antlr3.Runtime.Tests has a dependency on the MbUnit v2.4 dlls. [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
D | MANIFEST | 21 lib/ANTLR/Runtime.pm 22 lib/ANTLR/Runtime/ANTLRFileStream.pm 23 lib/ANTLR/Runtime/ANTLRStringStream.pm 24 lib/ANTLR/Runtime/BaseRecognizer.pm 25 lib/ANTLR/Runtime/BitSet.pm 26 lib/ANTLR/Runtime/CharStream.pm 27 lib/ANTLR/Runtime/CharStreamState.pm 28 lib/ANTLR/Runtime/CommonToken.pm 29 lib/ANTLR/Runtime/CommonTokenStream.pm 30 lib/ANTLR/Runtime/DFA.pm [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/ |
D | 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); 33 ok !ANTLR::Runtime::Token->EOF_TOKEN;
|
D | 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/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | Runtime.js | 120 var Runtime = function() class 152 Runtime._queryParamsObject = { __proto__: null }; 157 Runtime.isReleaseMode = function() 167 Runtime.startSharedWorker = function(moduleName, workerName) 169 if (Runtime.isReleaseMode()) 185 Runtime.startWorker = function(moduleName) 187 if (Runtime.isReleaseMode()) 233 Runtime.startApplication = function(appName) 236 var experiments = Runtime._experimentsSetting(); 239 for (var i = 0; Runtime.isReleaseMode() && i < allDescriptors.length; ++i) { [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
D | Token.pm | 1 package ANTLR::Runtime::Token; 7 use ANTLR::Runtime::CharStream; 37 sub EOF { ANTLR::Runtime::CharStream->EOF } 41 require ANTLR::Runtime::CommonToken; 42 state $EOF_TOKEN = ANTLR::Runtime::CommonToken->new({ type => EOF }); 51 require ANTLR::Runtime::CommonToken; 52 state $INVALID_TOKEN = ANTLR::Runtime::CommonToken->new({ type => INVALID_TOKEN_TYPE }); 60 require ANTLR::Runtime::CommonToken; 61 state $SKIP_TOKEN = ANTLR::Runtime::CommonToken->new({ type => INVALID_TOKEN_TYPE });
|
D | BaseRecognizer.pm | 1 package ANTLR::Runtime::BaseRecognizer; 6 use ANTLR::Runtime::RecognizerSharedState; 7 use ANTLR::Runtime::Token; 8 use ANTLR::Runtime::UnwantedTokenException; 9 use ANTLR::Runtime::MissingTokenException; 10 use ANTLR::Runtime::MismatchedTokenException; 24 Readonly my $DEFAULT_TOKEN_CHANNEL => ANTLR::Runtime::Token->DEFAULT_CHANNEL; 27 Readonly my $HIDDEN => ANTLR::Runtime::Token->HIDDEN_CHANNEL; 41 default => sub { ANTLR::Runtime::RecognizerSharedState->new() }, 107 if ($follow->member(ANTLR::Runtime::Token->EOR_TOKEN_TYPE)) { [all …]
|
D | Lexer.pm | 1 package ANTLR::Runtime::Lexer; 8 use ANTLR::Runtime::Token; 9 use ANTLR::Runtime::CommonToken; 10 use ANTLR::Runtime::CharStream; 11 use ANTLR::Runtime::MismatchedTokenException; 37 $self->state->type(ANTLR::Runtime::Token->INVALID_TOKEN_TYPE); 38 $self->state->channel(ANTLR::Runtime::Token->DEFAULT_CHANNEL); 53 $self->state->channel(ANTLR::Runtime::Token->DEFAULT_CHANNEL); 59 if ($self->input->LA(1) eq ANTLR::Runtime::CharStream->EOF) { 60 return ANTLR::Runtime::Token->EOF_TOKEN; [all …]
|
D | CommonTokenStream.pm | 1 package ANTLR::Runtime::CommonTokenStream; 7 use ANTLR::Runtime::CharStream; 8 use ANTLR::Runtime::Token; 9 use ANTLR::Runtime::TokenSource; 44 default => ANTLR::Runtime::Token->DEFAULT_CHANNEL, 71 $self->channel(ANTLR::Runtime::Token->DEFAULT_CHANNEL); 79 while (defined $t && $t->get_type() != ANTLR::Runtime::CharStream->EOF) { 175 $types = ANTLR::Runtime::BitSet->new($args->{types}); 181 $types = ANTLR::Runtime::BitSet->of($ttype); 224 return ANTLR::Runtime::Token->EOF_TOKEN; [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/ |
D | Antlr3.Runtime.sln | 4 …ect("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime", "Antlr3.Runtime\Antlr3.Runtime.c… 6 …FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime.Debug", "Antlr3.Runtime.Debug\Antlr3.Run… 12 SccProjectUniqueName1 = Antlr3.Runtime\\Antlr3.Runtime.csproj 14 SccProjectFilePathRelativizedFromConnection1 = Antlr3.Runtime\\ 15 SccProjectUniqueName2 = Antlr3.Runtime.Debug\\Antlr3.Runtime.Debug.csproj 17 SccProjectFilePathRelativizedFromConnection2 = Antlr3.Runtime.Debug\\
|
/external/chromium_org/v8/src/compiler/ |
D | linkage.cc | 96 Runtime::FunctionId function, int parameter_count, in GetRuntimeCallDescriptor() 112 bool Linkage::NeedsFrameState(Runtime::FunctionId function) { in NeedsFrameState() 119 case Runtime::kDebugBreak: in NeedsFrameState() 120 case Runtime::kDebugGetLoadedScripts: in NeedsFrameState() 121 case Runtime::kDeoptimizeFunction: in NeedsFrameState() 122 case Runtime::kInlineCallFunction: in NeedsFrameState() 123 case Runtime::kPrepareStep: in NeedsFrameState() 124 case Runtime::kSetScriptBreakPoint: in NeedsFrameState() 125 case Runtime::kStackGuard: in NeedsFrameState() 126 case Runtime::kCheckExecutionState: in NeedsFrameState() [all …]
|
D | js-operator.h | 183 const Operator* Runtime(Runtime::FunctionId function, int arguments) { in Runtime() function 184 const Runtime::Function* f = Runtime::FunctionForId(function); in Runtime() 186 OP1(JSCallRuntime, Runtime::FunctionId, function, Operator::kNoProperties, in Runtime() 218 struct StaticParameterTraits<Runtime::FunctionId> { 219 static OStream& PrintTo(OStream& os, Runtime::FunctionId val) { // NOLINT 220 const Runtime::Function* f = Runtime::FunctionForId(val); 223 static int HashCode(Runtime::FunctionId val) { return static_cast<int>(val); } 224 static bool Equals(Runtime::FunctionId a, Runtime::FunctionId b) {
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
D | SimpleCLexer.m | 4 …* - From the grammar source file : /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simpl… 40 // $ANTLR 3.2 Aug 23, 2010 07:48:06 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTre… 184 …[ANTLRBaseRecognizer setGrammarFileName:@"/usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/sim… 225 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:7:7: ( ';' ) /… 226 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:7:9: ';' // alt 255 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:8:7: ( '(' ) /… 256 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:8:9: '(' // alt 285 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:9:7: ( ',' ) /… 286 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:9:9: ',' // alt 315 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:10:7: ( ')' ) … [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/ |
D | Fuzzy.m | 4 …* - From the grammar source file : /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy… 40 // $ANTLR 3.2 Aug 20, 2010 13:39:32 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzz… 305 …[ANTLRBaseRecognizer setGrammarFileName:@"/usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuz… 413 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:5:2: ( 'import' WS name= QID… 414 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:5:4: 'import' WS name= QIDSt… 425 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:5:29: ( WS )? // block 434 … // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:5:29: WS // alt 471 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:10:2: ( 'return' ( options {… 472 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:10:4: 'return' ( options {gr… 489 … // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/fuzzy/Fuzzy.g:10:38: . // alt [all …]
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | TestDriver.dpr | 22 Antlr.Runtime.Tools.Tests in 'Antlr.Runtime.Tools.Tests.pas', 23 Antlr.Runtime.Collections.Tests in 'Antlr.Runtime.Collections.Tests.pas', 24 Antlr.Runtime.Tree.Tests in 'Antlr.Runtime.Tree.Tests.pas', 25 Antlr.Runtime.Tests in 'Antlr.Runtime.Tests.pas';
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
D | SymbolTableLexer.m | 4 …* - From the grammar source file : /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scope… 40 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/Sym… 158 …[ANTLRBaseRecognizer setGrammarFileName:@"/usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/sco… 199 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:7:6: ( 'method' ) // … 200 … // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:7:8: 'method' // alt 229 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:8:6: ( '(' ) // ruleB… 230 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:8:8: '(' // alt 259 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:9:6: ( ')' ) // ruleB… 260 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:9:8: ')' // alt 289 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:10:7: ( '{' ) // rule… [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/ |
D | 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/antlr/antlr-3.4/runtime/CSharp2/Sources/ |
D | Antlr3.Runtime (VS2008).sln | 4 …"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime (VS2008)", "Antlr3.Runtime\Antlr3.Runt… 8 …4EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime.Tests (VS2008)", "Antlr3.Runtime.Tests\Antlr… 33 name = Antlr3.Runtime (VS2008) 35 StartupItem = Antlr3.Runtime\Antlr3.Runtime (VS2008).csproj
|
D | Antlr3.Runtime (VS2005).sln | 4 …"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime (VS2005)", "Antlr3.Runtime\Antlr3.Runt… 8 …4EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Antlr3.Runtime.Tests (VS2005)", "Antlr3.Runtime.Tests\Antlr… 30 name = Antlr3.Runtime (VS2005) 32 StartupItem = Antlr3.Runtime\Antlr3.Runtime (VS2005).csproj
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScript.h | 60 RefPtr<TypeBuilder::Runtime::RemoteObject>* result, 70 RefPtr<TypeBuilder::Runtime::RemoteObject>* result, 82 RefPtr<TypeBuilder::Runtime::RemoteObject>* result, 90 …ies, bool accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescript… 91 …rString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalProperty… 97 …PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapObject(const ScriptValue&, const String& groupN… 98 …PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapTable(const ScriptValue& table, const ScriptVal… 99 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapNode(Node*, const String& groupName);
|
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
D | simplecalc.t | 7 use ANTLR::Runtime::Test; 46 use ANTLR::Runtime::ANTLRStringStream; 47 use ANTLR::Runtime::CommonTokenStream; 48 use ANTLR::Runtime::RecognitionException; 60 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $example }); 62 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer }); 73 if (my $ex = ANTLR::Runtime::RecognitionException->caught()) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/ |
D | Main.js | 104 if (Runtime.queryParam("isSharedWorker")) 128 if (Runtime.queryParam("workerPaused")) { 183 Runtime.experiments.register("applyCustomStylesheet", "Allow custom UI themes"); 184 Runtime.experiments.register("canvasInspection", "Canvas inspection"); 185 Runtime.experiments.register("devicesPanel", "Devices panel"); 186 …Runtime.experiments.register("disableAgentsWhenProfile", "Disable other agents and UI when profile… 187 Runtime.experiments.register("dockToLeft", "Dock to left", true); 188 Runtime.experiments.register("documentation", "JavaScript documentation", true); 189 Runtime.experiments.register("fileSystemInspection", "FileSystem inspection"); 190 Runtime.experiments.register("gpuTimeline", "GPU data on timeline", true); [all …]
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/ |
D | mexpr.pl | 8 use ANTLR::Runtime::ANTLRStringStream; 9 use ANTLR::Runtime::CommonTokenStream; 14 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $_ }); 17 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer });
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/ |
D | tweak.pl | 6 use ANTLR::Runtime::ANTLRFileStream; 7 use ANTLR::Runtime::TokenRewriteStream; 11 my $input = ANTLR::Runtime::ANTLRFileStream->new({ file_name => $ARGV[0] }); 13 my $tokens = ANTLR::Runtime::TokenRewriteStream({ token_source => $lexer });
|