• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching defs:sz

424   void reserve(size_t sz) { Alloc(sz); }
446 // append first n (or all if n == npos) characters of sz
447 wxStringBase& append(const wxChar *sz)
448 { ConcatSelf(wxStrlen(sz), sz); return *this; }
449 wxStringBase& append(const wxChar *sz, size_t n)
450 { ConcatSelf(n, sz); return *this; }
463 // same as `= first n (or all if n == npos) characters of sz'
464 wxStringBase& assign(const wxChar *sz)
465 { clear(); return append(sz, wxStrlen(sz)); }
466 wxStringBase& assign(const wxChar *sz, size_t n)
467 { clear(); return append(sz, n); }
504 // insert first n (or all if n == npos) characters of sz
505 wxStringBase& insert(size_t nPos, const wxChar *sz, size_t n = npos);
531 wxStringBase& replace(size_t nStart, size_t nLen, const wxChar* sz);
540 // replaces the substring with first nCount chars of sz
542 const wxChar* sz, size_t nCount);
566 // find first n characters of sz
567 size_t find(const wxChar* sz, size_t nStart = 0, size_t n = npos) const;
578 size_t rfind(const wxChar* sz, size_t nStart = npos,
589 size_t find_first_of(const wxChar* sz, size_t nStart = 0) const;
590 size_t find_first_of(const wxChar* sz, size_t nStart, size_t n) const;
598 size_t find_last_of (const wxChar* sz, size_t nStart = npos) const;
599 size_t find_last_of(const wxChar* sz, size_t nStart, size_t n) const;
610 size_t find_first_not_of(const wxChar* sz, size_t nStart = 0) const;
611 size_t find_first_not_of(const wxChar* sz, size_t nStart, size_t n) const;
618 size_t find_last_not_of(const wxChar* sz, size_t nStart = npos) const;
619 size_t find_last_not_of(const wxChar* sz, size_t nStart, size_t n) const;
634 int compare(const wxChar* sz) const;
635 // substring comparison with first nCount characters of sz
637 const wxChar* sz, size_t nCount = npos) const;
1297 // append first n (or all if n == npos) characters of sz
1298 wxString& append(const wxChar *sz)
1299 { return (wxString&)wxStringBase::append(sz); }
1300 wxString& append(const wxChar *sz, size_t n)
1301 { return (wxString&)wxStringBase::append(sz, n); }
1315 // same as `= first n (or all if n == npos) characters of sz'
1316 wxString& assign(const wxChar *sz)
1317 { return (wxString&)wxStringBase::assign(sz); }
1318 wxString& assign(const wxChar *sz, size_t n)
1319 { return (wxString&)wxStringBase::assign(sz, n); }
1336 int compare(const wxChar* sz) const;
1337 // substring comparison with first nCount characters of sz
1339 const wxChar* sz, size_t nCount = npos) const;
1348 // insert first n (or all if n == npos) characters of sz
1349 wxString& insert(size_t nPos, const wxChar *sz)
1350 { return (wxString&)wxStringBase::insert(nPos, sz); }
1351 wxString& insert(size_t nPos, const wxChar *sz, size_t n)
1352 { return (wxString&)wxStringBase::insert(nPos, sz, n); }
1376 wxString& replace(size_t nStart, size_t nLen, const wxChar* sz)
1377 { return (wxString&)wxStringBase::replace(nStart, nLen, sz); }
1389 // replaces the substring with first nCount chars of sz
1391 const wxChar* sz, size_t nCount)
1392 { return (wxString&)wxStringBase::replace(nStart, nLen, sz, nCount); }