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

  /external/chromium_org/ppapi/shared_impl/
media_stream_video_track_shared.cc 12 const int32_t kMaxHeight = 4096;
33 attributes.height > kMaxHeight ||
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 45 static const CGFloat kMaxHeight;
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_popup.h 94 static const int kMaxHeight;
extension_popup.cc 41 const int ExtensionPopup::kMaxHeight = 600;
129 sz.set_height(std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
  /external/chromium_org/ui/views/controls/
scroll_view_unittest.cc 17 const int kMaxHeight = 100;
249 scroll_view.ClipHeightTo(kMinHeight, kMaxHeight);
271 scroll_view.ClipHeightTo(kMinHeight, kMaxHeight);
296 scroll_view.ClipHeightTo(kMinHeight, kMaxHeight);
302 EXPECT_EQ(gfx::Size(kWidth, kMaxHeight), scroll_view.GetPreferredSize());
309 EXPECT_EQ(gfx::Size(kWidth, kMaxHeight), scroll_view.size());
317 scroll_view.ClipHeightTo(kMinHeight, kMaxHeight);
334 EXPECT_EQ(gfx::Size(kWidth, kMaxHeight), scroll_view.size());
  /external/chromium_org/content/renderer/media/
media_stream_video_source.h 74 static const char kMaxHeight[]; // maxHeight
media_stream_video_source.cc 26 const char MediaStreamVideoSource::kMaxHeight[] = "maxHeight";
36 MediaStreamVideoSource::kMaxHeight,
76 MediaStreamVideoSource::kMaxHeight,
85 MediaStreamVideoSource::kMaxHeight,
173 } else if (constraint_name == MediaStreamVideoSource::kMaxHeight) {
392 GetMandatoryConstraintValueAsInteger(constraints, 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/media/base/
videocapturer_unittest.cc 283 const int kMaxHeight = 3072;
285 int kHeight = kMaxHeight + 4;
    [all...]
videocommon.cc 111 const int kMaxHeight = 3072;
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/libjingle/source/talk/app/webrtc/
mediaconstraintsinterface.cc 43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight";
mediaconstraintsinterface.h 69 static const char kMaxHeight[]; // maxHeight
  /external/chromium_org/third_party/skia/src/effects/
SkMagnifierImageFilter.cpp 193 const int kMaxHeight = 200;
196 uint32_t height = random->nextULessThan(kMaxHeight);
198 uint32_t y = random->nextULessThan(kMaxHeight - height);
  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 191 const int kMaxHeight = 200;
194 uint32_t height = random->nextULessThan(kMaxHeight);
196 uint32_t y = random->nextULessThan(kMaxHeight - height);

Completed in 372 milliseconds