HomeSort by relevance Sort by last modified time
    Searched full:runtime (Results 51 - 75 of 8718) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/dist/
DOT-NET-runtime-3.1.3.zip 
  /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/Perl5/lib/ANTLR/Runtime/
MismatchedTokenException.pm 1 package ANTLR::Runtime::MismatchedTokenException;
3 use ANTLR::Runtime::Token;
13 extends 'ANTLR::Runtime::RecognitionException';
18 default => ANTLR::Runtime::Token->INVALID_TOKEN_TYPE,
CharStream.pm 1 package ANTLR::Runtime::CharStream;
7 #extends 'ANTLR::Runtime::IntStream';
NoViableAltException.pm 1 package ANTLR::Runtime::NoViableAltException;
5 extends 'ANTLR::Runtime::RecognitionException';
Token.pm 1 package ANTLR::Runtime::Token;
7 use ANTLR::Runtime::CharStream;
8 #use ANTLR::Runtime::CommonToken;
37 sub EOF { ANTLR::Runtime::CharStream->EOF }
39 #Readonly my $EOF_TOKEN => ANTLR::Runtime::CommonToken->new({ type => EOF });
41 require ANTLR::Runtime::CommonToken;
42 state $EOF_TOKEN = ANTLR::Runtime::CommonToken->new({ type => EOF });
49 #Readonly my $INVALID_TOKEN => ANTLR::Runtime::CommonToken->new({ type => INVALID_TOKEN_TYPE });
51 require ANTLR::Runtime::CommonToken;
52 state $INVALID_TOKEN = ANTLR::Runtime::CommonToken->new({ type => INVALID_TOKEN_TYPE })
    [all...]
  /external/chromium/chrome/common/extensions/docs/server/
app.yaml 3 runtime: python
  /external/e2fsprogs/debian/
uuid-runtime.lintian-overrides 1 uuid-runtime: command-with-path-in-maintainer-script prerm:5 /usr/sbin/uuidd
  /external/webkit/Source/JavaScriptCore/yarr/
yarr.pri 1 # Yet Another Regex Runtime - Qt4 build info
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
JavaScriptCore.vcproj 514 Name="runtime"
517 RelativePath="..\..\runtime\ArgList.cpp"
521 RelativePath="..\..\runtime\ArgList.h"
525 RelativePath="..\..\runtime\Arguments.cpp"
529 RelativePath="..\..\runtime\Arguments.h"
533 RelativePath="..\..\runtime\ArrayConstructor.cpp"
537 RelativePath="..\..\runtime\ArrayConstructor.h"
541 RelativePath="..\..\runtime\ArrayPrototype.cpp"
545 RelativePath="..\..\runtime\ArrayPrototype.h"
549 RelativePath="..\..\runtime\BatchedTransitionOptimizer.h
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedTreeNodeException.as 1 package org.antlr.runtime {
2 import org.antlr.runtime.tree.TreeNodeStream;
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
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/JavaScript/tests/functional/
t058rewriteAST69.g 6 : INT -> {new org.antlr.runtime.tree.CommonTree(new org.antlr.runtime.CommonToken(FLOAT, $INT.text+".0"))}
  /external/javassist/src/main/javassist/tools/reflect/
package.html 3 Runtime Behavioral Reflection.
10 runtime behavioral reflection.
17 a runtime metaobject and a runtime class metaobject, which control
19 The runtime
21 runtime class metaobject is created for every (base-level) class.
22 <code>Metaobject</code> is the root class of the runtime
24 of the runtime class metaobject.
  /external/llvm/runtime/
README.txt 1 This directory contains the various runtime libraries used by components of
3 inserts calls to an external pool allocator library. This runtime library is
  /frameworks/compile/mclinker/docs/
DesignNote 7 Runtime Support | without C-runtime library
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MissingTokenException.js 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) {
3 org.antlr.runtime.MissingTokenException.superclass.constructor.call(
10 org.antlr.runtime.MissingTokenException,
11 org.antlr.runtime.MismatchedTokenException, {
27 name: "org.antlr.runtime.MissingTokenException"
Parser.js 4 org.antlr.runtime.Parser = function(input, state) {
5 org.antlr.runtime.Parser.superclass.constructor.call(this, state);
9 org.antlr.lang.extend(org.antlr.runtime.Parser, org.antlr.runtime.BaseRecognizer, {
12 org.antlr.runtime.Parser.superclass.reset.call(this);
29 var t = new org.antlr.runtime.CommonToken(expectedTokenType, tokenText);
32 if ( current.getType() === org.antlr.runtime.Token.EOF ) {
42 t.channel = org.antlr.runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL;
63 org.antlr.runtime.Parser.superclass.traceIn.call(
68 org.antlr.runtime.Parser.superclass.traceOut.call
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeTest.java 33 Runtime r = Runtime.getRuntime();
60 // Test for method java.lang.Runtime java.lang.Runtime.getRuntime()
61 assertNotNull(Runtime.getRuntime());
68 Runtime.getRuntime().addShutdownHook(this);
77 Runtime.getRuntime().addShutdownHook(thrException);
83 Runtime.getRuntime().addShutdownHook(thrException);
100 Runtime.getRuntime().removeShutdownHook(thrException);
109 assertTrue(Runtime.getRuntime().availableProcessors() > 0)
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
token.java 2 package java_cup.runtime;
8 * @see java_cup.runtime.int_token
9 * @see java_cup.runtime.str_token
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
4 stop.getType()!=org.antlr.runtime.Token.EOF) )
18 org.antlr.lang.extend(org.antlr.runtime.tree.CommonErrorNode, org.antlr.runtime.tree.CommonTree, {
24 return org.antlr.runtime.Token.INVALID_TOKEN_TYPE;
29 if ( this.start instanceof org.antlr.runtime.Token ) {
32 if ( this.stop.getType() === org.antlr.runtime.Token.EOF ) {
37 else if ( this.start instanceof org.antlr.runtime.tree.Tree ) {
49 if ( this.trappedException instanceof org.antlr.runtime.MissingTokenException ) {
54 else if ( this.trappedException instanceof org.antlr.runtime.UnwantedTokenException )
    [all...]

Completed in 8013 milliseconds

1 23 4 5 6 7 8 91011>>