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

/external/chromium_org/ppapi/shared_impl/
H A Dmedia_stream_video_track_shared.cc12 const int32_t kMaxHeight = 4096; member in namespace:__anon10166
33 attributes.height > kMaxHeight ||
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_popup.h94 static const int kMaxHeight; member in class:ExtensionPopup
H A Dextension_popup.cc41 const int ExtensionPopup::kMaxHeight = 600; member in class:ExtensionPopup
129 sz.set_height(std::max(kMinHeight, std::min(kMaxHeight, sz.height())));
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h45 static const CGFloat kMaxHeight; member in class:ExtensionViewMac
/external/chromium_org/ui/views/controls/
H A Dscroll_view_unittest.cc17 const int kMaxHeight = 100; member in namespace:views::__anon17058
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/
H A Dmedia_stream_video_source.h74 static const char kMaxHeight[]; // maxHeight member in class:content::MediaStreamVideoSource
H A Dmedia_stream_video_source.cc26 const char MediaStreamVideoSource::kMaxHeight[] = "maxHeight"; member in class:content::MediaStreamVideoSource
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/libjingle/source/talk/media/base/
H A Dvideocapturer_unittest.cc283 const int kMaxHeight = 3072; local
285 int kHeight = kMaxHeight + 4;
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/leveldatabase/src/db/
H A Dskiplist.h95 enum { kMaxHeight = 12 }; enumerator in enum:leveldb::SkipList::__anon12449
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.cc43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight"; member in class:webrtc::MediaConstraintsInterface
H A Dmediaconstraintsinterface.h69 static const char kMaxHeight[]; // maxHeight member in class:webrtc::MediaConstraintsInterface
/external/chromium_org/third_party/skia/src/effects/
H A DSkMagnifierImageFilter.cpp193 const int kMaxHeight = 200; local
196 uint32_t height = random->nextULessThan(kMaxHeight);
198 uint32_t y = random->nextULessThan(kMaxHeight - height);
/external/skia/src/effects/
H A DSkMagnifierImageFilter.cpp191 const int kMaxHeight = 200; local
194 uint32_t height = random->nextULessThan(kMaxHeight);
196 uint32_t y = random->nextULessThan(kMaxHeight - height);

Completed in 564 milliseconds