/external/antlr/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/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/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/tensorflow/tensorflow/cc/experimental/base/public/ |
D | runtime.h | 35 class Runtime { 38 Runtime(Runtime&&) = default; 39 Runtime& operator=(Runtime&&) = default; 47 explicit Runtime(TFE_Context* ctx) : ctx_(ctx) {} in Runtime() function 58 Runtime(const Runtime&) = delete; 59 Runtime& operator=(const Runtime&) = delete;
|
/external/antlr/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/antlr/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/llvm-project/openmp/libomptarget/plugins/amdgpu/impl/ |
D | rt.h | 48 class Runtime final { 50 static Runtime &getInstance() { in getInstance() 51 static Runtime instance; in getInstance() 79 Runtime() = default; 80 ~Runtime() = default; 81 Runtime(const Runtime &) = delete; 82 Runtime &operator=(const Runtime &) = delete;
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | Runtime.h | 15 class Runtime { 17 Runtime(Process *process) : m_process(process) {} in Runtime() function 18 virtual ~Runtime() = default; 19 Runtime(const Runtime &) = delete; 20 const Runtime &operator=(const Runtime &) = delete;
|
/external/rust/crates/tokio/src/runtime/tests/ |
D | task.rs | 10 let _ = task::joinable::<_, Runtime>(async { unreachable!() }); in create_drop() 42 fn with(f: impl FnOnce(Runtime)) { in with() argument 53 let rt = Runtime(Arc::new(Inner { in with() 66 struct Runtime(Arc<Inner>); struct 69 released: task::TransferStack<Runtime>, 74 queue: VecDeque<task::Notified<Runtime>>, 75 tasks: LinkedList<Task<Runtime>, <Task<Runtime> as Link>::Target>, 78 static CURRENT: TryLock<Option<Runtime>> = TryLock::new(None); 80 impl Runtime { implementation 103 fn next_task(&self) -> task::Notified<Runtime> { in next_task() argument [all …]
|
D | loom_queue.rs | 33 let (task, _) = task::joinable::<_, Runtime>(async {}); in basic() 42 let (task, _) = task::joinable::<_, Runtime>(async {}); in basic() 84 let (task, _) = task::joinable::<_, Runtime>(async {}); in steal_overflow() 92 let (task, _) = task::joinable::<_, Runtime>(async {}); in steal_overflow() 114 fn steal_tasks(steal: queue::Steal<Runtime>) -> usize { in multi_stealer() 136 let (task, _) = task::joinable::<_, Runtime>(async {}); in multi_stealer() 173 let (task, _) = task::joinable::<_, Runtime>(async {}); in chained_steal() 176 let (task, _) = task::joinable::<_, Runtime>(async {}); in chained_steal() 201 struct Runtime; struct 203 impl Schedule for Runtime { implementation [all …]
|
D | queue.rs | 13 let (task, _) = task::joinable::<_, Runtime>(async {}); in fits_256() 28 let (task, _) = task::joinable::<_, Runtime>(async {}); in overflow() 52 let (task, _) = task::joinable::<_, Runtime>(async {}); in steal_batch() 106 let (task, _) = task::joinable::<_, Runtime>(async {}); in stress1() 161 let (task, _) = task::joinable::<_, Runtime>(async {}); in stress2() 187 struct Runtime; struct 189 impl Schedule for Runtime { implementation 190 fn bind(task: Task<Self>) -> Runtime { in bind() argument 192 Runtime in bind()
|
/external/antlr/ |
D | .gitignore | 23 /runtime/CSharp3/Sources/Antlr3.Runtime/bin/ 24 /runtime/CSharp3/Sources/Antlr3.Runtime/obj/ 25 /runtime/CSharp3/Sources/Antlr3.Runtime.Debug/bin/ 26 /runtime/CSharp3/Sources/Antlr3.Runtime.Debug/obj/ 27 /runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/bin/ 28 /runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/obj/ 29 /runtime/CSharp3/Sources/Antlr3.Runtime.Test/bin/ 30 /runtime/CSharp3/Sources/Antlr3.Runtime.Test/obj/
|
/external/antlr/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/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/Resources/ |
D | Resource.designer.cs | 12 [assembly: global::Android.Runtime.ResourceDesignerAttribute("HelloworldXamarin.Droid.Resource", Is… 24 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in Resource() 36 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in Attribute() 52 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in Id() 68 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in Layout() 84 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in Mipmap() 103 global::Android.Runtime.ResourceIdManager.UpdateIdValues(); in String()
|
/external/perfetto/test/trace_processor/chrome/ |
D | chrome_threads_android_systrace.out | 304 13326,"Runtime worker ",0,"Runtime worker " 305 13327,"Runtime worker ",0,"Runtime worker " 306 13328,"Runtime worker ",0,"Runtime worker " 307 13329,"Runtime worker ",0,"Runtime worker " 351 13703,"Runtime worker ",0,"Runtime worker " 352 13704,"Runtime worker ",0,"Runtime worker " 353 13705,"Runtime worker ",0,"Runtime worker " 354 13706,"Runtime worker ",0,"Runtime worker " 382 13741,"Runtime worker ",0,"Runtime worker " 383 13742,"Runtime worker ",0,"Runtime worker " [all …]
|
/external/antlr/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/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/antlr/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/openscreen/cast/cast_core/api/core/ |
D | cast_core_service.proto | 18 // Registers a Cast Runtime. Usually called by platform. 21 // Unregisters a Cast Runtime. Usually called by platform. 25 // Called by the Runtime when it starts up. 46 // Runtime ID. 53 // Runtime ID. 55 // Runtime service info. 60 // Runtime ID.
|