HomeSort by relevance Sort by last modified time
    Searched defs:UXMLParser (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/tools/toolutil/
xmlparser.h 45 class UXMLParser;
134 friend class UXMLParser;
136 UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode);
138 const UXMLParser *fParser;
139 const UnicodeString *fName; // The tag name of this element (owned by the UXMLParser)
147 // The names are UnicodeString objects, owned by the UXMLParser.
164 class U_TOOLUTIL_API UXMLParser : public UObject {
169 static UXMLParser *createParser(UErrorCode &errorCode);
173 virtual ~UXMLParser();
200 UXMLParser();
    [all...]
xmlparser.cpp 54 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UXMLParser)
58 // UXMLParser constructor. Mostly just initializes the ICU regexes that are
61 UXMLParser::UXMLParser(UErrorCode &status) :
153 UXMLParser *
154 UXMLParser::createParser(UErrorCode &errorCode) {
158 return new UXMLParser(errorCode);
162 UXMLParser::~UXMLParser() {}
165 UXMLParser::parseFile(const char *filename, UErrorCode &errorCode)
    [all...]

Completed in 104 milliseconds