Home | History | Annotate | Download | only in parser

Lines Matching defs:toAtomicString

93 static inline AtomicString toAtomicString(const xmlChar* string, size_t length)
98 static inline AtomicString toAtomicString(const xmlChar* string)
916 AtomicString namespaceURI = toAtomicString(namespaces[i].uri);
941 AtomicString attrValue = toAtomicString(attributes[i].value, valueLength);
943 AtomicString attrURI = attrPrefix.isEmpty() ? AtomicString() : toAtomicString(attributes[i].uri);
944 AtomicString attrQName = attrPrefix.isEmpty() ? toAtomicString(attributes[i].localname) : attrPrefix + ":" + toString(attributes[i].localname);
1260 getParser(closure)->startElementNs(toAtomicString(localName), toAtomicString(prefix), toAtomicString(uri), nbNamespaces, namespaces, nbAttributes, nbDefaulted, libxmlAttributes);