Searched refs:doc (Results 1 - 25 of 1370) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dxml_libxml2.c56 xmlDocPtr doc; local
67 doc = xmlNewDoc((xmlChar *) "1.0");
68 if (doc == NULL)
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
72 xmlFreeDoc(doc);
75 xmlDocSetRootElement(doc, n);
91 ret = xmlSchemaValidateDoc(vctx, doc);
93 xmlFreeDoc(doc);
118 xmlDocPtr doc; local
128 doc
181 xmlDocPtr doc; local
208 xmlDocPtr doc; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
203 if (xml_next_tag(doc, &tag, &tagname, &end))
205 doc = end;
213 end = doc;
216 value = os_zalloc(1 + (end - doc));
219 os_memcpy(value, doc, end - doc);
H A Dupnp_xml.h21 char * xml_get_first_item(const char *doc, const char *item);
/external/wpa_supplicant_8/src/utils/
H A Dxml_libxml2.c56 xmlDocPtr doc; local
67 doc = xmlNewDoc((xmlChar *) "1.0");
68 if (doc == NULL)
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
72 xmlFreeDoc(doc);
75 xmlDocSetRootElement(doc, n);
91 ret = xmlSchemaValidateDoc(vctx, doc);
93 xmlFreeDoc(doc);
118 xmlDocPtr doc; local
128 doc
181 xmlDocPtr doc; local
208 xmlDocPtr doc; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
203 if (xml_next_tag(doc, &tag, &tagname, &end))
205 doc = end;
213 end = doc;
216 value = os_zalloc(1 + (end - doc));
219 os_memcpy(value, doc, end - doc);
H A Dupnp_xml.h21 char * xml_get_first_item(const char *doc, const char *item);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dxml_libxml2.c56 xmlDocPtr doc; local
67 doc = xmlNewDoc((xmlChar *) "1.0");
68 if (doc == NULL)
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
72 xmlFreeDoc(doc);
75 xmlDocSetRootElement(doc, n);
91 ret = xmlSchemaValidateDoc(vctx, doc);
93 xmlFreeDoc(doc);
118 xmlDocPtr doc; local
128 doc
181 xmlDocPtr doc; local
208 xmlDocPtr doc; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.c190 char * xml_get_first_item(const char *doc, const char *item) argument
203 if (xml_next_tag(doc, &tag, &tagname, &end))
205 doc = end;
213 end = doc;
216 value = os_zalloc(1 + (end - doc));
219 os_memcpy(value, doc, end - doc);
H A Dupnp_xml.h21 char * xml_get_first_item(const char *doc, const char *item);
/external/valgrind/main/perf/
H A Dvg_perf408 if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
H A Dvg_perf.in408 if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
/external/valgrind/main/tests/
H A Dvg_regtest567 if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
H A Dvg_regtest.in567 if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.c761 char doc[VG_(strlen)(VG_(libdir)) + 1 + VG_(strlen)(annex) + 1]; local
766 VG_(sprintf)(doc, "%s/%s", VG_(libdir), annex);
767 fd = VG_(fd_open) (doc, VKI_O_RDONLY, 0);
/external/tinyxml/
H A Dtinyxml.h787 void SetDocument( TiXmlDocument* doc ) { document = doc; }
1319 TiXmlDocument doc;
1320 doc.SetTabSize( 8 );
1321 doc.Load( "myfile.xml" );
H A Dtinyxmlparser.cpp805 TiXmlDocument* doc = GetDocument(); local
878 if ( doc )
879 doc->SetError( TIXML_ERROR_OUT_OF_MEMORY, 0, 0, TIXML_ENCODING_UNKNOWN );
H A Dxmltest.cpp126 TiXmlDocument doc( "demotest.xml" );
127 doc.Parse( demoStart );
129 if ( doc.Error() )
131 printf( "Error in %s: %s\n", doc.Value(), doc.ErrorDesc() );
134 doc.SaveFile();
137 TiXmlDocument doc( "demotest.xml" );
138 bool loadOkay = doc.LoadFile();
142 printf( "Could not load test file 'demotest.xml'. Error='%s'. Exiting.\n", doc.ErrorDesc() );
146 printf( "** Demo doc rea
251 outputStream << doc; local
354 TiXmlDocument doc; local
368 TiXmlDocument doc; local
416 TiXmlDocument doc; local
440 TiXmlDocument doc; local
626 TiXmlDocument doc; local
638 original << doc; local
667 TiXmlDocument doc; local
700 TiXmlDocument doc; local
714 parse0 >> doc; local
763 TiXmlDocument doc; local
839 TiXmlDocument doc; local
852 TiXmlDocument doc; local
872 TiXmlDocument doc; local
894 TiXmlDocument doc; local
910 TiXmlDocument doc; local
955 TiXmlDocument doc; local
966 TiXmlDocument doc; local
974 strm >> doc; local
987 TiXmlDocument doc; local
1003 TiXmlDocument doc; local
1029 TiXmlDocument doc; local
[all...]
/external/tinyxml2/
H A Dtinyxml2.cpp543 XMLNode::XMLNode( XMLDocument* doc ) :
544 document( doc ),
830 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
832 if ( !doc ) {
833 doc = document;
835 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern?
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
878 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const
880 if ( !doc ) {
[all...]
H A Dtinyxml2.h338 virtual bool VisitEnter( const XMLDocument& /*doc*/ ) { return true; }
340 virtual bool VisitExit( const XMLDocument& /*doc*/ ) { return true; }
641 XMLText( XMLDocument* doc ) : XMLNode( doc ), isCData( false ) {}
666 XMLComment( XMLDocument* doc );
700 XMLDeclaration( XMLDocument* doc );
728 XMLUnknown( XMLDocument* doc );
1016 XMLElement( XMLDocument* doc );
1109 doc.Print( &printer );
1115 doc
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DJAXPTest.java50 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(f);
52 System.out.println("Succesfully built DOM tree from '"+f+"', -> "+doc);
/external/tcpdump/
H A Dconfigure757 docdir='${datarootdir}/doc/${PACKAGE}'
838 -docdir | --docdir | --docdi | --doc | --do)
840 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
1305 --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
4347 as_fn_error $? "version 2 or higher required; see the INSTALL doc for more info" "$LINENO" 5
5989 as_fn_error $? "see the INSTALL doc for more info" "$LINENO" 5
/external/stlport/etc/
H A DSTLport-4.5.1.spec7 Copyright: free (see license), see /usr/share/doc/%{name}-%{version}/license.html
66 %doc doc/license.html
73 %doc INSTALL README doc etc test
H A DSTLport-4.5.3.spec7 Copyright: free (see license), see /usr/share/doc/%{name}-%{version}/license.html
66 %doc doc/license.html
73 %doc INSTALL README doc etc test
H A DSTLport-4.6.spec7 Copyright: free (see license), see /usr/share/doc/%{name}-%{version}/license.html
66 %doc doc/license.html
73 %doc INSTALL README doc etc test
/external/stressapptest/
H A Dconfigure757 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
837 -docdir | --docdir | --docdi | --doc | --do)
839 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
1306 --docdir=DIR documentation root [DATAROOTDIR/doc/stressapptest]

Completed in 250 milliseconds

1234567891011>>