Searched defs:Cp (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dutf-8-case.cpp228 RTUNICP Cp; local
229 RTStrGetCpEx(&pszHaystack, &Cp);
230 if (!Cp)
232 if ( Cp == Cp0
243 RTUNICP Cp; local
244 RTStrGetCpEx(&pszHaystack, &Cp);
245 if (!Cp)
247 if ( ( Cp == Cp0Upper
248 || Cp == Cp0Lower)
258 RTUNICP Cp; local
[all...]
H A Dutf-16.cpp243 RTUNICP Cp; local
246 if (RT_FAILURE(RTUtf16GetCpEx((PCRTUTF16 *)&pwsz, &Cp)))
248 if (!Cp)
253 if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */
H A Dstrformat.cpp559 RTUNICP Cp; local
560 RTUtf16GetCpEx(&pwszStr, &Cp);
561 char szUtf8[8]; /* Cp=0x7fffffff -> 6 bytes. */
562 char *pszEnd = RTStrPutCp(szUtf8, Cp);
593 char szUtf8[8]; /* Cp=0x7fffffff -> 6 bytes. */
H A Dutf-8.cpp348 RTUNICP Cp; local
349 int rc = RTStrGetCpEx((const char **)&psz, &Cp);
352 if (!Cp)
372 RTUNICP Cp; local
375 if (RT_FAILURE(RTStrGetCpEx((const char **)&psz, &Cp)))
377 if (!Cp)
382 if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */
853 RTUNICP Cp; local
854 int rc = RTLatin1GetCpNEx(&psz, &cchIn, &Cp);
883 RTUNICP Cp; local
1040 RTUNICP Cp; local
1076 RTUNICP Cp; local
1243 RTUNICP Cp; local
[all...]
/vbox/src/VBox/Runtime/common/misc/
H A Dgetoptargv.cpp120 * @param Cp The code point.
123 static bool rtGetOptIsUniCpInString(RTUNICP Cp, const char *pszSeparators) argument
132 if (CpSep == Cp)
172 * @param Cp The code point.
176 DECL_FORCE_INLINE(bool) rtGetOptIsCpInSet(RTUNICP Cp, const char *pszSeparators, size_t cchSeparators) argument
178 if (RT_LIKELY(Cp <= 127))
179 return rtGetOptIsAsciiInSet((char)Cp, pszSeparators, cchSeparators);
180 return rtGetOptIsUniCpInString(Cp, pszSeparators);
199 RTUNICP Cp; local
200 int rc = RTStrGetCpEx(&pszSrc, &Cp);
266 RTUNICP Cp; local
[all...]
/vbox/include/iprt/
H A Dstring.h1319 RTUNICP Cp; local
1320 RTStrGetCpEx(&psz, &Cp);
3981 RTUNICP Cp; local
3982 RTUtf16GetCpEx(&pwsz, &Cp);
/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp891 RTUNICP Cp; local
892 RTStrGetCpEx(&psz2, &Cp);
893 *pu32 = Cp;
/vbox/src/VBox/Storage/
H A DVMDK.cpp882 RTUNICP Cp = RTStrGetCp(psz); local
883 if (Cp == '\\')
885 pszDst = RTStrPutCp(pszDst, Cp);
886 pszDst = RTStrPutCp(pszDst, Cp);
888 else if (Cp == '\n')
893 else if (Cp == '\r')
899 pszDst = RTStrPutCp(pszDst, Cp);
926 RTUNICP Cp = RTStrGetCp(pszEncoded); local
927 if (Cp == '\\')
944 pszDst = RTStrPutCp(pszDst, Cp);
[all...]

Completed in 78 milliseconds