Searched defs:kMaxHeight (Results 1 - 17 of 17) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h63 static const CGFloat kMaxHeight; member in class:ExtensionViewMac
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_popup_gtk.h67 static const int kMaxHeight; member in class:ExtensionPopupGtk
H A Dextension_popup_gtk.cc34 const int ExtensionPopupGtk::kMaxHeight = 600; member in class:ExtensionPopupGtk
151 int height = std::max(kMinHeight, std::min(kMaxHeight, new_size.height()));
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_popup.h99 static const int kMaxHeight; member in class:ExtensionPopup
H A Dextension_popup.cc67 const int ExtensionPopup::kMaxHeight = 600; member in class:ExtensionPopup
153 sz.set_height(std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_popup.h98 static const int kMaxHeight; member in class:ExtensionPopup
H A Dextension_popup.cc44 const int ExtensionPopup::kMaxHeight = 600; member in class:ExtensionPopup
174 std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h75 static const CGFloat kMaxHeight; member in class:ExtensionViewMac
/external/chromium_org/chrome/browser/ui/gtk/extensions/
H A Dextension_popup_gtk.h75 static const int kMaxHeight; member in class:ExtensionPopupGtk
H A Dextension_popup_gtk.cc43 const int ExtensionPopupGtk::kMaxHeight = 600; member in class:ExtensionPopupGtk
137 int height = std::max(kMinHeight, std::min(kMaxHeight, new_size.height()));
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dskiplist.h95 enum { kMaxHeight = 12 }; enumerator in enum:leveldb::SkipList::__anon12006
244 while (height < kMaxHeight && ((rnd_.Next() % kBranching) == 0)) {
248 assert(height <= kMaxHeight);
325 head_(NewNode(0 /* any key will do */, kMaxHeight)),
328 for (int i = 0; i < kMaxHeight; i++) {
337 Node* prev[kMaxHeight];
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediaconstraintsinterface.h70 static const char kMaxHeight[]; // maxHeight member in class:webrtc::MediaConstraintsInterface
H A Dvideosource.cc47 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight"; member in class:webrtc::MediaConstraintsInterface
122 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
166 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocommon.cc111 const int kMaxHeight = 3072; local
121 if (new_frame_height > kMaxHeight) {
122 new_frame_width = new_frame_width * kMaxHeight / new_frame_height;
123 new_frame_height = kMaxHeight;
/external/chromium_org/third_party/skia/src/effects/
H A DSkMagnifierImageFilter.cpp190 const int kMaxHeight = 200; local
193 uint32_t height = random->nextULessThan(kMaxHeight);
195 uint32_t y = random->nextULessThan(kMaxHeight - height);
/external/skia/src/effects/
H A DSkMagnifierImageFilter.cpp190 const int kMaxHeight = 200; local
193 uint32_t height = random->nextULessThan(kMaxHeight);
195 uint32_t y = random->nextULessThan(kMaxHeight - height);
/external/chromium/chrome/browser/ui/gtk/
H A Dbrowser_window_gtk.cc1938 static const size_t kMaxHeight = 24; local
1943 size_t height = kDefaultHeight + (kMaxHeight - kDefaultHeight) * progress;

Completed in 2787 milliseconds