Home | History | Annotate | Download | only in parser

Lines Matching defs:exceptionState

29 #include "bindings/v8/ExceptionState.h"
902 static inline void handleNamespaceAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlNamespaces, int nbNamespaces, ExceptionState& exceptionState)
912 if (!Element::parseAttributeName(parsedName, XMLNSNames::xmlnsNamespaceURI, namespaceQName, exceptionState))
927 static inline void handleElementAttributes(Vector<Attribute>& prefixedAttributes, const xmlChar** libxmlAttributes, int nbAttributes, ExceptionState& exceptionState)
938 if (!Element::parseAttributeName(parsedName, attrURI, attrQName, exceptionState))
978 TrackExceptionState exceptionState;
979 handleNamespaceAttributes(prefixedAttributes, libxmlNamespaces, nbNamespaces, exceptionState);
980 if (exceptionState.hadException()) {
986 handleElementAttributes(prefixedAttributes, libxmlAttributes, nbAttributes, exceptionState);
988 exceptionState.hadException()) {
1134 TrackExceptionState exceptionState;
1135 RefPtrWillBeRawPtr<ProcessingInstruction> pi = m_currentNode->document().createProcessingInstruction(target, data, exceptionState);
1136 if (exceptionState.hadException())