/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 | 30 // Download shelf autoclose behavior: 38 // autoclose is canceled. An autoclose can only be scheduled in response to a 40 // resulting autoclose is canceled, subsequent mouse exited events will NOT 41 // trigger an autoclose. 45 // reopened, these previously-in-progress download will not block autoclose, 80 - (void)autoClose; 393 // mouse exits should not trigger autoclose. 410 // Schedule an autoclose after a delay. If the mouse is moved back into the 412 [self performSelector:@selector(autoClose) [all...] |
download_shelf_controller.h | 70 // Used to autoclose the shelf when the mouse is moved off it.
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLSocketFactoryImpl.java | 100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) 105 autoClose,
|
OpenSSLSocketImplWrapper.java | 34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException { 35 super(socket, hostname, port, autoClose, sslParameters);
|
OpenSSLSocketImpl.java | 129 private final boolean autoClose; 180 this.autoClose = false; 190 this.autoClose = false; 200 this.autoClose = false; 212 this.autoClose = false; 223 this.autoClose = false; 232 boolean autoClose, SSLParametersImpl sslParameters) throws IOException { 236 this.autoClose = autoClose; [all...] |
/external/apache-http/src/org/apache/http/conn/scheme/ |
LayeredSocketFactory.java | 61 * @param autoClose a flag for closing the underling socket when the created 74 boolean autoClose
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSocketFactory.java | 131 * @param autoClose 141 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 | 52 // Autoclose timer operations.
|
/external/chromium_org/third_party/webrtc/tools/loopback_test/ |
loopback_test.html | 90 var autoClose = autoModeInput.checked; 144 if (autoClose) {
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_rwops.h | 79 int autoclose; member in struct:SDL_RWops::__anon13056::__anon13059 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::__anon63256::__anon63259 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::__anon63281::__anon63284 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::__anon63306::__anon63309 102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
zoom_decoration.mm | 68 [bubble_ showAnchoredAt:anchor autoClose:auto_close];
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
SSLSocketFactoryTest.java | 62 * javax.net.ssl.SSLSocketFactory#createSocket(Socket s, String host, int port, boolean autoClose)
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
SSLSocketFactoryWrapper.java | 116 final boolean autoClose) throws IOException { 117 final SSLSocket sslSocket = (SSLSocket)mFactory.createSocket(socket, host, port, autoClose);
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestSSLContext.java | 305 public Socket createSocket(Socket s, String host, int port, boolean autoClose) 307 return set(sf.createSocket(s, host, port, autoClose));
|