/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
FileDescriptorInfo.java | 12 FileDescriptorInfo(int id, int fd, boolean autoClose) { 15 mAutoClose = autoClose;
|
/external/chromium_org/chrome/browser/download/ |
download_stats.cc | 9 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose) { 11 if (autoclose) {
|
download_stats.h | 11 // in the shelf when it closes. Set |autoclose| to true when the shelf is 13 void RecordDownloadShelfClose(int size, int in_progress, bool autoclose);
|
/external/chromium_org/chrome/browser/ui/cocoa/browser/ |
zoom_bubble_controller_unittest.mm | 46 [controller showAnchoredAt:NSZeroPoint autoClose:NO]; 58 TEST_F(ZoomBubbleControllerTest, AutoClose) { 65 [controller showAnchoredAt:NSZeroPoint autoClose:YES]; 82 [controller showAnchoredAt:NSZeroPoint autoClose:YES];
|
zoom_bubble_controller.h | 56 // |autoClose| is YES, then the bubble was opened in response to a 59 - (void)showAnchoredAt:(NSPoint)anchorPoint autoClose:(BOOL)autoClose;
|
zoom_bubble_controller.mm | 113 - (void)showAnchoredAt:(NSPoint)anchorPoint autoClose:(BOOL)autoClose { 117 [window setAllowedAnimations:autoClose 124 autoClose_ = autoClose;
|
/external/chromium_org/chrome/browser/ui/cocoa/download/ |
download_shelf_controller_unittest.mm | 64 // cancelAutoClose. During regular operation, a scheduled autoClose waits for 5 67 // {schedule,cancel}AutoClose instead of actually scheduling and cancelling. 156 // The shelf should be closed without scheduling an autoClose. 210 // the download shelf at the time the autoclose is scheduled. 236 // The mouse exits the shelf. autoClose should be scheduled now. 241 // The mouse enters the shelf again. The autoClose should be cancelled. 265 // Test that if the shelf is closed while an autoClose is pending, the pending 266 // autoClose is cancelled. 287 // The shelf should now be waiting for the mouse to exit. autoClose should not 293 // The mouse exits the shelf. autoClose should be scheduled now [all...] |
download_shelf_controller.mm | 31 // Download shelf autoclose behavior: 39 // autoclose is canceled. An autoclose can only be scheduled in response to a 41 // resulting autoclose is canceled, subsequent mouse exited events will NOT 42 // trigger an autoclose. 46 // reopened, these previously-in-progress download will not block autoclose, 81 - (void)autoClose; 394 // mouse exits should not trigger autoclose. 411 // Schedule an autoclose after a delay. If the mouse is moved back into the 413 [self performSelector:@selector(autoClose) [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLSocketWrapper.java | 33 private final boolean autoClose; 35 protected SSLSocketWrapper(Socket socket, String host, int port, boolean autoClose, 42 this.autoClose = autoClose; 54 if (autoClose && (input != null)) {
|
OpenSSLSocketFactoryImpl.java | 92 public Socket createSocket(Socket s, String host, int port, boolean autoClose) 97 autoClose,
|
OpenSSLSocketImplWrapper.java | 34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException { 35 super(socket, host, port, autoClose, sslParameters);
|
SSLSocketFactoryImpl.java | 87 boolean autoClose) throws IOException { 91 return new SSLSocketWrapper(s, host, port, autoClose, (SSLParametersImpl) sslParameters
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
download_shelf_controller.h | 60 // Used to autoclose the shelf when the mouse is moved off it. Is non-nil 61 // only when a subsequent mouseExited event can trigger autoclose or when a 62 // subsequent mouseEntered event will cancel autoclose. Is nil otherwise.
|
download_shelf_controller.mm | 31 // Download shelf autoclose behavior: 39 // autoclose is canceled. An autoclose can only be scheduled in response to a 41 // resulting autoclose is canceled, subsequent mouse exited events will NOT 42 // trigger an autoclose. 46 // reopened, these previously-in-progress download will not block autoclose, 403 // mouse exits should not trigger autoclose, so also remove the tracking area. 413 // Schedule an autoclose after a delay. If the mouse is moved back into the 432 // the shelf autoclose.
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
LayeredSocketFactory.java | 56 * @param autoClose a flag for closing the underling socket when the created 69 boolean autoClose
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSocketFactory.java | 112 * @param autoClose 122 public abstract Socket createSocket(Socket s, String host, int port, boolean autoClose)
|
DefaultSSLSocketFactory.java | 50 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
|
/external/chromium_org/ash/system/tray/ |
tray_notification_view.h | 55 // Autoclose timer operations.
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
zoom_decoration.mm | 67 [bubble_ showAnchoredAt:anchor autoClose:auto_close];
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_rwops.h | 79 int autoclose; member in struct:SDL_RWops::__anon24948::__anon24951 102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
|
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_rwops.h | 79 int autoclose; member in struct:SDL_RWops::__anon60627::__anon60630 102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
|
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_rwops.h | 79 int autoclose; member in struct:SDL_RWops::__anon60652::__anon60655 102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
|
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_rwops.h | 79 int autoclose; member in struct:SDL_RWops::__anon60677::__anon60680 102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLSocketFactoryTest.java | 62 * javax.net.ssl.SSLSocketFactory#createSocket(Socket s, String host, int port, boolean autoClose)
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestSSLContext.java | 299 public Socket createSocket(Socket s, String host, int port, boolean autoClose) 301 return set(sf.createSocket(s, host, port, autoClose));
|