HomeSort by relevance Sort by last modified time
    Searched refs:focusNextPrevChild (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 88 virtual bool focusNextPrevChild(bool next);
qgraphicswkview.cpp 86 connect(d->page, SIGNAL(focusNextPrevChild(bool)), this, SLOT(focusNextPrevChildCallback(bool)));
172 bool focusNextPrevChild(bool next);
192 friendlyWindow->focusNextPrevChild(next);
199 bool QGraphicsWKView::focusNextPrevChild(bool next)
ClientImpl.cpp 170 emit toQWKPage(clientInfo)->focusNextPrevChild(direction == kWKFocusDirectionForward);
qwkpage.h 138 Q_SIGNAL void focusNextPrevChild(bool);
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.h 148 virtual bool focusNextPrevChild(bool next);
qwebview.h 159 virtual bool focusNextPrevChild(bool next);
qgraphicswebview.cpp 1055 bool QGraphicsWebView::focusNextPrevChild(bool next)
1058 return d->page->focusNextPrevChild(next);
1060 return QGraphicsWidget::focusNextPrevChild(next);
qwebview.cpp 1141 bool QWebView::focusNextPrevChild(bool next)
1143 if (d->page && d->page->focusNextPrevChild(next))
1145 return QWidget::focusNextPrevChild(next);
    [all...]
qwebpage.h 292 bool focusNextPrevChild(bool next);
qwebpage.cpp     [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 389 QVERIFY(m_page->focusNextPrevChild(/*next*/ true));
    [all...]

Completed in 144 milliseconds