Lines Matching refs:attValue
241 UnicodeString attValue = mAttrValue.group(2, errorCode); in parseFile() local
245 attValue.remove(0,1); // one char from the beginning in parseFile()
246 attValue.truncate(attValue.length()-1); // and one from the end. in parseFile()
249 … length=attValue.extract(0, 0x7fffffff, charsetBuffer, (int32_t)sizeof(charsetBuffer)); in parseFile()
496 UnicodeString attValue = mAttrValue.group(2, status); in createElement() local
500 attValue.remove(0,1); // one char from the beginning in createElement()
501 attValue.truncate(attValue.length()-1); // and one from the end. in createElement()
510 mNewLineNormalizer.reset(attValue); in createElement()
511 attValue = mNewLineNormalizer.replaceAll(fOneLF, status); in createElement()
514 mAttrNormalizer.reset(attValue); in createElement()
516 attValue = mAttrNormalizer.replaceAll(oneSpace, status); in createElement()
519 replaceCharRefs(attValue, status); in createElement()
523 el->fAttValues.addElement(attValue.clone(), status); in createElement()