Lines Matching +full:runtime +full:- +full:versions
1 // Main page documentation for ANTLR3C runtime. Contains
5 /// \mainpage ANTLR3 C Runtime API and Usage Guide.
11 /// tool. While some of the documentation may well apply to prior or future versions
21 /// - \subpage changes331 Check here for API changes
27 /// generation template for the tool and a runtime library for use by generated recognizers.
28 /// The C runtime tracks the Java runtime releases and in general when a new version of the
29 /// tool is released, a new version of the C runtime will be released at the same time.
33 /// - \subpage build Building the runtime itself from source code;
34 /// - \subpage generate How to tell ANTLR to generate code for the C target;
35 /// - \subpage buildrec How to build the generated code
36 /// - \subpage using Using the runtime and the libraries and so on;
37 /// - \subpage runtime The documentation of the runtime code and functions;
41 /// The ANTLR 3 C runtime and code generation templates were written by <a href="http://www.linkedi…
42 /// (jimi|at|temporal-wave|dott/com) of <a href="http://www.temporal-wave.com">Temporal Wave LLC</a…
44 /// The C runtime and therefore the code generated to utilize the runtime reflects the object model…
45 /// Java version of the runtime as closely as a language without class structures and inheritance c…
55 /// \subsection model Runtime Model
57 /// As there is no such thing as an object reference in C, the runtime defines a number of typedef …
63 /// The use and initialization of the C versions of a parser is therefore similar to the examples g…
67 /// The runtime provides a number of structures and interfaces that the author has found useful whe…
68 /// processing code within java parsers, and furthermore were required by the C runtime code if it …
84 /// with all warnings turned on. This is true of both the runtime code and the generated code and h…
85 /// with Visual Studio .Net (2003, 2005 and 2008) and later versions of gcc on Redhat Linux, as wel…
89 /// - The C runtime is constructed such that the library can be integrated as an archive library,…
90 /// - The C language target code generation templates are distributed with the source code for th…
94 /// It is C :-). Basic testing of performance against the Java runtime,
96 /// backtracking and memoization) show that the C runtime uses about half the memory and is between…
97 /// Tests of non-backtracking, non-memoizing parsers, indicate results significantly better than th…
102 /// zip/tar of examples projects for use with the C runtime model. It contains .sln files and sourc…