OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UXMLElement
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/tools/toolutil/
xmlparser.h
38
/** Node type element, stored as a
UXMLElement
. */
50
class U_TOOLUTIL_API
UXMLElement
: public UObject {
55
virtual ~
UXMLElement
();
105
const
UXMLElement
*nextChildElement(int32_t &i) const;
114
const
UXMLElement
*getChildElement(const UnicodeString &name) const;
128
UXMLElement
();
129
UXMLElement
(const
UXMLElement
&other);
130
UXMLElement
&operator=(const
UXMLElement
&other)
[
all
...]
xmlparser.cpp
55
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(
UXMLElement
)
164
UXMLElement
*
329
UXMLElement
*
335
UXMLElement
*root = NULL;
381
UXMLElement
*el = root;
393
UXMLElement
*t = createElement(mXMLElemStart, status);
441
el = (
UXMLElement
*)fElementStack.pop();
447
UXMLElement
*t = createElement(mXMLElemEmpty, status);
485
// We've just matched an element start tag. Create and fill in a
UXMLElement
object
488
UXMLElement
*
[
all
...]
Completed in 104 milliseconds