Author: Linux Manual

Linux man pages imported from manual pages.
  • |

    antlr3-addChildToken (3) Linux Manual Page

    src/antlr3basetreeadaptor.c – Contains the base functions that all tree adaptors start with. Synopsis#include <antlr3basetreeadaptor.h> Functionsstatic void addChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_BASE_TREE child) Add a child to the tree t. static void addChildToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, pANTLR3_COMMON_TOKEN child) Use the adaptor implementation to add a child node with the supplied token. ANTLR3_API void antlr3BaseTreeAdaptorInit…

  • |

    antlr3-addChild (3) Linux Manual Page

    src/antlr3basetree.c – Synopsis#include <antlr3basetree.h> Functionsstatic void addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child) static void addChildren (pANTLR3_BASE_TREE tree, pANTLR3_LIST kids) Add all elements of the supplied list as children of this node. ANTLR3_API pANTLR3_BASE_TREE antlr3BaseTreeNew (pANTLR3_BASE_TREE tree) static void * deleteChild (pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i) static void * dupTree (pANTLR3_BASE_TREE tree) static void freshenPACIndexes (pANTLR3_BASE_TREE tree, ANTLR3_UINT32…

  • |

    antlr3-add (3) Linux Manual Page

    src/antlr3rewritestreams.c – Implementation of token/tree streams that are used by the tree re-write rules to manipulate the tokens and trees produced by rules that are subject to rewrite directives. Synopsis#include <antlr3rewritestreams.h> Functionsstatic void * _next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) Do the work of getting the next element, making sure that it’s a tree node or subtree. static…

  • |

    antlr3-adaptor (3) Linux Manual Page

    ANTLR3_COMMON_TREE_NODE_STREAM_struct – Synopsis#include <antlr3commontreenodestream.h> Data FieldsANTLR3_MARKER absoluteNodeIndex What node index did we just consume? i=0..n-1 for n node trees. pANTLR3_BASE_TREE_ADAPTOR adaptor Pointer to tree adaptor interface that manipulates/builds the tree. void(* addLookahead )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, pANTLR3_BASE_TREE node) void(* addNavigationNode )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, ANTLR3_UINT32 ttype) ANTLR3_INT32 currentChildIndex Which child are we currently visiting? If -1 we…

  • |

    antlr3-ack (3) Linux Manual Page

    src/antlr3debughandlers.c – Provides the debugging functions invoked by a recognizer built using the debug generator mode of the antlr tool. Synopsis#include <antlr3.h> Functionsstatic void ack (pANTLR3_DEBUG_EVENT_LISTENER delboy) static void addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE root, pANTLR3_BASE_TREE child) ANTLR3_API pANTLR3_DEBUG_EVENT_LISTENER antlr3DebugListenerNew () Create and initialize a new debug event listener that can be connected to by ANTLRWorks…

  • |

    antlr3-accept (3) Linux Manual Page

    ANTLR3_CYCLIC_DFA_struct – Definition of a cyclic dfa structure such that it can be initialized at compile time and have only a single runtime function that can deal with all cyclic dfa structures and show Java how it is done ;-). Synopsis#include <antlr3cyclicdfa.h> Data Fieldsconst ANTLR3_INT32 *const accept const ANTLR3_INT32 decisionNumber Decision number that a particular…

  • |

    antlr3-absoluteNodeIndex (3) Linux Manual Page

    ANTLR3_COMMON_TREE_NODE_STREAM_struct – Synopsis#include <antlr3commontreenodestream.h> Data FieldsANTLR3_MARKER absoluteNodeIndex What node index did we just consume? i=0..n-1 for n node trees. pANTLR3_BASE_TREE_ADAPTOR adaptor Pointer to tree adaptor interface that manipulates/builds the tree. void(* addLookahead )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, pANTLR3_BASE_TREE node) void(* addNavigationNode )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, ANTLR3_UINT32 ttype) ANTLR3_INT32 currentChildIndex Which child are we currently visiting? If -1 we…

  • |

    antlr3-_stat (3) Linux Manual Page

    include/antlr3defs.h – Basic type and constant definitions for ANTLR3 Runtime. Synopsis#include <antlr3errors.h> #include <antlr3config.h> #include <stdio.h> #include <antlr3interfaces.h> #include <antlr3convertutf.h> Defines#define _stat stat #define ANTLR3_API #define ANTLR3_API #define ANTLR3_AVERAGE #define ANTLR3_CALLOC(numEl, elSize) calloc (numEl, (size_t)(elSize)) Default definition of ANTLR3_CALLOC. #define ANTLR3_CDECL #define ANTLR3_CLOSESOCKET close #define ANTLR3_ENCODING_LATIN1 0 #define ANTLR3_ENCODING_UCS2 1 #define ANTLR3_ENCODING_UTF32 3 #define ANTLR3_ENCODING_UTF8…

  • |

    antlr3-_next (3) Linux Manual Page

    src/antlr3rewritestreams.c – Implementation of token/tree streams that are used by the tree re-write rules to manipulate the tokens and trees produced by rules that are subject to rewrite directives. Synopsis#include <antlr3rewritestreams.h> Functionsstatic void * _next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) Do the work of getting the next element, making sure that it’s a tree node or subtree. static…

  • |

    antlr3-_builddir_build_BUILD_antlr-3 (3) Linux Manual Page

    src/ Directory Reference – SynopsisFilesfile antlr3baserecognizer.c Contains the base functions that all recognizers require. file antlr3basetree.c file antlr3basetreeadaptor.c Contains the base functions that all tree adaptors start with. file antlr3bitset.c Contains the C implementation of ANTLR3 bitsets as adapted from Terence Parr’s Java implementation. file antlr3collections.c Provides a number of useful functions that are roughly…

  • |

    antlr3-_LT (3) Linux Manual Page

    src/antlr3commontreenodestream.c – Defines the implementation of the common node stream the default tree node stream used by ANTLR. Synopsis#include <antlr3commontreenodestream.h> Functionsstatic ANTLR3_UINT32 _LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i) static pANTLR3_BASE_TREE _LT (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k) static void addNavigationNode (pANTLR3_COMMON_TREE_NODE_STREAM ctns, ANTLR3_UINT32 ttype) static void antlr3CommonTreeNodeStreamFree (pANTLR3_COMMON_TREE_NODE_STREAM ctns) Free up any resources that belong to this common…

  • |

    antlr3-_LA (3) Linux Manual Page

    src/antlr3commontreenodestream.c – Defines the implementation of the common node stream the default tree node stream used by ANTLR. Synopsis#include <antlr3commontreenodestream.h> Functionsstatic ANTLR3_UINT32 _LA (pANTLR3_INT_STREAM is, ANTLR3_INT32 i) static pANTLR3_BASE_TREE _LT (pANTLR3_TREE_NODE_STREAM tns, ANTLR3_INT32 k) static void addNavigationNode (pANTLR3_COMMON_TREE_NODE_STREAM ctns, ANTLR3_UINT32 ttype) static void antlr3CommonTreeNodeStreamFree (pANTLR3_COMMON_TREE_NODE_STREAM ctns) Free up any resources that belong to this common…

  • |

    antlr3-UTF8 (3) Linux Manual Page

    include/antlr3convertutf.h – Synopsis#include <antlr3defs.h> Defines#define UNI_MAX_BMP (UTF32)0x0000FFFF #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF #define UNI_MAX_UTF16 (UTF32)0x0010FFFF #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD Typedefstypedef ANTLR3_UINT16 UTF16 typedef ANTLR3_UINT32 UTF32 typedef ANTLR3_UINT8 UTF8 Enumerationsenum ConversionFlags { strictConversion = 0, lenientConversion } enum ConversionResult { conversionOK, sourceExhausted, targetExhausted, sourceIllegal } FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32…

  • |

    antlr3-UTF32 (3) Linux Manual Page

    include/antlr3convertutf.h – Synopsis#include <antlr3defs.h> Defines#define UNI_MAX_BMP (UTF32)0x0000FFFF #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF #define UNI_MAX_UTF16 (UTF32)0x0010FFFF #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD Typedefstypedef ANTLR3_UINT16 UTF16 typedef ANTLR3_UINT32 UTF32 typedef ANTLR3_UINT8 UTF8 Enumerationsenum ConversionFlags { strictConversion = 0, lenientConversion } enum ConversionResult { conversionOK, sourceExhausted, targetExhausted, sourceIllegal } FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32…

  • |

    antlr3-UTF16 (3) Linux Manual Page

    include/antlr3convertutf.h – Synopsis#include <antlr3defs.h> Defines#define UNI_MAX_BMP (UTF32)0x0000FFFF #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF #define UNI_MAX_UTF16 (UTF32)0x0010FFFF #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD Typedefstypedef ANTLR3_UINT16 UTF16 typedef ANTLR3_UINT32 UTF32 typedef ANTLR3_UINT8 UTF8 Enumerationsenum ConversionFlags { strictConversion = 0, lenientConversion } enum ConversionResult { conversionOK, sourceExhausted, targetExhausted, sourceIllegal } FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32…

  • |

    antlr3-UP (3) Linux Manual Page

    ANTLR3_COMMON_TREE_NODE_STREAM_struct – Synopsis#include <antlr3commontreenodestream.h> Data FieldsANTLR3_MARKER absoluteNodeIndex What node index did we just consume? i=0..n-1 for n node trees. pANTLR3_BASE_TREE_ADAPTOR adaptor Pointer to tree adaptor interface that manipulates/builds the tree. void(* addLookahead )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, pANTLR3_BASE_TREE node) void(* addNavigationNode )(struct ANTLR3_COMMON_TREE_NODE_STREAM_struct *ctns, ANTLR3_UINT32 ttype) ANTLR3_INT32 currentChildIndex Which child are we currently visiting? If -1 we…

  • |

    antlr3-UNI_SUR_LOW_START (3) Linux Manual Page

    src/antlr3convertutf.c – Synopsis#include ‘antlr3convertutf.h’ Defines#define false 0 #define true 1 #define UNI_SUR_HIGH_END (UTF32)0xDBFF #define UNI_SUR_HIGH_START (UTF32)0xD800 #define UNI_SUR_LOW_END (UTF32)0xDFFF #define UNI_SUR_LOW_START (UTF32)0xDC00 FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF16toUTF8 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF32toUTF16 (const UTF32 **sourceStart,…

  • |

    antlr3-UNI_SUR_LOW_END (3) Linux Manual Page

    src/antlr3convertutf.c – Synopsis#include ‘antlr3convertutf.h’ Defines#define false 0 #define true 1 #define UNI_SUR_HIGH_END (UTF32)0xDBFF #define UNI_SUR_HIGH_START (UTF32)0xD800 #define UNI_SUR_LOW_END (UTF32)0xDFFF #define UNI_SUR_LOW_START (UTF32)0xDC00 FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF16toUTF8 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF32toUTF16 (const UTF32 **sourceStart,…

  • |

    antlr3-UNI_SUR_HIGH_START (3) Linux Manual Page

    src/antlr3convertutf.c – Synopsis#include ‘antlr3convertutf.h’ Defines#define false 0 #define true 1 #define UNI_SUR_HIGH_END (UTF32)0xDBFF #define UNI_SUR_HIGH_START (UTF32)0xD800 #define UNI_SUR_LOW_END (UTF32)0xDFFF #define UNI_SUR_LOW_START (UTF32)0xDC00 FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF16toUTF8 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF32toUTF16 (const UTF32 **sourceStart,…

  • |

    antlr3-UNI_SUR_HIGH_END (3) Linux Manual Page

    src/antlr3convertutf.c – Synopsis#include ‘antlr3convertutf.h’ Defines#define false 0 #define true 1 #define UNI_SUR_HIGH_END (UTF32)0xDBFF #define UNI_SUR_HIGH_START (UTF32)0xD800 #define UNI_SUR_LOW_END (UTF32)0xDFFF #define UNI_SUR_LOW_START (UTF32)0xDC00 FunctionsConversionResult ConvertUTF16toUTF32 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF32 **targetStart, UTF32 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF16toUTF8 (const UTF16 **sourceStart, const UTF16 *sourceEnd, UTF8 **targetStart, UTF8 *targetEnd, ConversionFlags flags) ConversionResult ConvertUTF32toUTF16 (const UTF32 **sourceStart,…