HomeSort by relevance Sort by last modified time
    Searched refs:Runtime (Results 1 - 25 of 783) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamConstants.cs 33 namespace Antlr.Runtime {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CharStreamConstants.cs 33 namespace Antlr.Runtime
IAstRuleReturnScope.cs 33 namespace Antlr.Runtime
ITemplateRuleReturnScope.cs 33 namespace Antlr.Runtime
TokenChannels.cs 33 namespace Antlr.Runtime
CharStreamState.cs 33 namespace Antlr.Runtime
IAstRuleReturnScope`1.cs 33 namespace Antlr.Runtime
IRuleReturnScope.cs 33 namespace Antlr.Runtime
ITemplateRuleReturnScope`1.cs 33 namespace Antlr.Runtime
Tokens.cs 33 namespace Antlr.Runtime
  /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/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 1 package ANTLR::Runtime::EarlyExitException;
6 use base qw( ANTLR::Runtime::Exception );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3.lexer.cs 33 namespace Antlr3.Runtime.Test
TestExpressionFeatures.g3.parser.cs 33 namespace Antlr3.Runtime.Test
  /external/antlr/antlr-3.4/runtime/Perl5/examples/expr/
expr.pl 8 use ANTLR::Runtime::ANTLRStringStream;
9 use ANTLR::Runtime::CommonTokenStream;
19 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => $in });
22 my $tokens = ANTLR::Runtime::CommonTokenStream->new({ token_source => $lexer });
  /external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/
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/
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 });
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
LexerExtensions.cs 33 namespace Antlr.Runtime.JavaExtensions
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
LexerExtensions.cs 33 namespace Antlr.Runtime.JavaExtensions
  /art/runtime/
runtime-inl.h 20 #include "runtime.h"
26 inline QuickMethodFrameInfo Runtime::GetRuntimeMethodFrameInfo(mirror::ArtMethod* method) {
32 if (method == GetCalleeSaveMethodUnchecked(Runtime::kRefsAndArgs)) {
33 return GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs);
34 } else if (method == GetCalleeSaveMethodUnchecked(Runtime::kSaveAll)) {
35 return GetCalleeSaveMethodFrameInfo(Runtime::kSaveAll);
37 DCHECK(method == GetCalleeSaveMethodUnchecked(Runtime::kRefsOnly));
38 return GetCalleeSaveMethodFrameInfo(Runtime::kRefsOnly);
42 inline mirror::ArtMethod* Runtime::GetResolutionMethod() {
47 inline mirror::ArtMethod* Runtime::GetImtConflictMethod()
    [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()) {
  /art/runtime/native/
java_lang_Runtime.cc 25 #include "runtime.h"
33 if (Runtime::Current()->IsExplicitGcDisabled()) {
37 Runtime::Current()->GetHeap()->CollectGarbage(false);
42 Runtime::Current()->CallExitHook(status);
73 JavaVMExt* vm = Runtime::Current()->GetJavaVM();
86 return Runtime::Current()->GetHeap()->GetMaxMemory();
90 return Runtime::Current()->GetHeap()->GetTotalMemory();
94 return Runtime::Current()->GetHeap()->GetFreeMemory();
98 NATIVE_METHOD(Runtime, freeMemory, "!()J"),
99 NATIVE_METHOD(Runtime, gc, "()V")
    [all...]

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 91011>>