Searched defs:cutStart (Results 1 - 6 of 6) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsTAString.cpp435 nsTAString_CharT::Cut( index_type cutStart, size_type cutLength ) argument
438 AsSubstring()->Cut(cutStart, cutLength);
440 AsObsoleteString()->Cut(cutStart, cutLength);
444 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const self_type& readable ) argument
447 AsSubstring()->Replace(cutStart, cutLength, readable);
449 AsObsoleteString()->do_ReplaceFromReadable(cutStart, cutLength, readable);
453 nsTAString_CharT::Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple ) argument
456 AsSubstring()->Replace(cutStart, cutLength, tuple);
458 AsObsoleteString()->do_ReplaceFromReadable(cutStart, cutLength, nsTAutoString_CharT(tuple));
H A DnsTObsoleteAStringThunk.cpp121 virtual void Cut(index_type cutStart, size_type cutLength) argument
123 concrete_self()->Cut(cutStart, cutLength);
186 virtual void do_ReplaceFromReadable(index_type cutStart, size_type cutLength, const abstract_string_type &s) argument
188 concrete_self()->Replace(cutStart, cutLength, s);
H A DnsTStringObsolete.cpp421 PRUint32 cutStart = start - mData; local
434 Cut(cutStart, cutLength);
437 start = mData + cutStart;
438 end = mData + mLength - cutStart;
H A DnsTSubstring.cpp169 nsTSubstring_CharT::ReplacePrep( index_type cutStart, size_type cutLen, size_type fragLen ) argument
172 cutLen = NS_MIN(cutLen, mLength - cutStart);
186 if (cutStart > 0)
189 char_traits::copy(mData, oldData, cutStart);
192 if (cutStart + cutLen < mLength)
195 size_type from = cutStart + cutLen;
197 PRUint32 to = cutStart + fragLen;
209 if (fragLen != cutLen && cutStart + cutLen < mLength)
211 PRUint32 from = cutStart + cutLen;
213 PRUint32 to = cutStart
411 Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length ) argument
440 ReplaceASCII( index_type cutStart, size_type cutLength, const char* data, size_type length ) argument
465 Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple ) argument
485 Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable ) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsTSubstring.h327 void Replace( index_type cutStart, size_type cutLength, char_type c ) { Replace(cutStart, cutLength, &c, 1); } argument
328 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) );
329 void Replace( index_type cutStart, size_type cutLength, const self_type& str ) { Replace(cutStart, cutLength, str.Data(), str.Length()); } argument
330 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple );
331 NS_COM void NS_FASTCALL Replace( index_type cutStart, size_type cutLength, const abstract_string_type& readable );
333 NS_COM void NS_FASTCALL ReplaceASCII( index_type cutStart, size_type cutLength, const char* data, size_type length = size_type(-1) );
370 void Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLengt argument
[all...]
H A DnsStringAPI.h705 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) ) argument
707 NS_StringSetDataRange(*this, cutStart, cutLength, data, length);
709 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, char_type c ) argument
711 Replace(cutStart, cutLength, &c, 1);
713 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const self_type& readable ) argument
717 NS_StringSetDataRange(*this, cutStart, cutLength, data, dataLen);
732 NS_HIDDEN_(void) Cut( index_type cutStart, size_type cutLength ) { Replace(cutStart, cutLength, nsnull, 0); } argument
787 NS_HIDDEN_(void) Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length = size_type(-1) ) argument
789 NS_CStringSetDataRange(*this, cutStart, cutLengt
791 Replace( index_type cutStart, size_type cutLength, char_type c ) argument
795 Replace( index_type cutStart, size_type cutLength, const self_type& readable ) argument
814 Cut( index_type cutStart, size_type cutLength ) argument
[all...]

Completed in 66 milliseconds