Searched defs:document (Results 1 - 25 of 714) sorted by last modified time

1234567891011>>

/external/tinyxml/
H A Dtinyxml.cpp761 TiXmlDocument* document = GetDocument(); local
762 if ( document ) document->SetError( TIXML_ERROR_OUT_OF_MEMORY, 0, 0, TIXML_ENCODING_UNKNOWN );
993 // The document parser may decide the document ends sooner than the entire file, however.
1002 // parsed entities (including the document entity) on input, before parsing, by translating
H A Dtinyxml.h134 In XML, the document and elements can contain
191 reflect changes in the document.
379 in a document, or stand on its own. The type of a TiXmlNode
628 Returns null if not in a document.
691 part of the tinyXML document object model. There are other
702 document = 0;
712 document = 0;
722 document = 0;
786 // Set the document pointer so the attribute can report errors.
787 void SetDocument( TiXmlDocument* doc ) { document
793 TiXmlDocument* document; // A pointer back to a document, for error reporting. member in class:TiXmlAttribute
[all...]
H A Dtinyxmlparser.cpp171 // Only used by the document!
363 // At this scope, we can't get to a document. So fail silently.
379 if ( c <= 0 ) // Silent failure: can't get document at this scope
620 // The basic issue with a document is that we don't know what we're
685 // Parse away, at the document level. Since a document
694 // Note that, for a document, this needs to come
895 TiXmlDocument* document = GetDocument(); local
896 if ( document )
897 document
956 TiXmlDocument* document = GetDocument(); local
985 TiXmlDocument* document = GetDocument(); local
1017 TiXmlDocument* document = GetDocument(); local
1136 TiXmlDocument* document = GetDocument(); local
1214 TiXmlDocument* document = GetDocument(); local
1233 TiXmlDocument* document = GetDocument(); local
1272 TiXmlDocument* document = GetDocument(); local
1294 TiXmlDocument* document = GetDocument(); local
1394 TiXmlDocument* document = GetDocument(); local
1419 TiXmlDocument* document = GetDocument(); local
1435 TiXmlDocument* document = GetDocument(); local
1490 TiXmlDocument* document = GetDocument(); local
1511 TiXmlDocument* document = GetDocument(); local
[all...]
/external/tinyxml2/
H A Dtinyxml2.h328 You should never change the document from a callback.
337 /// Visit a document.
339 /// Visit a document.
440 const XMLDocument* GetDocument() const { return document; }
442 XMLDocument* GetDocument() { return document; }
543 the owner of the new Node. If the 'document' is
549 virtual XMLNode* ShallowClone( XMLDocument* document ) const = 0;
592 XMLDocument* document; member in class:tinyxml2::XMLNode
636 virtual XMLNode* ShallowClone( XMLDocument* document ) const;
662 virtual XMLNode* ShallowClone( XMLDocument* document ) cons
[all...]
/external/smack/src/org/jivesoftware/smackx/provider/
H A DVCardProvider.java96 Document document = documentBuilder.parse(
99 new VCardReader(vCard, document).initializeFields();
106 private final Document document; field in class:VCardProvider.VCardReader
108 VCardReader(VCard vCard, Document document) { argument
110 this.document = document;
134 NodeList photo = document.getElementsByTagName("PHOTO");
166 NodeList nodes = document.getElementsByTagName("USERID");
180 NodeList allPhones = document.getElementsByTagName("TEL");
216 NodeList allAddresses = document
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp305 // A document can never be a child. Thanks to Noam.
306 TiXmlDocument* document = GetDocument(); local
307 if ( document )
308 document->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN );
1016 // parsed entities (including the document entity) on input, before parsing, by translating
H A Dtinyxml.h124 You should never change the document from a callback.
133 /// Visit a document.
135 /// Visit a document.
176 In XML, the document and elements can contain
237 reflect changes in the document.
420 in a document, or stand on its own. The type of a TiXmlNode
687 Returns null if not in a document.
776 part of the tinyXML document object model. There are other
787 document = 0;
797 document
883 TiXmlDocument* document; // A pointer back to a document, for error reporting. member in class:TiXmlAttribute
[all...]
H A Dtinyxmlparser.cpp180 // Only used by the document!
372 // At this scope, we can't get to a document. So fail silently.
388 if ( c <= 0 ) // Silent failure: can't get document at this scope
643 // The basic issue with a document is that we don't know what we're
708 // Parse away, at the document level. Since a document
717 // Note that, for a document, this needs to come
912 TiXmlDocument* document = GetDocument(); local
913 if ( document )
914 document
974 TiXmlDocument* document = GetDocument(); local
1014 TiXmlDocument* document = GetDocument(); local
1046 TiXmlDocument* document = GetDocument(); local
1181 TiXmlDocument* document = GetDocument(); local
1258 TiXmlDocument* document = GetDocument(); local
1277 TiXmlDocument* document = GetDocument(); local
1317 TiXmlDocument* document = GetDocument(); local
1339 TiXmlDocument* document = GetDocument(); local
1477 TiXmlDocument* document = GetDocument(); local
1500 TiXmlDocument* document = GetDocument(); local
1556 TiXmlDocument* document = GetDocument(); local
1577 TiXmlDocument* document = GetDocument(); local
[all...]
/external/skia/gm/
H A Dgmmain.cpp463 SkDebugf("FAILED to write document: %s\n", path.c_str());
1053 SkDynamicMemoryWStream document; local
1076 if (!generate_pdf(gm, document)) {
1079 SkAutoTUnref<SkStreamAsset> documentStream(document.detachAsStream());
1118 generate_xps(gm, document);
1119 SkAutoTUnref<SkStreamAsset> documentStream(document.detachAsStream());
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DAttrResourceLoader.java26 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
28 NodeList stringNodes = (NodeList) stringsXPath.evaluate(document, XPathConstants.NODESET);
H A DDrawableResourceLoader.java38 /** document */
91 * Store document locally keyed by resource name.
94 * @param document Document
101 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
107 documents.put(name, document);
135 Document document = documents.get(resourceName);
137 NodeList items = document.getElementsByTagName("item");
156 Document document = documents.get(resourceExtractor.getResourceName(resourceId));
157 return "animation-list".equals(document.getDocumentElement().getLocalName());
H A DMenuLoader.java33 protected void processResourceXml(File xmlFile, Document document, boolean ignored) throws Exception { argument
36 NodeList items = document.getChildNodes();
H A DPreferenceLoader.java34 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
36 processChildren(document.getChildNodes(), topLevelNode);
H A DViewLoader.java40 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
42 processChildren(document.getChildNodes(), topLevelNode);
H A DXTagXmlResourceLoader.java38 protected void processResourceXml( File xmlFile, Document document, boolean isSystem ) throws Exception { argument
44 NodeList items = document.getElementsByTagName( tag );
H A DXmlLoader.java15 protected abstract void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception; argument
H A DXpathResourceXmlLoader.java21 @Override protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
23 NodeList nodes = (NodeList) stringsXPath.evaluate(document, XPathConstants.NODESET);
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jar ... nu.xom.Builder builder nu.xom.Document transformationDoc nu.xom.xslt.XSLTransform transform java ...
H A Dhtmlparser-1.3.jar ... nu.xom.Builder builder nu.xom.Document transformationDoc nu.xom.xslt.XSLTransform transform java ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Dfindbugs.jar ... findbugs.BugCollection bugCollection private final org.dom4j.Document document public void " href="/5.1.0_r1/s ...
/external/pdfium/fpdfsdk/include/
H A Dfsdk_mgr.h286 virtual FPDF_PAGE FFI_GetPage(FPDF_DOCUMENT document,int nPageIndex) argument
290 return m_pInfo->FFI_GetPage(m_pInfo, document, nPageIndex);
295 virtual FPDF_PAGE FFI_GetCurrentPage(FPDF_DOCUMENT document) argument
299 return m_pInfo->FFI_GetCurrentPage(m_pInfo, document);
/external/pdfium/fpdfsdk/src/
H A Dfpdf_ext.cpp220 DLLEXPORT int FPDFDoc_GetPageMode(FPDF_DOCUMENT document) argument
222 if (!document) return PAGEMODE_UNKONOWN;
223 CPDF_Dictionary *pRoot = ((CPDF_Document*)document)->GetRoot();
H A Dfpdfdoc.cpp31 DLLEXPORT FPDF_BOOKMARK STDCALL FPDFBookmark_Find(FPDF_DOCUMENT document, FPDF_WIDESTRING title) argument
33 if (document == NULL) return NULL;
36 CPDF_Document* pDoc = (CPDF_Document*)document;
43 DLLEXPORT FPDF_DEST STDCALL FPDFBookmark_GetDest(FPDF_DOCUMENT document, FPDF_BOOKMARK bookmark) argument
45 if (document == NULL) return NULL;
49 CPDF_Document* pDoc = (CPDF_Document*)document;
88 DLLEXPORT FPDF_DEST STDCALL FPDFAction_GetDest(FPDF_DOCUMENT document, FPDF_ACTION action) argument
90 if (document == NULL) return NULL;
92 CPDF_Document* pDoc = (CPDF_Document*)document;
98 DLLEXPORT unsigned long STDCALL FPDFAction_GetURIPath(FPDF_DOCUMENT document, FPDF_ACTIO argument
113 FPDFDest_GetPageIndex(FPDF_DOCUMENT document, FPDF_DEST dest) argument
144 FPDFLink_GetDest(FPDF_DOCUMENT document, FPDF_LINK link) argument
[all...]

Completed in 249 milliseconds

1234567891011>>