Lines Matching refs:p

157                 sal_Unicode const * p = *pBegin;  in readUcs4()  local
161 if (pEnd - p < 3 || p[0] != cEscapePrefix in readUcs4()
162 || (nWeight1 = getHexWeight(p[1])) < 8 in readUcs4()
164 || (nWeight2 = getHexWeight(p[2])) < 0) in readUcs4()
169 p += 3; in readUcs4()
175 *pBegin = p; in readUcs4()
188 sal_Unicode const * p = *pBegin; in readUcs4() local
208 *pBegin = p; in readUcs4()
218 && pEnd - p >= 3 && p[0] == cEscapePrefix in readUcs4()
219 && (nWeight1 = getHexWeight(p[1])) >= 0 in readUcs4()
220 && (nWeight2 = getHexWeight(p[2])) >= 0) in readUcs4()
222 p += 3; in readUcs4()
226 && p != pEnd && *p <= 0x7F) in readUcs4()
228 aBuf.append(static_cast< char >(*p++)); in readUcs4()
390 for (sal_Unicode const * p = pPos + 1; p != pEnd; ++p) in parseUriRef() local
391 if (*p == ':') in parseUriRef()
394 pComponents->aScheme.pEnd = ++p; in parseUriRef()
395 pPos = p; in parseUriRef()
398 else if (!isAlpha(*p) && !isDigit(*p) && *p != '+' && *p != '-' in parseUriRef()
399 && *p != '.') in parseUriRef()
447 sal_Unicode const * p = rBasePath.pBegin + 1; in joinPaths() local
448 for (sal_Unicode const * q = p; q != rBasePath.pEnd; ++q) in joinPaths()
452 (q - p == 1 && p[0] == '.') || in joinPaths()
453 (q - p == 2 && p[0] == '.' && p[1] == '.') in joinPaths()
458 p = q + 1; in joinPaths()
460 aBuffer.append(rBasePath.pBegin, p - rBasePath.pBegin); in joinPaths()
462 p = rRelPath.pBegin; in joinPaths()
463 if (p != rRelPath.pEnd) in joinPaths()
466 sal_Unicode const * q = p; in joinPaths()
482 if (q - p == 2 && p[0] == '.' && p[1] == '.') in joinPaths()
489 aBuffer.append(p, r - p); in joinPaths()
499 else if (q - p != 1 || *p != '.') in joinPaths()
500 aBuffer.append(p, r - p); in joinPaths()
503 p = q + 1; in joinPaths()
603 sal_Unicode const * p = pText->buffer; in rtl_uriEncode() local
604 sal_Unicode const * pEnd = p + pText->length; in rtl_uriEncode()
607 while (p < pEnd) in rtl_uriEncode()
611 &p, pEnd, in rtl_uriEncode()
669 sal_Unicode const * p = pText->buffer; in rtl_uriDecode() local
670 sal_Unicode const * pEnd = p + pText->length; in rtl_uriDecode()
673 while (p < pEnd) in rtl_uriDecode()
676 sal_uInt32 nUtf32 = readUcs4(&p, pEnd, true, eCharset, &eType); in rtl_uriDecode()