/external/expat/lib/ |
xmltok.c | 335 const char * fromLim = *fromLimRef; 337 for (; fromLim > from; fromLim--, walked++) { 338 const unsigned char prev = (unsigned char)fromLim[-1]; 341 fromLim += 4 - 1; 348 fromLim += 3 - 1; 355 fromLim += 2 - 1; 364 *fromLimRef = fromLim; 369 const char **fromP, const char *fromLim, 375 if (fromLim - *fromP > toLim - *toP) [all...] |
xmltok.h | 169 const char *fromLim, 174 const char *fromLim, 261 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \ 262 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim)) 264 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \ 265 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
xmltok.h | 163 const char *fromLim,
168 const char *fromLim,
255 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \
256 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim))
258 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \
259 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))
|
xmltok.c | 323 const char **fromP, const char *fromLim,
328 if (fromLim - *fromP > toLim - *toP) {
330 for (fromLim = *fromP + (toLim - *toP); fromLim > *fromP; fromLim--)
331 if (((unsigned char)fromLim[-1] & 0xc0) != 0x80)
334 for (to = *toP, from = *fromP; from != fromLim; from++, to++)
342 const char **fromP, const char *fromLim,
347 while (from != fromLim && to != toLim) {
430 const char **fromP, const char *fromLim,
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/ |
xmltok.h | 163 const char *fromLim,
168 const char *fromLim,
255 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \
256 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim))
258 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \
259 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))
|
xmltok.c | 319 const char **fromP, const char *fromLim,
324 if (fromLim - *fromP > toLim - *toP) {
326 for (fromLim = *fromP + (toLim - *toP); fromLim > *fromP; fromLim--)
327 if (((unsigned char)fromLim[-1] & 0xc0) != 0x80)
330 for (to = *toP, from = *fromP; from != fromLim; from++, to++)
338 const char **fromP, const char *fromLim,
343 while (from != fromLim && to != toLim) {
426 const char **fromP, const char *fromLim,
[all...] |
/external/expat/tests/ |
runtests.c | 410 const char * fromLim = cases[i].input + strlen(cases[i].input); 411 const char * const fromLimInitially = fromLim; 414 align_limit_to_full_utf8_characters(cases[i].input, &fromLim); 416 actualMovementInChars = (fromLim - fromLimInitially); [all...] |