Searched refs:proceed (Results 1 - 25 of 83) sorted by relevance

1234

/external/javassist/src/main/javassist/util/proxy/
H A DMethodHandler.java34 * @param proceed the forwarder method for invoking the overridden
46 Object invoke(Object self, Method thisMethod, Method proceed, argument
/external/chromium_org/chrome/browser/lifetime/
H A Dbrowser_close_manager.h40 void OnBrowserReportCloseable(bool proceed);
54 void OnReportDownloadsCancellable(bool proceed);
H A Dbrowser_close_manager.cc61 void BrowserCloseManager::OnBrowserReportCloseable(bool proceed) { argument
67 if (proceed)
97 void BrowserCloseManager::OnReportDownloadsCancellable(bool proceed) { argument
98 if (proceed) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSslErrorHandler.java24 public void proceed() { method in class:ShadowSslErrorHandler
/external/chromium_org/chrome/browser/chromeos/offline/
H A Doffline_load_page_unittest.cc35 virtual void NotifyBlockingPageComplete(bool proceed) OVERRIDE;
57 void OnBlockingPageComplete(bool proceed) { argument
58 if (proceed)
88 void TestOfflineLoadPage::NotifyBlockingPageComplete(bool proceed) { argument
89 test_page_->OnBlockingPageComplete(proceed);
106 // Simulate the user clicking "proceed".
133 // Simulate the user clicking "don't proceed".
139 // We did not proceed, the pending entry should be gone.
H A Doffline_load_page.h39 // Passed a boolean indicating whether or not it is OK to proceed with the
41 typedef base::Callback<void(bool /*proceed*/)> CompletionCallback;
54 virtual void NotifyBlockingPageComplete(bool proceed);
73 // True if the proceed is chosen.
H A Doffline_load_page.cc147 void OfflineLoadPage::NotifyBlockingPageComplete(bool proceed) { argument
149 BrowserThread::IO, FROM_HERE, base::Bind(callback_, proceed));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DInterstitialPageDelegateAndroid.java35 * Called when "proceed" is triggered on the interstitial.
42 * Called when "dont' proceed" is triggered on the interstitial.
63 * Notifies the native interstitial to proceed.
65 protected void proceed() { method in class:InterstitialPageDelegateAndroid
70 * Notifies the native interstitial to not proceed.
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dprogress_center.js113 this.queue_.run(function(proceed) {
114 chrome.notifications.clear(item.id, proceed);
122 this.queue_.run(function(proceed) {
134 chrome.notifications.create(item.id, params, proceed);
136 chrome.notifications.update(item.id, params, proceed);
/external/chromium_org/chrome/browser/ssl/
H A Dssl_blocking_page.cc137 bool proceed,
140 if (expired_but_previously_allowed && proceed)
142 else if (expired_but_previously_allowed && !proceed)
144 else if (!expired_but_previously_allowed && proceed)
162 void RecordSSLBlockingPageDetailedStats(bool proceed, argument
171 expired_but_previously_allowed, proceed, overridable);
173 if (proceed) {
182 if (proceed) {
188 } else if (!proceed) {
194 if (proceed)
136 RecordSSLExpirationPageEventState(bool expired_but_previously_allowed, bool proceed, bool overridable) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwHttpAuthHandler.java16 public void proceed(String username, String password) { method in class:AwHttpAuthHandler
H A DAwContentsClientBridge.java78 public void proceed(final PrivateKey privateKey, final X509Certificate[] chain) { method in class:AwContentsClientBridge.ClientCertificateRequestCallback
192 private void proceedSslError(boolean proceed, int id) { argument
194 nativeProceedSslError(mNativeContentsClientBridge, proceed, id);
277 private native void nativeProceedSslError(long nativeAwContentsClientBridge, boolean proceed, argument
/external/chromium_org/chrome/browser/renderer_host/
H A Doffline_resource_throttle.h38 void OnBlockingPageComplete(bool proceed);
H A Doffline_resource_throttle.cc41 // Check again on UI thread and proceed if it's connected.
109 void OfflineResourceThrottle::OnBlockingPageComplete(bool proceed) { argument
112 if (proceed) {
H A Dsafe_browsing_resource_throttle.h84 void OnBlockingPageComplete(bool proceed);
H A Dsafe_browsing_resource_throttle.cc179 // thread when the user has decided to proceed with the current request, or
181 void SafeBrowsingResourceThrottle::OnBlockingPageComplete(bool proceed) { argument
185 if (proceed) {
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_password_changed.css64 #password-changed-proceed-anyway-warning {
70 #password-changed.migrate #password-changed-proceed-anyway-warning,
71 #password-changed.migrate #password-changed-proceed-button {
/external/chromium_org/chrome/browser/ui/
H A Dunload_controller.cc68 // to proceed closing the page or not, which sends us back to this method
77 bool proceed) {
78 if (!proceed)
82 if (!proceed)
84 return proceed;
87 if (!proceed) {
279 // We've finished all the unload events and can proceed to close the
311 // We've finished firing all beforeunload events and can proceed with unload
76 BeforeUnloadFired(content::WebContents* contents, bool proceed) argument
H A Dfast_unload_controller.cc98 // to proceed closing the page or not, which sends us back to this method
107 bool proceed) {
108 if (!proceed)
112 if (!proceed) {
120 return proceed;
123 if (!proceed) {
106 BeforeUnloadFired(content::WebContents* contents, bool proceed) argument
/external/javassist/src/test/test/javassist/proxy/
H A DProxyFactoryCompatibilityTest.java34 public Object invoke(Object self, Method m, Method proceed,
37 return proceed.invoke(self, args); // execute the original method.
H A DProxySerializationTest.java108 public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwable argument
110 return proceed.invoke(self, args);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSslErrorHandlerTest.java44 handler.proceed();
/external/chromium_org/android_webview/native/
H A Daw_contents_client_bridge.h60 void ProceedSslError(JNIEnv* env, jobject obj, jboolean proceed, jint id);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeHttpAuthHandler.java61 public void proceed(String username, String password) { method in class:ChromeHttpAuthHandler
/external/chromium_org/chrome/browser/safe_browsing/
H A Dui_manager.h33 // Passed a boolean indicating whether or not it is OK to proceed with
35 typedef base::Callback<void(bool /*proceed*/)> UrlCheckCallback;
105 bool proceed);

Completed in 816 milliseconds

1234