Searched refs:atts (Results 1 - 25 of 29) sorted by relevance

12

/vbox/src/libs/libxml2-2.6.31/
H A DtestHTML.c369 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
374 if (atts != NULL) {
375 for (i = 0;(atts[i] != NULL);i++) {
376 fprintf(stdout, ", %s", atts[i++]);
377 if (atts[i] != NULL) {
379 const unsigned char *att = atts[i];
H A DtestSAX.c609 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
617 if (atts != NULL) {
618 for (i = 0;(atts[i] != NULL);i++) {
619 fprintf(stdout, ", %s='", atts[i++]);
620 if (atts[i] != NULL)
621 fprintf(stdout, "%s'", atts[i]);
H A DSAX2.c1371 const xmlChar *prefix, const xmlChar **atts) {
1417 if (atts != NULL) {
1419 att = atts[i];
1424 att = atts[i];
1482 if (atts != NULL) {
1484 att = atts[i];
1489 att = atts[i];
1516 * @atts: An array of name/value attributes pairs, NULL terminated
1521 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts) argument
1625 xmlCheckDefaultedAttributes(ctxt, name, prefix, atts);
1370 xmlCheckDefaultedAttributes(xmlParserCtxtPtr ctxt, const xmlChar *name, const xmlChar *prefix, const xmlChar **atts) argument
[all...]
H A Dparser.c1296 const xmlChar **atts; local
1300 if (ctxt->atts == NULL) {
1302 atts = (const xmlChar **)
1304 if (atts == NULL) goto mem_error;
1305 ctxt->atts = atts;
1312 atts = (const xmlChar **) xmlRealloc((void *) ctxt->atts,
1314 if (atts == NULL) goto mem_error;
1315 ctxt->atts
7416 const xmlChar **atts = ctxt->atts; local
8155 const xmlChar **atts = ctxt->atts; local
[all...]
H A DHTMLparser.c3379 * @atts: the attributes values
3384 htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) { argument
3390 if ((ctxt == NULL) || (atts == NULL))
3394 att = atts[i++];
3396 value = atts[i++];
3402 att = atts[i++];
3434 const xmlChar **atts; local
3448 atts = ctxt->atts;
3525 if (xmlStrEqual(atts[
[all...]
H A Druntest.c1134 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
1142 if (atts != NULL) {
1143 for (i = 0;(atts[i] != NULL);i++) {
1144 fprintf(SAXdebug, ", %s='", atts[i++]);
1145 if (atts[i] != NULL)
1146 fprintf(SAXdebug, "%s'", atts[i]);
1531 htmlstartElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
1536 if (atts != NULL) {
1537 for (i = 0;(atts[i] != NULL);i++) {
1538 fprintf(SAXdebug, ", %s", atts[
[all...]
H A Dlegacy.c1131 * @atts: An array of name/value attributes pairs, NULL terminated
1137 startElement(void *ctx, const xmlChar * fullname, const xmlChar ** atts) argument
1139 xmlSAX2StartElement(ctx, fullname, atts);
H A Dxmllint.c1234 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
1242 if (atts != NULL) {
1243 for (i = 0;(atts[i] != NULL);i++) {
1244 fprintf(stdout, ", %s='", atts[i++]);
1245 if (atts[i] != NULL)
1246 fprintf(stdout, "%s'", atts[i]);
H A DparserInternals.c1545 ctxt->atts = NULL;
1715 if (ctxt->atts != NULL) xmlFree((xmlChar * *)ctxt->atts);
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dresolver.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/org/ com/sun/org/apache/ ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A DFastInfoset.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/fastinfoset/ ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...
H A Djaxws-tools.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ...
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A DSAX.h110 const xmlChar **atts);
H A DSAX2.h105 const xmlChar **atts);
H A Dparser.h261 const xmlChar * *atts; /* array for the attributes callbacks */ member in struct:_xmlParserCtxt
495 * @atts: An array of name/value attributes pairs, NULL terminated
501 const xmlChar **atts);
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp540 com::SafeIfaceArray<IMediumAttachment> atts; local
542 ComSafeArrayAsOutParam(atts)); H();
543 size_t uNumAttachments = atts.size();
553 IMediumAttachment *pMediumAtt = atts[j];
2363 com::SafeIfaceArray<IMediumAttachment> atts; local
2365 ComSafeArrayAsOutParam(atts)); H();
2372 for (size_t j = 0; j < atts.size(); ++j)
2374 IMediumAttachment *pMediumAtt = atts[j];
H A DConsoleImpl.cpp7139 com::SafeIfaceArray<IMediumAttachment> atts; local
7140 rc = mMachine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(atts));
7145 i < atts.size();
7149 rc = atts[i]->COMGETTER(Type)(&devType);
7154 rc = atts[i]->COMGETTER(Medium)(pMedium.asOutParam());
/vbox/src/VBox/Frontends/VBoxShell/
H A Dvboxshell.py2197 atts = ctx['global'].getArray(mach, 'mediumAttachments')
2198 for a in atts:
2270 atts = ctx['global'].getArray(mach, 'mediumAttachments')
2272 for a in atts:
3173 atts = ctx['global'].getArray(console, 'attachedPCIDevices')
3174 for a in atts:
/vbox/src/VBox/Main/src-server/
H A DSnapshotImpl.cpp1696 com::SafeIfaceArray<IMediumAttachment> atts; local
1697 rc = COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(atts));
1702 rc = task.m_pDirectControl->ReconfigureMediumAttachments(ComSafeArrayAsInParam(atts));
H A DMachineImpl.cpp5967 MediaData::AttachmentList atts; local
5969 HRESULT rc = i_getMediumAttachmentsOfController(aName, atts);
5973 aMediumAttachments.resize(atts.size());
5974 for (MediaData::AttachmentList::iterator it = atts.begin(); it != atts.end(); ++it, ++i)
9553 MediaData::AttachmentList &atts)
9572 atts.clear();
9578 atts.push_back(pAtt);
10443 MediaData::AttachmentList atts; local
10445 HRESULT rc = i_getMediumAttachmentsOfController(aStorageController->i_getName(), atts);
9552 i_getMediumAttachmentsOfController(const Utf8Str &aName, MediaData::AttachmentList &atts) argument
10703 MediaData::AttachmentList atts = mMediaData->mAttachments; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dmsxml2.idl2036 HRESULT addAttributeFromIndex( [in] VARIANT atts,
2055 HRESULT setAttributes( [in] VARIANT atts);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dmsxml2.idl2532 HRESULT addAttributeFromIndex( [in] VARIANT atts,
2551 HRESULT setAttributes( [in] VARIANT atts);

Completed in 485 milliseconds

12