Home
last modified time | relevance | path

Searched refs:mAttrValue (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/tools/toolutil/
Dxmlparser.cpp130 mAttrValue(UnicodeString(XML_SPACES "+(" XML_NAME ")" XML_SPACES "*=" XML_SPACES "*" in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
240 mAttrValue.reset(src); in parseFile()
241 …while(pos<declEnd && mAttrValue.lookingAt(pos, errorCode)) { // loop runs once per attribute on t… in parseFile()
242 UnicodeString attName = mAttrValue.group(1, errorCode); in parseFile()
243 UnicodeString attValue = mAttrValue.group(2, errorCode); in parseFile()
255 pos = mAttrValue.end(2, errorCode); in parseFile()
349 mAttrValue.reset(src); in parse()
496 while (mAttrValue.lookingAt(pos, status)) { // loop runs once per attribute on this element. in createElement()
497 UnicodeString attName = mAttrValue.group(1, status); in createElement()
498 UnicodeString attValue = mAttrValue.group(2, status); in createElement()
[all …]
Dxmlparser.h230 RegexMatcher mAttrValue; variable