HomeSort by relevance Sort by last modified time
    Searched defs:kMaxHeight (Results 1 - 17 of 17) sorted by null

  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 63 static const CGFloat kMaxHeight;
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.h 67 static const int kMaxHeight;
extension_popup_gtk.cc 34 const int ExtensionPopupGtk::kMaxHeight = 600;
151 int height = std::max(kMinHeight, std::min(kMaxHeight, new_size.height()));
  /external/chromium/chrome/browser/ui/views/extensions/
extension_popup.cc 44 const int ExtensionPopup::kMaxHeight = 600;
174 std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
extension_popup.h 98 static const int kMaxHeight;
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 75 static const CGFloat kMaxHeight;
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_popup.h 73 static const int kMaxHeight;
extension_popup.cc 63 const int ExtensionPopup::kMaxHeight = 600;
145 sz.set_height(std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.cc 43 const int ExtensionPopupGtk::kMaxHeight = 600;
142 int height = std::max(kMinHeight, std::min(kMaxHeight, new_size.height()));
extension_popup_gtk.h 75 static const int kMaxHeight;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc 111 const int kMaxHeight = 3072;
127 if (new_frame_height > kMaxHeight) {
128 new_frame_width = new_frame_width * kMaxHeight / new_frame_height;
129 new_frame_height = kMaxHeight;
  /external/chromium_org/third_party/leveldatabase/src/db/
skiplist.h 95 enum { kMaxHeight = 12 };
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/
mediaconstraintsinterface.h 70 static const char kMaxHeight[]; // maxHeight
localvideosource.cc 47 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight";
119 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
163 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
  /external/chromium_org/third_party/skia/src/effects/
SkMagnifierImageFilter.cpp 207 const int kMaxHeight = 200;
210 uint32_t height = random->nextULessThan(kMaxHeight);
212 uint32_t y = random->nextULessThan(kMaxHeight - height);
  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 207 const int kMaxHeight = 200;
210 uint32_t height = random->nextULessThan(kMaxHeight);
212 uint32_t y = random->nextULessThan(kMaxHeight - height);
  /external/chromium/chrome/browser/ui/gtk/
browser_window_gtk.cc     [all...]

Completed in 5401 milliseconds