Searched defs:pszThat (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dministring.cpp127 RTCString &RTCString::append(const char *pszThat) argument
129 size_t cchThat = strlen(pszThat);
144 memcpy(&m_psz[cchThis], pszThat, cchThat);
/vbox/include/iprt/cpp/
H A Dministring.h352 * @param pszThat The C string to append.
358 RTCString &append(const char *pszThat);
397 * @param pszThat The C string to append.
401 RTCString &operator+=(const char *pszThat) argument
403 return append(pszThat);
409 * @param pszThat The character to append.
612 * @param pszThat The string to compare with.
614 bool equals(const char *pszThat) const
619 return pszThat == NULL || *pszThat
[all...]

Completed in 166 milliseconds