Searched defs:total_height (Results 1 - 5 of 5) sorted by relevance

/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_container_view.cc25 int total_height; local
26 GetVerticalOverlap(&total_height);
27 return gfx::Size(0, total_height);
36 int child_height = child->total_height();
H A Dinfobar.h53 int total_height() const { return arrow_height_ + bar_height_; } function in class:InfoBar
H A Dinfobar_container.cc64 int InfoBarContainer::GetVerticalOverlap(int* total_height) { argument
65 // Our |total_height| is the sum of the preferred heights of the InfoBars
74 next_infobar_y += infobar->total_height();
77 if (total_height)
78 *total_height = next_infobar_y + vertical_overlap;
/external/linux-tools-perf/util/
H A Dsvghelper.c34 static u64 total_height; variable
96 total_height = (1 + rows + cpu2slot(cpus)) * SLOT_MULT;
98 fprintf(svgfile, "<svg width=\"%i\" height=\"%" PRIu64 "\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\">\n", svg_page_width, total_height);
488 time2pixels(i), SLOT_MULT/2, time2pixels(i), total_height, color, color, color, thickness);
/external/qemu/
H A Dconsole.c163 int total_height; member in struct:TextConsole
561 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell));
562 for(y = 0; y < s->total_height; y++) {
611 y1 = (s->y_base + y) % s->total_height;
614 y2 += s->total_height;
640 y1 = (s->y_base + s->y) % s->total_height;
643 y += s->total_height;
684 if (++y1 == s->total_height)
704 if (++s->y_displayed == s->total_height)
710 if (i > s->total_height
[all...]

Completed in 74 milliseconds