Searched refs:sOther (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DSString.h137 SString &assign(const char *sOther, lenpos_t sSize_=measure_length);
192 bool operator==(const SString &sOther) const;
193 bool operator!=(const SString &sOther) const {
194 return !operator==(sOther);
196 bool operator==(const char *sOther) const;
197 bool operator!=(const char *sOther) const {
198 return !operator==(sOther);
220 SString &append(const char *sOther, lenpos_t sLenOther=measure_length, char sep = '\0');
221 SString &operator+=(const char *sOther) { argument
222 return append(sOther, static_cas
224 operator +=(const SString &sOther) argument
230 appendwithseparator(const char *sOther, char sep) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DPropSet.cxx110 SString &SString::assign(const char *sOther, lenpos_t sSize_) { argument
111 if (!sOther) {
114 sSize_ = strlen(sOther);
118 memcpy(s, sOther, sSize_);
124 s = StringAllocate(sOther, sSize_);
135 bool SString::operator==(const SString &sOther) const {
136 if ((s == 0) && (sOther.s == 0))
138 if ((s == 0) || (sOther.s == 0))
140 return strcmp(s, sOther.s) == 0;
143 bool SString::operator==(const char *sOther) cons
187 append(const char *sOther, lenpos_t sLenOther, char sep) argument
212 insert(lenpos_t pos, const char *sOther, lenpos_t sLenOther) argument
[all...]

Completed in 39 milliseconds