• Home
  • Raw
  • Download

Lines Matching refs:srcLen

47 removeText(UChar *source, int32_t srcLen,   in removeText()  argument
55 UnicodeString src(source, srcLen); in removeText()
67 return dest.extract(source, srcLen, *status); in removeText()
71 trim(UChar *src, int32_t srcLen, UErrorCode *status){ in trim() argument
72srcLen = removeText(src, srcLen, UnicodeString("^[ \\r\\n]+ "), 0, UnicodeString(), status); // re… in trim()
73srcLen = removeText(src, srcLen, UnicodeString("^\\s+"), 0, UnicodeString(), status); // remove le… in trim()
74srcLen = removeText(src, srcLen, UnicodeString("\\s+$"), 0, UnicodeString(), status); // remvoe tr… in trim()
75 return srcLen; in trim()
79 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status){ in removeCmtText() argument
80 srcLen = trim(source, srcLen, status); in removeCmtText()
82 srcLen = removeText(source, srcLen, patString, UREGEX_MULTILINE, UnicodeString(), status); in removeCmtText()
83 …return removeText(source, srcLen, UnicodeString("[ \\r\\n]+"), 0, UnicodeString(" "), status);// r… in removeCmtText()
87 getText(const UChar* source, int32_t srcLen, in getText() argument
98 UnicodeString src (source,srcLen); in getText()
124 getDescription( const UChar* source, int32_t srcLen, in getDescription() argument
133 UnicodeString src(source, srcLen); in getDescription()
148 getCount(const UChar* source, int32_t srcLen, in getCount() argument
157 UnicodeString src (source, srcLen); in getCount()
185 getAt(const UChar* source, int32_t srcLen, in getAt() argument
197 UnicodeString src (source, srcLen); in getAt()
227 getTranslate( const UChar* source, int32_t srcLen, in getTranslate() argument
232 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status); in getTranslate()
237 getNote(const UChar* source, int32_t srcLen, in getNote() argument
242 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status); in getNote()