Home
last modified time | relevance | path

Searched refs:wellFormed (Results 1 – 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
DDecodedDataDocumentParser.h37 virtual bool wellFormed() const { return true; } in wellFormed() function
DXMLDocumentParser.h61 virtual bool wellFormed() const { return !m_sawError; } in wellFormed() function
214 virtual bool wellFormed() const { return !m_sawError; } in wellFormed() function
DXMLDocumentParser.cpp399 bool wellFormed = parser->appendFragmentSource(chunk); in parseDocumentFragment() local
403 return wellFormed; // appendFragmentSource()'s wellFormed is more permissive than wellFormed(). in parseDocumentFragment()
DXMLDocumentParserLibxml2.cpp1474 return context()->wellFormed || !xmlCtxtGetLastError(context()); in appendFragmentSource()
DDocument.h580 bool wellFormed() const { return m_wellFormed; } in wellFormed() function
DDocument.cpp2095 m_wellFormed = parser && parser->wellFormed(); in implicitClose()
/external/webkit/Source/WebCore/wml/
DWMLErrorHandling.cpp48 if (!parser->wellFormed()) in reportWMLError()
DWMLDocument.cpp52 if (!parser->wellFormed()) { in finishedParsing()
/external/libxml2/
DSAX2.c133 ctxt->wellFormed = 0; in xmlFatalErrMsg()
386 (ctxt->wellFormed && ctxt->myDoc))) { in xmlSAX2ExternalSubset()
750 if ((attr != NULL) && (ctxt->validate) && (ctxt->wellFormed) && in xmlSAX2AttributeDecl()
800 if (ctxt->validate && ctxt->wellFormed && in xmlSAX2ElementDecl()
850 if ((ctxt->validate) && (ctxt->wellFormed) && in xmlSAX2NotationDecl()
1026 if (ctxt->validate && ctxt->wellFormed && in xmlSAX2EndDocument()
1180 if (nsret != NULL && ctxt->validate && ctxt->wellFormed && in xmlSAX2AttributeInternal()
1243 if (nsret != NULL && ctxt->validate && ctxt->wellFormed && in xmlSAX2AttributeInternal()
1276 ctxt->wellFormed = 0; in xmlSAX2AttributeInternal()
1312 if ((!ctxt->html) && ctxt->validate && ctxt->wellFormed && in xmlSAX2AttributeInternal()
[all …]
Dparser.c270 ctxt->wellFormed = 0; in xmlErrAttributeDup()
477 ctxt->wellFormed = 0; in xmlFatalErr()
503 ctxt->wellFormed = 0; in xmlFatalErrMsg()
610 ctxt->wellFormed = 0; in xmlFatalErrMsgInt()
642 ctxt->wellFormed = 0; in xmlFatalErrMsgStrIntStr()
671 ctxt->wellFormed = 0; in xmlFatalErrMsgStr()
6895 if (!ctxt->wellFormed) in xmlParseReference()
7299 if ((ctxt->wellFormed == 1 ) && (ent == NULL) && in xmlParseEntityRef()
7302 if ((ctxt->wellFormed == 1 ) && (ent == NULL) && in xmlParseEntityRef()
9278 if (ctxt->wellFormed == 1) { in xmlParseStartTag2()
[all …]
Dlegacy.c198 *((int *) result) = ctxt->wellFormed; in xmlGetFeature()
316 ctxt->wellFormed = *((int *) value); in xmlSetFeature()
DparserInternals.c151 ctxt->wellFormed = 0; in __xmlErrEncoding()
178 ctxt->wellFormed = 0; in xmlErrInternal()
206 ctxt->wellFormed = 0; in xmlErrEncodingInt()
1728 ctxt->wellFormed = 1; in xmlInitParserCtxt()
DHTMLparser.c120 ctxt->wellFormed = 0; in htmlParseErr()
145 ctxt->wellFormed = 0; in htmlParseErrInt()
4686 if (! ctxt->wellFormed) return(-1); in htmlParseDocument()
4791 ctxt->wellFormed = 1; in htmlInitParserCtxt()
5455 ctxt->wellFormed = 0; in htmlParseTryOrFinish()
5956 ctxt->wellFormed = 0; in htmlParseChunk()
6457 ctxt->wellFormed = 1; in htmlCtxtReset()
Dxmlreader.c857 if ((val != 0) || (reader->ctxt->wellFormed == 0)) in xmlTextReaderPushData()
865 if ((val != 0) || (reader->ctxt->wellFormed == 0)) in xmlTextReaderPushData()
898 if ((val != 0) || (reader->ctxt->wellFormed == 0)) in xmlTextReaderPushData()
1267 if (reader->ctxt->wellFormed != 1) in xmlTextReaderRead()
1809 if (reader->ctxt->wellFormed != 1)
1839 if (reader->ctxt->wellFormed != 1)
Dxinclude.c465 if (pctxt->wellFormed) { in xmlXIncludeParseFile()
Dcatalog.c933 if (ctxt->wellFormed) in xmlParseCatalogFile()
Dxmllint.c2273 ret = ctxt->wellFormed; in parseAndPrintFile()
Dxmlschemas.c28700 if ((ret == 0) && (! ctxt->parserCtxt->wellFormed)) { in xmlSchemaValidateStream()
/external/webkit/Source/WebCore/platform/mac/
DHTMLConverter.mm939 BOOL wellFormed = YES;
943 if (*p++ != '-') wellFormed = NO;
944 if (!wellFormed || !read2DigitNumber(&p, &date.month) || *p++ != '-') wellFormed = NO;
945 if (!wellFormed || !read2DigitNumber(&p, &date.day) || *p++ != 'T') wellFormed = NO;
946 if (!wellFormed || !read2DigitNumber(&p, &date.hour) || *p++ != ':') wellFormed = NO;
947 if (!wellFormed || !read2DigitNumber(&p, &date.minute) || *p++ != ':') wellFormed = NO;
948 if (!wellFormed || !read2DigitNumber(&p, &secval) || *p++ != 'Z') wellFormed = NO;
949 if (wellFormed) date.second = secval;
950 …return wellFormed ? [(NSDate *)CFDateCreate(NULL, CFGregorianDateGetAbsoluteTime(date, NULL)) auto…
/external/libxslt/libxslt/
Ddocuments.c96 if (pctxt->wellFormed) { in xsltDocDefaultLoaderFunc()
/external/libxml2/include/libxml/
Dparser.h188 int wellFormed; /* is the document well formed */ member
/external/webkit/Source/WebCore/xml/
DXMLHttpRequest.cpp254 if (!m_responseXML->wellFormed()) in responseXML()
/external/webkit/Source/WebCore/svg/
DSVGUseElement.cpp134 …nt()->isXHTMLDocument()) && !static_cast<XMLDocumentParser*>(document()->parser())->wellFormed())); in insertedIntoDocument()
/external/webkit/Source/WebCore/
DChangeLog-2006-12-319315 (WebCore::XMLTokenizer::wellFormed):
9317 (WebCore::Tokenizer::wellFormed):
9322 (WebCore::Document::wellFormed):
DChangeLog-2010-12-0684769 Change permission to access wellFormed(), lineNumber() and columnNumber()
84773 (WebCore::XMLDocumentParser::wellFormed): Change accebility permission.
114910 (WebCore::DocumentParser::wellFormed):
115064 (WebCore::XMLDocumentParser::wellFormed):
123141 (WebCore::XMLDocumentParser::wellFormed):
123626 (WebCore::DocumentParser::wellFormed):

12