Home
last modified time | relevance | path

Searched refs:QXmlQuery (Results 1 – 25 of 390) sorted by path

12345678910>>...16

/dports/comms/py-qt5-sensors/PyQt5-5.15.4/sip/QtXmlPatterns/
H A Dqxmlformatter.sip30 QXmlFormatter(const QXmlQuery &query, QIODevice *outputDevice);
H A Dqxmlquery.sip23 class QXmlQuery
41 QXmlQuery();
42 QXmlQuery(const QXmlQuery &other);
43 QXmlQuery(const QXmlNamePool &np);
44 QXmlQuery(QXmlQuery::QueryLanguage queryLanguage, const QXmlNamePool &pool = QXmlNamePool());
45 ~QXmlQuery();
54 void bindVariable(const QXmlName &name, const QXmlQuery &query);
57 void bindVariable(const QString &localName, const QXmlQuery &query);
125 QXmlQuery::QueryLanguage queryLanguage() const;
H A Dqxmlserializer.sip30 QXmlSerializer(const QXmlQuery &query, QIODevice *outputDevice);
/dports/comms/py-qt5-serialport/PyQt5-5.15.4/sip/QtXmlPatterns/
H A Dqxmlformatter.sip30 QXmlFormatter(const QXmlQuery &query, QIODevice *outputDevice);
H A Dqxmlquery.sip23 class QXmlQuery
41 QXmlQuery();
42 QXmlQuery(const QXmlQuery &other);
43 QXmlQuery(const QXmlNamePool &np);
44 QXmlQuery(QXmlQuery::QueryLanguage queryLanguage, const QXmlNamePool &pool = QXmlNamePool());
45 ~QXmlQuery();
54 void bindVariable(const QXmlName &name, const QXmlQuery &query);
57 void bindVariable(const QString &localName, const QXmlQuery &query);
125 QXmlQuery::QueryLanguage queryLanguage() const;
H A Dqxmlserializer.sip30 QXmlSerializer(const QXmlQuery &query, QIODevice *outputDevice);
/dports/converters/wkhtmltopdf/qt-5db36ec/dist/
H A Dchanges-4.4.1361 * [207584] When using the same QXmlQuery for a new query then evaluateTo()
H A Dchanges-4.4.2278 - QXmlQuery
279 * [219070] Fix after the QXmlQuery object is deleted it doesn't
H A Dchanges-4.5.0150 - QXmlQuery
1015 - QXmlQuery
H A Dchanges-4.6.0662 - QXmlQuery
663 * [245219] Added QXmlQuery::setFocus(const QString &focus).
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/examples/
H A Dfiletree.qdoc331 of QXmlQuery and calls QXmlQuery::bindVariable() to bind the node
333 QXmlQuery::setQuery() to load the XQuery text.
335 \note QXmlQuery::bindVariable() must be called \e before calling
336 QXmlQuery::setQuery(), which loads and parses the XQuery text and
341 query result as XML. QXmlQuery::evaluateTo() is called to run the
H A Dqobjectxmlmodel.qdoc292 instance of QXmlQuery. Then it \l{QXmlQuery::bindVariable()}{binds}
295 \l{QXmlQuery::setQuery()} {sets the query} to be an XQuery that
299 \note \l{QXmlQuery::bindVariable()} must be called before
300 \l{QXmlQuery::setQuery()}, because setting the query causes
H A Drecipes.qdoc112 QtXmlPatterns usage pattern. First, an instance of QXmlQuery is
113 created (\c{query}). The \c{query's} \l{QXmlQuery::bindVariable()}
116 is bound, \l{QXmlQuery::setQuery()} {setQuery()} is called to pass
119 \note \l{QXmlQuery::setQuery()} {setQuery()} must be called
120 \e{after} \l{QXmlQuery::bindVariable()} {bindVariable()}.
122 Passing the XQuery to \l{QXmlQuery::setQuery()} {setQuery()} causes
123 QtXmlPatterns to parse the XQuery. \l{QXmlQuery::isValid()} is
131 XQuery, an overload of \l{QXmlQuery::evaluateTo()} {evaluateTo()} is
H A Dtrafficinfo.qdoc103 These two queries are passed to the QXmlQuery instance and are evaluated
130 the QXmlQuery::bindVariable() method to do proper quoting of the variable
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/snippets/code/
H A Dsrc_xmlpatterns_api_qabstractxmlnodemodel.cpp50 QXmlQuery query;
H A Dsrc_xmlpatterns_api_qabstractxmlreceiver.cpp42 QXmlQuery query;
H A Dsrc_xmlpatterns_api_qxmlformatter.cpp42 QXmlQuery query;
H A Dsrc_xmlpatterns_api_qxmlquery.cpp52 QXmlQuery query;
73 QXmlQuery query;
89 QXmlQuery query;
109 QXmlQuery query;
148 QXmlQuery query;
187 QXmlQuery query(QXmlQuery::XSLT20);
H A Dsrc_xmlpatterns_api_qxmlresultitems.cpp42 QXmlQuery query;
H A Dsrc_xmlpatterns_api_qxmlserializer.cpp42 QXmlQuery query;
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/snippets/qxmlquery/
H A DbindingExample.cpp46 QXmlQuery query;
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/xml-processing/
H A Dxml-patterns.qdoc126 (\c{myquery.xq}). Then create an instance of QXmlQuery and call
127 its \l{QXmlQuery::}{setQuery()} function to load and parse the
130 the \l{QXmlQuery::}{evaluateTo()} function to evaluate the query
138 See the QXmlQuery documentation for more information about the
176 application, you will need to \l{QXmlQuery::bindVariable()} {bind
187 Modify the QtXmlPatterns code to use one of the \l{QXmlQuery::}
301 sequence to call the overload of QXmlQuery::evaluateTo() that
423 \l{QXmlQuery::evaluateTo()} {XQuery evaluation}, the QXmlName must
425 instance of QXmlQuery that was used for the evaluation.
594 QVariant and variable bindings. See QXmlQuery::bindVariable().
[all …]
H A Dxquery-introduction.qdoc93 query is to call QXmlQuery::setFocus(). Another common way is to let
/dports/converters/wkhtmltopdf/qt-5db36ec/examples/xmlpatterns/filetree/
H A Dmainwindow.cpp99 QXmlQuery query(m_namePool); in evaluateResult()
132 QXmlQuery query(m_namePool); in loadDirectory()
/dports/converters/wkhtmltopdf/qt-5db36ec/examples/xmlpatterns/qobjectxmlmodel/
H A Dmainwindow.cpp66 QXmlQuery query(namePool); in MainWindow()

12345678910>>...16