summaryrefslogtreecommitdiffstats
path: root/mimelib/doc/string.html
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/doc/string.html')
-rw-r--r--mimelib/doc/string.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/mimelib/doc/string.html b/mimelib/doc/string.html
index 7c2f4f23..fe16aed4 100644
--- a/mimelib/doc/string.html
+++ b/mimelib/doc/string.html
@@ -70,14 +70,14 @@ public:
void <A HREF="string.html#swap">swap</A>(DwString&amp; aStr);
const char* <A HREF="string.html#c_str">c_str</A>() const;
const char* <A HREF="string.html#data">data</A>() const;
- size_t <A HREF="string.html#find">find</A>(const DwString&amp; aStr, size_t aPos=0) const;
- size_t <A HREF="string.html#find">find</A>(const char* aBuf, size_t aPos, size_t aLen) const;
- size_t <A HREF="string.html#find">find</A>(const char* aCstr, size_t aPos=0) const;
- size_t <A HREF="string.html#find">find</A>(char aChar, size_t aPos=0) const;
- size_t <A HREF="string.html#rfind">rfind</A>(const DwString&amp; aStr, size_t aPos=npos) const;
- size_t <A HREF="string.html#rfind">rfind</A>(const char* aBuf, size_t aPos, size_t aLen) const;
- size_t <A HREF="string.html#rfind">rfind</A>(const char* aCstr, size_t aPos=npos) const;
- size_t <A HREF="string.html#rfind">rfind</A>(char aChar, size_t aPos=npos) const;
+ size_t <A HREF="string.html#tqfind">tqfind</A>(const DwString&amp; aStr, size_t aPos=0) const;
+ size_t <A HREF="string.html#tqfind">tqfind</A>(const char* aBuf, size_t aPos, size_t aLen) const;
+ size_t <A HREF="string.html#tqfind">tqfind</A>(const char* aCstr, size_t aPos=0) const;
+ size_t <A HREF="string.html#tqfind">tqfind</A>(char aChar, size_t aPos=0) const;
+ size_t <A HREF="string.html#rtqfind">rtqfind</A>(const DwString&amp; aStr, size_t aPos=npos) const;
+ size_t <A HREF="string.html#rtqfind">rtqfind</A>(const char* aBuf, size_t aPos, size_t aLen) const;
+ size_t <A HREF="string.html#rtqfind">rtqfind</A>(const char* aCstr, size_t aPos=npos) const;
+ size_t <A HREF="string.html#rtqfind">rtqfind</A>(char aChar, size_t aPos=npos) const;
size_t <A HREF="string.html#find_first_of">find_first_of</A>(const DwString&amp; aStr, size_t aPos=0) const;
size_t <A HREF="string.html#find_first_of">find_first_of</A>(const char* aBuf, size_t aPos, size_t aLen) const;
size_t <A HREF="string.html#find_first_of">find_first_of</A>(const char* aCstr, size_t aPos=0) const;
@@ -441,11 +441,11 @@ The characters in the returned string should not be modified, and should
be considered invalid after any call to a non-const member function or another
call to <B><TT>c_str()</TT></B>.
<P>
-<FONT COLOR="teal"><B> size_t <A NAME="find">find</A>(const DwString&amp;
+<FONT COLOR="teal"><B> size_t <A NAME="tqfind">tqfind</A>(const DwString&amp;
aStr, size_t aPos=0) const <BR>
-size_t find(const char* aBuf, size_t aPos, size_t aLen) const <BR>
-size_t find(const char* aCstr, size_t aPos=0) const <BR>
-size_t find(char aChar, size_t aPos=0) const </B></FONT>
+size_t tqfind(const char* aBuf, size_t aPos, size_t aLen) const <BR>
+size_t tqfind(const char* aCstr, size_t aPos=0) const <BR>
+size_t tqfind(char aChar, size_t aPos=0) const </B></FONT>
<P>
Performs a forward search for a sequence of characters in the
<B><TT>DwString</TT></B> object. The return value is the position of the
@@ -466,11 +466,11 @@ the sequence of characters in the NUL-terminated string
The fourth version searches beginning at position <B><TT>aPos</TT></B> for
the character <B><TT>aChar</TT></B>.
<P>
-<FONT COLOR="teal"><B> size_t <A NAME="rfind">rfind</A>(const DwString&amp;
+<FONT COLOR="teal"><B> size_t <A NAME="rtqfind">rtqfind</A>(const DwString&amp;
aStr, size_t aPos=npos) const <BR>
-size_t rfind(const char* aBuf, size_t aPos, size_t aLen) const <BR>
-size_t rfind(const char* aCstr, size_t aPos=npos) const <BR>
-size_t rfind(char aChar, size_t aPos=npos) const </B></FONT>
+size_t rtqfind(const char* aBuf, size_t aPos, size_t aLen) const <BR>
+size_t rtqfind(const char* aCstr, size_t aPos=npos) const <BR>
+size_t rtqfind(char aChar, size_t aPos=npos) const </B></FONT>
<P>
Performs a reverse search for a sequence of characters in the
<B><TT>DwString</TT></B> object. The return value is the position of the
@@ -579,7 +579,7 @@ The third version searches for any character not in the NUL-terminated string
<FONT COLOR="teal"><B> DwString <A NAME="substr">substr</A>(size_t aPos=0,
size_t aLen=npos) const </B></FONT>
<P>
-Returns a string that tqcontains at most <B><TT>aLen</TT></B> characters from
+Returns a string that contains at most <B><TT>aLen</TT></B> characters from
the <B><TT>DwString</TT></B> object beginning at position
<B><TT>aPos</TT></B>. The returned substring will not contain more characters
than what are available in the superstring <B><TT>DwString</TT></B> object.