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

  /external/icu4c/tools/toolutil/
xmlparser.h 43 class UXMLParser;
132 friend class UXMLParser;
134 UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode);
136 const UXMLParser *fParser;
137 const UnicodeString *fName; // The tag name of this element (owned by the UXMLParser)
145 // The names are UnicodeString objects, owned by the UXMLParser.
162 class U_TOOLUTIL_API UXMLParser : public UObject {
167 static UXMLParser *createParser(UErrorCode &errorCode);
171 virtual ~UXMLParser();
198 UXMLParser();
    [all...]
xmlparser.cpp 52 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UXMLParser)
56 // UXMLParser constructor. Mostly just initializes the ICU regexes that are
59 UXMLParser::UXMLParser(UErrorCode &status) :
151 UXMLParser *
152 UXMLParser::createParser(UErrorCode &errorCode) {
156 return new UXMLParser(errorCode);
160 UXMLParser::~UXMLParser() {}
163 UXMLParser::parseFile(const char *filename, UErrorCode &errorCode)
    [all...]

Completed in 1155 milliseconds