Searched refs:kMaxHeight (Results 1 - 20 of 20) 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/content/renderer/media/
H A Dmedia_stream_constraints_util_unittest.cc101 constraint_factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, height);
109 constraints, MediaStreamVideoSource::kMaxHeight, &value_height));
116 constraint_factory.AddOptional(MediaStreamVideoSource::kMaxHeight, height);
121 constraints, MediaStreamVideoSource::kMaxHeight, &value_height));
H A Dmedia_stream_video_source_unittest.cc303 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 288);
379 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 360);
490 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 270);
514 factory.AddOptional(MediaStreamVideoSource::kMaxHeight, 360);
521 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 360);
528 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 489);
539 factory.AddOptional(MediaStreamVideoSource::kMaxHeight, 359);
546 factory.AddMandatory(MediaStreamVideoSource::kMaxHeight, 320);
555 factory.AddOptional(MediaStreamVideoSource::kMaxHeight, 1080);
565 factory1.AddOptional(MediaStreamVideoSource::kMaxHeight, 48
[all...]
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 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;
H A Dvideocapturer_unittest.cc283 const int kMaxHeight = 3072; local
285 int kHeight = kMaxHeight + 4;
/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/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/chrome/browser/ui/cocoa/extensions/
H A Dextension_view_mac.h45 static const CGFloat kMaxHeight; member in class:ExtensionViewMac
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediaconstraintsinterface.h69 static const char kMaxHeight[]; // maxHeight member in class:webrtc::MediaConstraintsInterface
H A Dmediaconstraintsinterface.cc43 const char MediaConstraintsInterface::kMaxHeight[] = "maxHeight"; member in class:webrtc::MediaConstraintsInterface
H A Dvideosource_unittest.cc231 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
474 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 288);
518 constraints.AddMandatory(MediaConstraintsInterface::kMaxHeight, 270);
H A Dvideosource.cc99 } else if (constraint.key == MediaConstraintsInterface::kMaxHeight) {
143 } else if (constraint.key == MediaConstraintsInterface::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())));
H A Dextension_view_views.cc113 gfx::Size(ExtensionPopup::kMaxWidth, ExtensionPopup::kMaxHeight));
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dbrowser_action_test_util_views.cc102 return gfx::Size(ExtensionPopup::kMaxWidth, ExtensionPopup::kMaxHeight);
/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 1277 milliseconds