• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/expat-12/expat/lib/

Lines Matching refs:end

13 #define XML_TOK_TRAILING_RSQB -5 /* ] or ]] at the end of the scan; might be
19 #define XML_TOK_TRAILING_CR -3 /* A CR at the end of the scan;
155 const char *end,
159 const char *end,
176 /* Scan the string starting at ptr until the end of the next complete
190 set to point to the character following the end of that token.
198 #define XmlTok(enc, state, ptr, end, nextTokPtr) \
199 (((enc)->scanners[state])(enc, ptr, end, nextTokPtr))
201 #define XmlPrologTok(enc, ptr, end, nextTokPtr) \
202 XmlTok(enc, XML_PROLOG_STATE, ptr, end, nextTokPtr)
204 #define XmlContentTok(enc, ptr, end, nextTokPtr) \
205 XmlTok(enc, XML_CONTENT_STATE, ptr, end, nextTokPtr)
207 #define XmlCdataSectionTok(enc, ptr, end, nextTokPtr) \
208 XmlTok(enc, XML_CDATA_SECTION_STATE, ptr, end, nextTokPtr)
212 #define XmlIgnoreSectionTok(enc, ptr, end, nextTokPtr) \
213 XmlTok(enc, XML_IGNORE_SECTION_STATE, ptr, end, nextTokPtr)
220 #define XmlLiteralTok(enc, literalType, ptr, end, nextTokPtr) \
221 (((enc)->literalScanners[literalType])(enc, ptr, end, nextTokPtr))
223 #define XmlAttributeValueTok(enc, ptr, end, nextTokPtr) \
224 XmlLiteralTok(enc, XML_ATTRIBUTE_VALUE_LITERAL, ptr, end, nextTokPtr)
226 #define XmlEntityValueTok(enc, ptr, end, nextTokPtr) \
227 XmlLiteralTok(enc, XML_ENTITY_VALUE_LITERAL, ptr, end, nextTokPtr)
246 #define XmlPredefinedEntityName(enc, ptr, end) \
247 (((enc)->predefinedEntityName)(enc, ptr, end))
249 #define XmlUpdatePosition(enc, ptr, end, pos) \
250 (((enc)->updatePosition)(enc, ptr, end, pos))
252 #define XmlIsPublicId(enc, ptr, end, badPtr) \
253 (((enc)->isPublicId)(enc, ptr, end, badPtr))
269 const char *end,
296 const char *end,