XPathSymbols.cpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:7k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 2001, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: XPathSymbols.cpp,v $
  58.  * Revision 1.2  2002/11/04 14:47:41  tng
  59.  * C++ Namespace Support.
  60.  *
  61.  * Revision 1.1.1.1  2002/02/01 22:22:51  peiyongz
  62.  * sane_include
  63.  *
  64.  * Revision 1.1  2001/11/02 14:08:40  knoaman
  65.  * Add support for identity constraints.
  66.  *
  67.  */
  68. // ---------------------------------------------------------------------------
  69. //  Includes
  70. // ---------------------------------------------------------------------------
  71. #include <xercesc/util/XMLUniDefs.hpp>
  72. #include <xercesc/validators/schema/identity/XPathSymbols.hpp>
  73. XERCES_CPP_NAMESPACE_BEGIN
  74. // ---------------------------------------------------------------------------
  75. //  SchemaSymbols: Static data
  76. // ---------------------------------------------------------------------------
  77. const XMLCh XPathSymbols::fgSYMBOL_AND[] =
  78. {
  79.     chLatin_a, chLatin_n, chLatin_d, chNull
  80. };
  81. const XMLCh XPathSymbols::fgSYMBOL_OR[] =
  82. {
  83.     chLatin_o, chLatin_r, chNull
  84. };
  85. const XMLCh XPathSymbols::fgSYMBOL_MOD[] =
  86. {
  87.     chLatin_m, chLatin_o, chLatin_d, chNull
  88. };
  89. const XMLCh XPathSymbols::fgSYMBOL_DIV[] =
  90. {
  91.     chLatin_d, chLatin_i, chLatin_v, chNull
  92. };
  93. const XMLCh XPathSymbols::fgSYMBOL_COMMENT[] =
  94. {
  95.     chLatin_c, chLatin_o, chLatin_m, chLatin_m, chLatin_e, chLatin_n, chLatin_t, chNull
  96. };
  97. const XMLCh XPathSymbols::fgSYMBOL_TEXT[] =
  98. {
  99.     chLatin_t, chLatin_e, chLatin_x, chLatin_t, chNull
  100. };
  101. const XMLCh XPathSymbols::fgSYMBOL_PI[] =
  102. {
  103.     chLatin_p, chLatin_r, chLatin_o, chLatin_c, chLatin_e, chLatin_s, chLatin_s,
  104.     chLatin_i, chLatin_n, chLatin_g, chDash, chLatin_i, chLatin_n, chLatin_s, chLatin_t,
  105.     chLatin_r, chLatin_u, chLatin_c, chLatin_t, chLatin_i, chLatin_o, chLatin_n, chNull
  106. };
  107. const XMLCh XPathSymbols::fgSYMBOL_NODE[] =
  108. {
  109.     chLatin_n, chLatin_o, chLatin_d, chLatin_e, chNull
  110. };
  111. const XMLCh XPathSymbols::fgSYMBOL_ANCESTOR[] =
  112. {
  113.     chLatin_a, chLatin_n, chLatin_c, chLatin_e, chLatin_s, chLatin_t, chLatin_o,
  114.     chLatin_r, chNull
  115. };
  116. const XMLCh XPathSymbols::fgSYMBOL_ANCESTOR_OR_SELF[] =
  117. {
  118.     chLatin_a, chLatin_n, chLatin_c, chLatin_e, chLatin_s, chLatin_t, chLatin_o,
  119.     chLatin_r, chDash, chLatin_o, chLatin_r, chDash, chLatin_s, chLatin_e,
  120.     chLatin_l, chLatin_f, chNull
  121. };
  122. const XMLCh XPathSymbols::fgSYMBOL_ATTRIBUTE[] =
  123. {
  124.     chLatin_a, chLatin_t, chLatin_t, chLatin_r, chLatin_i, chLatin_b, chLatin_u,
  125.     chLatin_t, chLatin_e, chNull
  126. };
  127. const XMLCh XPathSymbols::fgSYMBOL_CHILD[] =
  128. {
  129.     chLatin_c, chLatin_h, chLatin_i, chLatin_l, chLatin_d, chNull
  130. };
  131. const XMLCh XPathSymbols::fgSYMBOL_DESCENDANT[] =
  132. {
  133.     chLatin_d, chLatin_e, chLatin_s, chLatin_c, chLatin_e, chLatin_n, chLatin_d,
  134.     chLatin_a, chLatin_n, chLatin_t, chNull
  135. };
  136. const XMLCh XPathSymbols::fgSYMBOL_DESCENDANT_OR_SELF[] =
  137. {
  138.     chLatin_d, chLatin_e, chLatin_s, chLatin_c, chLatin_e, chLatin_n, chLatin_d,
  139.     chLatin_a, chLatin_n, chLatin_t, chDash, chLatin_o, chLatin_r, chDash, chLatin_s,
  140. chLatin_e, chLatin_l, chLatin_f, chNull
  141. };
  142. const XMLCh XPathSymbols::fgSYMBOL_FOLLOWING[] =
  143. {
  144.     chLatin_f, chLatin_o, chLatin_l, chLatin_l, chLatin_o, chLatin_w, chLatin_i,
  145.     chLatin_n, chLatin_g, chNull
  146. };
  147. const XMLCh XPathSymbols::fgSYMBOL_FOLLOWING_SIBLING[] =
  148. {
  149.     chLatin_f, chLatin_o, chLatin_l, chLatin_l, chLatin_o, chLatin_w, chLatin_i,
  150.     chLatin_n, chLatin_g, chDash, chLatin_s, chLatin_i, chLatin_b, chLatin_l, chLatin_i,
  151.     chLatin_n, chLatin_g, chNull
  152. };
  153. const XMLCh XPathSymbols::fgSYMBOL_NAMESPACE[] =
  154. {
  155.     chLatin_n, chLatin_a, chLatin_m, chLatin_e, chLatin_s, chLatin_p, chLatin_a,
  156.     chLatin_c, chLatin_e, chNull
  157. };
  158. const XMLCh XPathSymbols::fgSYMBOL_PARENT[] =
  159. {
  160.     chLatin_p, chLatin_a, chLatin_r, chLatin_e, chLatin_n, chLatin_t, chNull
  161. };
  162. const XMLCh XPathSymbols::fgSYMBOL_PRECEDING[] =
  163. {
  164.     chLatin_p, chLatin_r, chLatin_e, chLatin_c, chLatin_e, chLatin_d, chLatin_i,
  165.     chLatin_n, chLatin_g, chNull
  166. };
  167. const XMLCh XPathSymbols::fgSYMBOL_PRECEDING_SIBLING[] =
  168. {
  169.     chLatin_p, chLatin_r, chLatin_e, chLatin_c, chLatin_e, chLatin_d, chLatin_i,
  170.     chLatin_n, chLatin_g, chDash, chLatin_s, chLatin_i, chLatin_b, chLatin_l, chLatin_i,
  171.     chLatin_n, chLatin_g, chNull
  172. };
  173. const XMLCh XPathSymbols::fgSYMBOL_SELF[] =
  174. {
  175.     chLatin_s, chLatin_e, chLatin_l, chLatin_f, chNull
  176. };
  177. XERCES_CPP_NAMESPACE_END
  178. /**
  179.   * End of file XPathSymbols.cpp
  180.   */