HomeSort by relevance Sort by last modified time
    Searched full:loadprogress (Results 1 - 21 of 21) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/API/qt/
ClientImpl.cpp 121 emit toQWKPage(clientInfo)->loadProgress(0);
126 emit toQWKPage(clientInfo)->loadProgress(WKPageGetEstimatedProgress(page) * 100);
131 emit toQWKPage(clientInfo)->loadProgress(100);
qgraphicswkview.h 61 Q_SIGNAL void loadProgress(int progress);
qwkpage.h 129 Q_SIGNAL void loadProgress(int progress);
qgraphicswkview.cpp 82 connect(d->page, SIGNAL(loadProgress(int)), this, SIGNAL(loadProgress(int)));
  /external/webkit/Tools/GtkLauncher/
main.c 45 gdouble loadProgress = webkit_web_view_get_progress(webView) * 100;
47 if (loadProgress < 100)
48 g_string_append_printf(string, " (%f%%)", loadProgress);
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.h 59 void loadProgress(int progress);
BrowserWindow.cpp 62 connect(m_browser->view(), SIGNAL(loadProgress(int)), SLOT(loadProgress(int)));
188 void BrowserWindow::loadProgress(int progress)
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.h 119 void loadProgress(int progress);
qwebview.h 123 void loadProgress(int progress);
qwebview.cpp 241 loadProgress() signal, on the other hand, is emitted whenever an element of
402 connect(d->page, SIGNAL(loadProgress(int)),
403 this, SIGNAL(loadProgress(int)));
1212 \sa loadProgress(), loadFinished()
1233 \fn void QWebView::loadProgress(int progress)
    [all...]
qgraphicswebview.cpp 217 \sa loadProgress(), loadFinished()
528 connect(d->page, SIGNAL(loadProgress(int)),
529 this, SIGNAL(loadProgress(int)));
1176 \fn void QGraphicsWebView::loadProgress(int progress)
qwebpage.h 372 void loadProgress(int progress);
qwebpage.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 139 // loadProgress is a value between 0 (nothing loaded) and 1.0 (frame fully
141 virtual void didChangeLoadProgress(WebFrame*, double loadProgress) { }
  /external/webkit/Source/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 186 view->connect(view, SIGNAL(loadProgress(int)), this, SLOT(loading(int)));
204 // Test if loading can be stopped in loadProgress handler without crash.
  /external/webkit/Tools/QtTestBrowser/
mainwindow.cpp 84 connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int)));
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.h 68 void loadProgress(int d);
FrameLoaderClientQt.cpp 235 connect(this, SIGNAL(loadProgress(int)),
236 m_webFrame->page(), SIGNAL(loadProgress(int)));
589 emit loadProgress(qRound(m_frame->page()->progress()->estimatedProgress() * 100));
    [all...]
  /external/webkit/Source/WebKit/qt/symbian/bwins/
QtWebKitu.def     [all...]
  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp 779 connect(page, SIGNAL(loadProgress(int)), this, SLOT(doLoadProgress(int)));
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp     [all...]

Completed in 738 milliseconds