Searched refs:to (Results 1 - 25 of 7771) sorted by path

1234567891011>>

/external/ant-glob/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
H A DNOTICE19 * "control" means (i) the power, direct or indirect, to cause the
28 * including but not limited to software source code, documentation
33 * not limited to compiled object code, generated documentation,
34 * and conversions to other media types.
38 * copyright notice that is included in or attached to the work
46 * separable from, or merely link (or bind by name) to the interfaces of,
51 * to that Work or Derivative Works thereof, that is intentionally
52 * submitted to Licensor for inclusion in the Work by the copyright owner
53 * or by an individual or Legal Entity authorized to submit on behalf of
56 * to th
[all...]
/external/antlr/
H A DAndroid.mk9 # Unless required by applicable law or agreed to in writing, software
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
H A DANTLR3.java10 * Unless required by applicable law or agreed to in writing, software
16 * 2006-12-29: Modified to work for antlr3 by J�rgen Pfundt
18 * 2007-02-10: Adapted the grammar type recognition to the changed naming
24 * ANTLR option "depend" is being used to resolve build dependencies.
30 * 2008-08-09: Inspecting environment variable ANTLR_HOME to detect and add
31 * antlr- and stringtemplate libraries to the classpath
34 * a short struggle it started it's journey to /dev/null.
68 /** the file to process */
70 /** where to output the result */
82 /** optional flag to prin
[all...]
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... .io.File aFile String a String b int to java.io.IOException e org.apache. ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as20 * object so the state can be shared. This sharing is needed to
37 // wack everything related to error recovery
46 // wack everything related to backtracking and memoization
61 * rule. Rule would recover by resynchronizing to the set of
107 // then we know we're missing a token; error recovery is free to
113 // in follow set to indicate that the fall of the start symbol is
122 /** Factor out what to do upon token mismatch so tree parsers can behave
124 * to get single token insertion and deletion. Use this to turn of
126 * to cal
[all...]
H A DDFA.as10 * Could get away with byte sometimes but would have to generate different
25 /** Which recognizer encloses this DFA? Needed to check backtracking */
58 * to the underlying CFL). Return an alternative number 1..n. Throw
81 " returns from special state "+specialState+" to "+s);
97 var snext:int = transition[s][c-min[s]]; // move to next state
101 // eot[s]>=0 indicates that an EOT edge goes to another
103 if ( eot[s]>=0 ) { // EOT Transition to accept state?
109 // went to an accept...faster to do this, but
127 if ( c==TokenConstants.EOF && eof[s]>=0 ) { // EOF Transition to accep
[all...]
H A DRecognizerSharedState.as3 /** The set of fields needed by an abstract recognizer to recognize input
25 * This is used to prevent infinite loops where an error is found
27 * ad naseum. This is a failsafe mechanism to guarantee that at least
33 * has failed to match. Reset to false upon valid token match.
40 /** If 0, no backtracking is going on. Safe to exec actions etc...
55 // LEXER FIELDS (must be in same state object to avoid casting
59 /** The goal of all lexer rules/methods is to create a token object.
60 * This is an instance variable as multiple rules may collaborate to
62 * matching lexer rule(s). If you subclass to allo
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as11 /** System.identityHashCode() is not always unique; we have to
13 * expensive: we have to create a hashtable with all tree nodes in it.
25 * If you specify your own kind of tree nodes, you will likely have to
27 * if no token payload but you might have to set token type for diff
30 * You don't have to subclass CommonErrorNode; you will likely need to
31 * subclass your own tree node class to avoid class cast exception.
50 * not the tree node routines to do the construction.
69 /** Add a child to the tree t. If child is a flat tree (a list), make all
71 * and child isNil then you can decide it is ok to mov
[all...]
H A DCommonErrorNode.as22 // in follow set. So, stop will be 1 to left to start. adjust.
H A DRewriteRuleNodeStream.as22 // we dup every node, so don't have to worry about calling dup; short-
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
H A DTestANTLRStringStream.as95 // make sure we are where we expect to be
120 // make sure we are where we expect to be
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs6 * Conversion to C#:
18 * 3. The name of the author may not be used to endorse or promote products
46 * operations are done lazily--only if you convert the buffer to a
48 * all the time. As the buffer of tokens is converted to strings, the
49 * toString() method(s) check to see if there is an operation at the
73 * input.insertAfter(t, "text to put after t");}
77 * Actually, you have to cast the 'input' to a TokenRewriteStream. :(
85 * tokens.insertAfter("pass1", t, "text to put after t");}
117 * Execute the rewrite operation by possibly adding to th
152 ReplaceOp(TokenRewriteStream stream, int from, int to, object text) argument
168 DeleteOp(TokenRewriteStream stream, int from, int to) argument
279 Replace(int from, int to, object text) argument
287 Replace(IToken from, IToken to, object text) argument
291 Replace(string programName, int from, int to, object text) argument
301 Replace(string programName, IToken from, IToken to, object text) argument
312 Delete(int from, int to) argument
320 Delete(IToken from, IToken to) argument
324 Delete(string programName, int from, int to) argument
328 Delete(string programName, IToken from, IToken to) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs6 * Conversion to C#:
18 * 3. The name of the author may not be used to endorse or promote products
49 * operations are done lazily--only if you convert the buffer to a
51 * all the time. As the buffer of tokens is converted to strings, the
52 * toString() method(s) check to see if there is an operation at the
76 * input.insertAfter(t, "text to put after t");}
80 * Actually, you have to cast the 'input' to a TokenRewriteStream. :(
88 * tokens.insertAfter("pass1", t, "text to put after t");}
130 * Execute the rewrite operation by possibly adding to th
172 ReplaceOp( TokenRewriteStream stream, int from, int to, object text ) argument
317 Replace( int from, int to, object text ) argument
327 Replace( IToken from, IToken to, object text ) argument
332 Replace( string programName, int from, int to, object text ) argument
344 Replace( string programName, IToken from, IToken to, object text ) argument
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas7 Modify the generated code to correctly setup and call the methods from the unit
H A DAntlr.Runtime.Tools.Tests.pas7 Modify the generated code to correctly setup and call the methods from the unit
606 { Local variable Z is never accessed again. We add it to check that there
H A DAntlr.Runtime.Tree.Tests.pas7 Modify the generated code to correctly setup and call the methods from the unit
223 // Add child ^(nil 101 102 103) to root ^(5 6)
224 // should add 101 102 103 to end of 5's child list
382 // Add child ^(nil 101 102 103) to root 5
383 // should pull 101 102 103 directly to become 5's child list
626 for I := 0 to Nodes.Size - 1 do
696 for I := 0 to TUnBufferedTreeNodeStream.INITIAL_LOOKAHEAD_BUFFER_SIZE + 10 do
722 /// advanced somewhere to the middle of the lookahead buffer.
724 /// Use Consume() to advance N nodes into lookahead. Then use LT()
725 /// to loa
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Collections.pas17 3. The name of the author may not be used to endorse or promote products
20 submitted for inclusion in this work to the copyright owner or licensor
39 {$MESSAGE ERROR 'You need Delphi 2009 or higher to use the Antlr runtime'}
61 /// Adds an element to the top of the stack list.
379 for I := 0 to Coll.Count - 1 do
415 for I := 0 to Coll.Count - 1 do
H A DAntlr.Runtime.Tools.pas16 3. The name of the author may not be used to endorse or promote products
19 submitted for inclusion in this work to the copyright owner or licensor
38 {$MESSAGE ERROR 'You need Delphi 2009 or higher to use the Antlr runtime'}
65 /// Gives access to implementing object
88 /// Allows strings to be treated as object interfaces
102 /// Allows strings to be treated as object interfaces
313 /// I try to detect those declarations and move them to the routine header
317 /// to access variables by name. For example, see the following C code:
362 /// You MUST call the Finalize method at the end of the routine to mak
[all...]
H A DAntlr.Runtime.Tree.pas17 3. The name of the author may not be used to endorse or promote products
20 submitted for inclusion in this work to the copyright owner or licensor
39 {$MESSAGE ERROR 'You need Delphi 2009 or higher to use the Antlr runtime'}
51 /// How to create and navigate trees. Rather than have a separate factory
52 /// and adaptor, I've merged them. Makes sense to encapsulate.
57 /// I do not need to know the type of a tree at all so they are all
71 /// This is the most common create call. Override if you want another kind of node to be built.
76 /// <remarks> Override if you want another kind of node to be built.</remarks>
98 /// to some applications; default implementation stores ptr to i
[all...]
H A DAntlr.Runtime.pas17 3. The name of the author may not be used to endorse or promote products
20 submitted for inclusion in this work to the copyright owner or licensor
39 {$MESSAGE ERROR 'You need Delphi 2009 or higher to use the Antlr runtime'}
80 /// <summary>Tell the stream to start buffering if it hasn't already.</summary>
86 /// <returns>Return a marker that can be passed to
87 /// <see cref="IIntStream.Rewind(Integer)"/> to return to the current position.
94 /// last symbol has been read. The index is the symbol about to be
100 /// Resets the stream so that the next call to
105 /// it doesn't have to b
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java14 3. The name of the author may not be used to endorse or promote products
166 int to = in.readChar();
H A DTokenRewriteStream.java14 3. The name of the author may not be used to endorse or promote products
36 * operations are done lazily--only if you convert the buffer to a
38 * all the time. As the buffer of tokens is converted to strings, the
39 * toString() method(s) check to see if there is an operation at the
63 * input.insertAfter(t, "text to put after t");}
67 * Actually, you have to cast the 'input' to a TokenRewriteStream. :(
75 * tokens.insertAfter("pass1", t, "text to put after t");}
105 /** Execute the rewrite operation by possibly adding to the buffer.
106 * Return the index of the next token to operat
138 ReplaceOp(int from, int to, Object text) argument
251 replace(int from, int to, Object text) argument
259 replace(Token from, Token to, Object text) argument
263 replace(String programName, int from, int to, Object text) argument
273 replace(String programName, Token from, Token to, Object text) argument
284 delete(int from, int to) argument
292 delete(Token from, Token to) argument
296 delete(String programName, int from, int to) argument
300 delete(String programName, Token from, Token to) argument
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/build/
H A DREADME7 Before building the JavaScript target you will need to download a few third
12 * Move ant-contrib-1.0b3.jar from the unzipped directory to runtime/JavaScript/third/
16 * Move compiler.jar from the unzipped directory to runtime/JavaScript/third/
20 * Move the unzipped folder to runtime/JavaScript/third/jsdoc-toolkit
24 * Move the unzipped folder to runtime/JavaScript/tests/jsunit
27 1) In a shell cd to runtime/JavaScript/build.
34 This is most easily done by cd'ing to the root of the antlr code and running
36 different build method, update runtime/JavaScript/build/antlr3.properties to
37 point to the alternative jar.
38 2) In a shell cd to runtim
[all...]

Completed in 4722 milliseconds

1234567891011>>