Lines Matching refs:srcLen
45 removeText(UChar *source, int32_t srcLen, in removeText() argument
53 UnicodeString src(source, srcLen); in removeText()
65 return dest.extract(source, srcLen, *status); in removeText()
69 trim(UChar *src, int32_t srcLen, UErrorCode *status){ in trim() argument
70 …srcLen = removeText(src, srcLen, UnicodeString("^[ \\r\\n]+ "), 0, UnicodeString(), status); // re… in trim()
71 …srcLen = removeText(src, srcLen, UnicodeString("^\\s+"), 0, UnicodeString(), status); // remove le… in trim()
72 …srcLen = removeText(src, srcLen, UnicodeString("\\s+$"), 0, UnicodeString(), status); // remvoe tr… in trim()
73 return srcLen; in trim()
77 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status){ in removeCmtText() argument
78 srcLen = trim(source, srcLen, status); in removeCmtText()
80 srcLen = removeText(source, srcLen, patString, UREGEX_MULTILINE, UnicodeString(), status); in removeCmtText()
81 …return removeText(source, srcLen, UnicodeString("[ \\r\\n]+"), 0, UnicodeString(" "), status);// r… in removeCmtText()
85 getText(const UChar* source, int32_t srcLen, in getText() argument
96 UnicodeString src (source,srcLen); in getText()
122 getDescription( const UChar* source, int32_t srcLen, in getDescription() argument
131 UnicodeString src(source, srcLen); in getDescription()
146 getCount(const UChar* source, int32_t srcLen, in getCount() argument
155 UnicodeString src (source, srcLen); in getCount()
183 getAt(const UChar* source, int32_t srcLen, in getAt() argument
195 UnicodeString src (source, srcLen); in getAt()
225 getTranslate( const UChar* source, int32_t srcLen, in getTranslate() argument
230 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status); in getTranslate()
235 getNote(const UChar* source, int32_t srcLen, in getNote() argument
240 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status); in getNote()