HomeSort by relevance Sort by last modified time
    Searched full:autoclose (Results 1 - 25 of 64) sorted by null

1 2 3

  /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...]
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 host, int port, boolean autoClose)
105 autoClose,
OpenSSLSocketImplWrapper.java 34 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
35 super(socket, host, port, autoClose, sslParameters);
OpenSSLSocketImpl.java 129 private final boolean autoClose;
164 this.autoClose = false;
174 this.autoClose = false;
184 this.autoClose = false;
196 this.autoClose = false;
207 this.autoClose = false;
216 boolean autoClose, SSLParametersImpl sslParameters) throws IOException {
220 this.autoClose = autoClose;
    [all...]
  /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 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/chrome/browser/ui/cocoa/location_bar/
zoom_decoration.mm 67 [bubble_ showAnchoredAt:anchor autoClose:auto_close];
  /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::__anon33083::__anon33086
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::__anon81064::__anon81067
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::__anon81089::__anon81092
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::__anon81114::__anon81117
102 extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFP(FILE *fp, int autoclose);
  /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)
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLContext.java 304 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
306 return set(sf.createSocket(s, host, port, autoClose));
  /external/qemu/distrib/sdl-1.2.15/src/file/
SDL_rwops.c 355 if ( context->hidden.stdio.autoclose ) {
532 SDL_RWops *SDL_RWFromFP(FILE *fp, int autoclose)
543 rwops->hidden.stdio.autoclose = autoclose;

Completed in 1929 milliseconds

1 2 3