HomeSort by relevance Sort by last modified time
    Searched refs:auto_close_ (Results 1 - 6 of 6) sorted by null

  /art/runtime/base/unix_file/
fd_file.cc 26 FdFile::FdFile() : fd_(-1), auto_close_(true) {
29 FdFile::FdFile(int fd) : fd_(fd), auto_close_(true) {
32 FdFile::FdFile(int fd, const std::string& path) : fd_(fd), file_path_(path), auto_close_(true) {
37 if (auto_close_ && fd_ != -1) {
43 auto_close_ = false;
fd_file.h 68 bool auto_close_; member in class:unix_file::FdFile
  /external/chromium_org/chrome/browser/ui/gtk/
zoom_bubble_gtk.h 54 // Convenience method to start |timer_| if |auto_close_| is true.
80 bool auto_close_; member in class:ZoomBubbleGtk
85 // Timer used to close the bubble when |auto_close_| is true.
zoom_bubble_gtk.cc 54 // If the bubble is already showing and its |auto_close_| value is equal to
58 g_bubble->auto_close_ == auto_close &&
62 // If the bubble is already showing but its |auto_close_| value is not equal
90 : auto_close_(auto_close),
147 if (auto_close_) {
188 if (!auto_close_ || mouse_inside_)
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_bubble_view.cc 55 // If the bubble is already showing in this window and its |auto_close_| value
60 zoom_bubble_->auto_close_ == auto_close) {
63 // If the bubble is already showing but its |auto_close_| value is not equal
117 auto_close_(auto_close),
167 if (auto_close_) {
193 if (!zoom_bubble_ || !zoom_bubble_->auto_close_ ||
zoom_bubble_view.h 66 // Starts a timer which will close the bubble if |auto_close_| is true.
101 // Timer used to close the bubble when |auto_close_| is true.
111 bool auto_close_; member in class:ZoomBubbleView

Completed in 108 milliseconds