Searched refs:height_ (Results 101 - 125 of 181) sorted by relevance

12345678

/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
H A Dcube.cc234 height_(0),
279 height_ = new_height;
280 glViewport(0, 0, width_, height_);
431 const float aspect_ratio = static_cast<float>(width_) / height_;
486 int32_t height_; member in class:CubeInstance
/external/chromium_org/content/renderer/media/webrtc/
H A Dmock_peer_connection_dependency_factory.cc131 height_(0) {
138 height_ = frame->visible_rect().height();
146 return height_;
156 int height_; member in class:content::MockRtcVideoCapturer
161 height_(0),
168 height_ = height;
/external/chromium_org/media/base/android/
H A Dmedia_player_bridge.cc46 height_(0),
282 height_ = height;
285 player_id(), duration_, width_, height_, success); local
332 return height_;
400 height_ = height;
436 player_id(), duration_, width_, height_, true); local
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddiffer_unittest.cc35 height_ = height;
38 buffer_size_ = width_ * height_ * bytes_per_pixel_;
40 differ_.reset(new Differ(width_, height_, bytes_per_pixel_, stride_));
195 int height_; member in class:webrtc::DifferTest
342 for (int y = 0; y < height_; y++) {
346 WritePixel(curr_.get(), x, height_ - 1, 0xff00ff);
/external/chromium_org/skia/ext/
H A Dvector_canvas_unittest.cc111 height_ = bitmap_data.bmHeight;
113 size_t size = row_length_ * height_;
124 int height() const { return height_; }
132 gfx::Size(width_, height_),
149 height_ != rhs.height_ ||
152 height_ == 0) {
157 for (int y = 0; y < height_; ++y) {
169 static_cast<double>(height_);
177 EXPECT_TRUE(y >= 0 && y < height_);
200 int height_; member in class:skia::__anon10684::Image
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtctexturevideoframe.cc43 : handle_(handle), width_(width), height_(height),
110 handle_, width_, height_, elapsed_time_, time_stamp_);
H A Dwebrtctexturevideoframe.h54 virtual size_t GetHeight() const { return height_; }
106 int height_; member in class:cricket::WebRtcTextureVideoFrame
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dencode_perf_test.cc26 EncodePerfTestVideo(const char *name_, uint32_t width_, uint32_t height_, argument
30 height(height_),
H A Dvariance_test.cc140 height_ = 1 << log2height_;
144 block_size_ = width_ * height_;
166 int height_, log2height_; member in class:__anon13007::VarianceTest
227 height_ = 1 << log2height_;
231 block_size_ = width_ * height_;
254 int height_, log2height_; member in class:__anon13007::MseTest
351 height_ = 1 << log2height_;
355 block_size_ = width_ * height_;
358 ref_ = new uint8_t[block_size_ + width_ + height_ + 1];
379 int height_, log2height member in class:__anon13007::SubpelVarianceTest
[all...]
/external/chromium_org/third_party/webrtc/tools/converter/
H A Dconverter.cc32 height_(height) {
86 width_, height_);
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp217 WindowRectangle (int left_, int bottom_, int width_, int height_) argument
221 , height (height_)
/external/chromium_org/android_webview/browser/
H A Dhardware_renderer.h79 int height_; member in class:android_webview::HardwareRenderer
/external/chromium_org/media/base/
H A Daudio_video_metadata_extractor.h81 int height_; member in class:media::AudioVideoMetadataExtractor
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c46 int width_, height_; // dimension member in struct:__anon13301
101 if (p->row_ >= 0 && p->row_ < p->height_ - 1) {
235 p->height_ = height;
266 for (; p.row_ < p.height_; ++p.row_) {
/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Ddeflickering_test.cc60 width_, height_,
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
H A Dpreview_panel.js26 this.height_ = 0;
169 this.height_ = this.height_ || this.element_.clientHeight;
170 return this.height_;
/external/webp/src/utils/
H A Dquant_levels_dec.c46 int width_, height_; // dimension member in struct:__anon33398
101 if (p->row_ >= 0 && p->row_ < p->height_ - 1) {
235 p->height_ = height;
266 for (; p.row_ < p.height_; ++p.row_) {
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dtimeline_graph_view.js470 this.height_ = 0;
514 this.height_ = height;
591 var maxLabels = 1 + this.height_ / minLabelSpacing;
658 var y = Math.round(this.height_ * i / (this.labels_.length - 1));
672 var bottom = this.height_ - 1;
724 var step = (this.height_ - 1) / (this.labels_.length - 1);
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
H A Dearth.cc283 int height_; member in class:Planet
378 height_ = 0;
406 int dy = height_ / num_regions_;
426 float min_dim = width_ < height_ ? width_ : height_;
427 float offset_x = width_ < height_ ? 0 : (width_ - min_dim) * 0.5f;
428 float offset_y = width_ < height_ ? (height_ - min_dim) * 0.5f : 0;
675 position.size().height() == height_)
863 height_
[all...]
/external/chromium_org/third_party/libwebp/demux/
H A Ddemux.c45 int width_, height_; member in struct:Frame
254 frame->height_ = features.height;
313 frame->height_ = 1 + ReadLE24s(mem);
319 if (frame->width_ * (uint64_t)frame->height_ >= MAX_IMAGE_AREA) {
447 if (!dmux->is_ext_format_ && frame->width_ > 0 && frame->height_ > 0) {
450 dmux->canvas_height_ = frame->height_;
603 if (frame->width_ <= 0 || frame->height_ <= 0) return 0;
617 if (frame->width_ != canvas_width || frame->height_ != canvas_height) {
623 if (frame->height_ + frame->y_offset_ > canvas_height) return 0;
663 if (f->width_ <= 0 || f->height_ <
[all...]
/external/openfst/src/include/fst/script/
H A Ddraw-impl.h60 title_(title), width_(width), height_(height), portrait_(portrait),
81 Print(height_);
220 float height_; member in class:fst::FstDrawer
/external/webp/src/demux/
H A Ddemux.c45 int width_, height_; member in struct:Frame
254 frame->height_ = features.height;
313 frame->height_ = 1 + ReadLE24s(mem);
319 if (frame->width_ * (uint64_t)frame->height_ >= MAX_IMAGE_AREA) {
447 if (!dmux->is_ext_format_ && frame->width_ > 0 && frame->height_ > 0) {
450 dmux->canvas_height_ = frame->height_;
603 if (frame->width_ <= 0 || frame->height_ <= 0) return 0;
617 if (frame->width_ != canvas_width || frame->height_ != canvas_height) {
623 if (frame->height_ + frame->y_offset_ > canvas_height) return 0;
663 if (f->width_ <= 0 || f->height_ <
[all...]
/external/chromium_org/mojo/examples/sample_app/
H A Dspinning_cube.cc341 height_(0),
363 height_ = height;
398 height_ = 0;
433 glViewport(0, 0, width_, height_);
456 float aspect = static_cast<GLfloat>(width_) / static_cast<GLfloat>(height_);
/external/chromium_org/ppapi/examples/compositor/
H A Dspinning_cube.cc323 height_(0),
345 height_ = height;
387 height_ = 0;
422 glViewport(0, 0, width_, height_);
447 float aspect = static_cast<GLfloat>(width_) / static_cast<GLfloat>(height_);
/external/chromium_org/ppapi/examples/gles2_spinning_cube/
H A Dspinning_cube.cc339 height_(0),
361 height_ = height;
397 height_ = 0;
432 glViewport(0, 0, width_, height_);
454 float aspect = static_cast<GLfloat>(width_) / static_cast<GLfloat>(height_);

Completed in 626 milliseconds

12345678