Searched defs:cutLength (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 )
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.cpp422 PRUint32 cutLength = 0; local
425 for (; start != end; ++start, ++cutLength)
432 if (cutLength)
434 Cut(cutStart, cutLength);
445 PRUint32 cutLength = 0; local
449 for (; end >= start; --end, ++cutLength)
456 if (cutLength)
457 Cut(cutEnd - cutLength, cutLength);
H A DnsTSubstring.cpp411 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const char_type* data, size_type length ) argument
426 Replace(cutStart, cutLength, temp);
433 ReplacePrep(cutStart, cutLength, length);
440 nsTSubstring_CharT::ReplaceASCII( index_type cutStart, size_type cutLength, const char* data, size_type length ) argument
451 Replace(cutStart, cutLength, temp);
458 ReplacePrep(cutStart, cutLength, length);
465 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, const substring_tuple_type& tuple ) argument
470 Replace(cutStart, cutLength, temp);
478 ReplacePrep(cutStart, cutLength, length);
485 nsTSubstring_CharT::Replace( index_type cutStart, size_type cutLength, cons 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, cutLength, char_trait
[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); }
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, cutLength, dat
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
[all...]

Completed in 41 milliseconds