HomeSort by relevance Sort by last modified time
    Searched defs:loading (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebKit/qt/tests/qwebview/
tst_qwebview.cpp 179 view->connect(view, SIGNAL(loadProgress(int)), this, SLOT(loading(int)));
183 void loading(int progress) function in class:WebViewCrashTest
197 // Test if loading can be stopped in loadProgress handler without crash.
  /external/webkit/WebCore/inspector/front-end/
TimelinePanel.js 103 loading: new WebInspector.TimelineCategory("loading", WebInspector.UIString("Loading"), "rgb(47,102,236)"),
178 this._recordStyles[recordTypes.ParseHTML] = { title: WebInspector.UIString("Parse"), category: this.categories.loading };
186 this._recordStyles[recordTypes.ResourceSendRequest] = { title: WebInspector.UIString("Send Request"), category: this.categories.loading };
187 this._recordStyles[recordTypes.ResourceReceiveResponse] = { title: WebInspector.UIString("Receive Response"), category: this.categories.loading };
188 this._recordStyles[recordTypes.ResourceFinish] = { title: WebInspector.UIString("Finish Loading"), category: this.categories.loading };
  /external/webkit/WebCore/loader/
DocumentLoader.cpp 208 // (This can happen when there's a single XMLHttpRequest currently loading and stopLoading causes it
209 // to stop loading. Because of this, we need to save it so we don't return early.
210 bool loading = m_loading; local
213 // Attempt to stop the frame if the document loader is loading, or if it is done loading but
217 if (loading || doc->parsing())
224 if (!loading)
238 // The main resource loader already finished loading. Set the cancelled error on the
  /system/core/init/
devices.c 503 char *root, *loading, *data, *file1 = NULL, *file2 = NULL; local
513 l = asprintf(&loading, "%sloading", root);
529 loading_fd = open(loading, O_WRONLY);
560 free(loading);

Completed in 92 milliseconds