OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:prefixedattributes
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp
898
static inline void handleNamespaceAttributes(Vector<Attribute>&
prefixedAttributes
, const xmlChar** libxmlNamespaces, int nbNamespaces, ExceptionState& exceptionState)
911
prefixedAttributes
.append(Attribute(parsedName, namespaceURI));
924
static inline void handleElementAttributes(Vector<Attribute>&
prefixedAttributes
, const xmlChar** libxmlAttributes, int nbAttributes, ExceptionState& exceptionState)
938
prefixedAttributes
.append(Attribute(parsedName, attrValue));
974
Vector<Attribute>
prefixedAttributes
;
976
handleNamespaceAttributes(
prefixedAttributes
, libxmlNamespaces, nbNamespaces, exceptionState);
978
setAttributes(newElement.get(),
prefixedAttributes
, parserContentPolicy());
983
handleElementAttributes(
prefixedAttributes
, libxmlAttributes, nbAttributes, exceptionState)
[
all
...]
Completed in 628 milliseconds