Lines Matching defs:source
271 * Sets the source to the new source string.
273 void CollationElementIterator::setText(const UnicodeString& source,
280 string_ = source;
299 // Sets the source to the new character iterator.
300 void CollationElementIterator::setText(CharacterIterator& source,
306 source.getText(string_);
328 * over the source text using the specified collator
331 const UnicodeString &source,
335 setText(source, status);
340 * the source text using the specified collator
343 const CharacterIterator &source,
347 // We only call source.getText() which should be const anyway.
348 setText(const_cast<CharacterIterator &>(source), status);