Lines Matching refs:attValue
243 UnicodeString attValue = mAttrValue.group(2, errorCode); in parseFile() local
247 attValue.remove(0,1); // one char from the beginning in parseFile()
248 attValue.truncate(attValue.length()-1); // and one from the end. in parseFile()
251 … length=attValue.extract(0, 0x7fffffff, charsetBuffer, (int32_t)sizeof(charsetBuffer)); in parseFile()
498 UnicodeString attValue = mAttrValue.group(2, status); in createElement() local
502 attValue.remove(0,1); // one char from the beginning in createElement()
503 attValue.truncate(attValue.length()-1); // and one from the end. in createElement()
512 mNewLineNormalizer.reset(attValue); in createElement()
513 attValue = mNewLineNormalizer.replaceAll(fOneLF, status); in createElement()
516 mAttrNormalizer.reset(attValue); in createElement()
518 attValue = mAttrNormalizer.replaceAll(oneSpace, status); in createElement()
521 replaceCharRefs(attValue, status); in createElement()
525 el->fAttValues.addElement(attValue.clone(), status); in createElement()