HomeSort by relevance Sort by last modified time
    Searched refs:allocation (Results 51 - 75 of 287) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/gtk/
find_bar_gtk.cc 378 if (xposition != widget()->allocation.x)
427 std::max(0, widget()->parent->allocation.width - (ltr ? 15 : 0)), 0);
737 GtkAllocation* allocation,
822 widget->allocation.x,
823 widget->allocation.y,
824 widget->allocation.width - padding,
825 widget->allocation.height
843 if (bar->container_width_ != widget->allocation.width ||
844 bar->container_height_ != widget->allocation.height) {
846 widget->allocation.width, widget->allocation.height, FRAME_MASK)
    [all...]
theme_install_bubble_view_gtk.cc 141 gint parent_width = parent_->allocation.width;
142 gint parent_height = parent_->allocation.height;
166 gfx::Rect inner_rect(widget_->allocation);
nine_box.cc 112 int dst_width = dst->allocation.width;
113 int dst_height = dst->allocation.height;
126 // For widgets that have their own window, the allocation (x,y) coordinates
131 cairo_translate(cr, dst->allocation.x, dst->allocation.y);
203 int width = widget->allocation.width;
204 int height = widget->allocation.height;
info_bubble_gtk.cc 284 window_->allocation.width);
303 window_->allocation.width, window_->allocation.height,
329 window_->allocation.width + kArrowX;
462 window_->allocation.width, window_->allocation.height,
473 GtkAllocation* allocation) {
533 GtkAllocation* allocation) {
slide_animator_gtk.cc 144 GtkAllocation* allocation,
148 child, 0, -allocation->height);
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_popup_gtk.cc 199 GtkAllocation allocation; local
200 gtk_widget_get_allocation(host_->view()->native_view(), &allocation);
201 return gfx::Rect(allocation);
  /external/chromium_org/chrome/browser/ui/gtk/
first_run_dialog.cc 42 GtkAllocation* allocation,
51 allocation->width - req.width - ui::kContentAreaSpacing :
57 int y = allocation->height / 2 - req.height / 2;
tab_contents_container_gtk.cc 195 GtkFloatingContainer* floating_container, GtkAllocation* allocation,
211 g_value_set_int(&value, allocation->width - requisition.width);
215 int child_y = std::max(allocation->height - requisition.height, 0);
rounded_window.cc 208 GtkAllocation allocation; local
209 gtk_widget_get_allocation(widget, &allocation);
211 if (data->expected_width != allocation.width ||
212 data->expected_height != allocation.height) {
213 data->expected_width = allocation.width;
214 data->expected_height = allocation.height;
249 // reshape a window by whether its allocation has changed so force it to reset
status_bubble_gtk.cc 101 GtkAllocation allocation;
102 gtk_widget_get_allocation(parent, &allocation);
103 int desired_width = allocation.width;
339 GtkAllocation allocation; local
340 gtk_widget_get_allocation(label_.get(), &allocation);
341 start_width_ = allocation.width;
slide_animator_gtk.cc 146 GtkAllocation* allocation,
150 child, 0, -allocation->height);
gtk_util.cc 535 GtkAllocation allocation;
536 gtk_widget_get_allocation(widget, &allocation);
537 return allocation.width - bounds.x() - bounds.width();
544 GtkAllocation allocation;
545 gtk_widget_get_allocation(widget, &allocation);
546 return allocation.width - bounds.x();
551 GtkAllocation allocation; local
552 gtk_widget_get_allocation(widget, &allocation);
553 return allocation.width - x;
790 GtkAllocation allocation; local
836 GtkAllocation allocation; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/tab_contents/
chrome_web_contents_view_delegate_gtk.cc 172 GtkWidget* floating_container, GtkAllocation* allocation) {
186 int child_x = std::max((allocation->width - requisition.width) / 2, 0);
191 int child_y = std::max((allocation->height - requisition.height) / 2, 0);
  /external/chromium_org/cc/output/
output_surface.cc 76 WebKit::WebGraphicsMemoryAllocation allocation) {
78 allocation.bytesLimitWhenVisible,
79 ConvertPriorityCutoff(allocation.priorityCutoffWhenVisible),
80 allocation.bytesLimitWhenNotVisible,
81 ConvertPriorityCutoff(allocation.priorityCutoffWhenNotVisible),
83 bool discard_backbuffer = !allocation.suggestHaveBackbuffer;
  /external/chromium_org/content/common/gpu/
image_transport_surface_mac.cc 78 // Tracks the current buffer allocation state.
211 bool IOSurfaceImageTransportSurface::SetBackbufferAllocation(bool allocation) {
212 if (backbuffer_suggested_allocation_ == allocation)
214 backbuffer_suggested_allocation_ = allocation;
219 void IOSurfaceImageTransportSurface::SetFrontbufferAllocation(bool allocation) {
220 if (frontbuffer_suggested_allocation_ == allocation)
222 frontbuffer_suggested_allocation_ = allocation;
texture_image_transport_surface.cc 121 bool TextureImageTransportSurface::SetBackbufferAllocation(bool allocation) {
123 if (backbuffer_suggested_allocation_ == allocation)
125 backbuffer_suggested_allocation_ = allocation;
137 void TextureImageTransportSurface::SetFrontbufferAllocation(bool allocation) {
138 if (frontbuffer_suggested_allocation_ == allocation)
140 frontbuffer_suggested_allocation_ = allocation;
gpu_memory_manager.cc 193 // Never go below the default allocation
487 uint64 allocation = GetMinimumClientAllocation(); local
488 allocation += std::min(bytes_required - GetMinimumClientAllocation(),
490 allocation += std::min(bytes_nicetohave - bytes_required,
492 allocation = std::min(allocation,
494 return allocation;
515 // - giving every client the minimum allocation
583 // visible clients, tracking the largest allocation and the total allocation
770 GpuMemoryAllocation allocation; local
801 GpuMemoryAllocation allocation; local
    [all...]
gpu_memory_manager_unittest.cc 46 GpuMemoryAllocation allocation; member in struct:content::ClientAssignmentCollector::ClientMemoryStat
58 const GpuMemoryAllocation& allocation) {
60 client_memory_stats_for_last_manage_[client].allocation = allocation;
248 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer
250 // Expect memory allocation to be shared according to share groups for stubs
278 // Expect memory allocation to set suggest_have_frontbuffer/backbuffer
280 // Expect memory allocation to be shared according to share groups for stubs
400 // Expect memory allocation of the stubs without surface to share memory
401 // allocation with the most visible stub in share group
    [all...]
  /external/chromium_org/v8/test/mjsunit/
allocation-folding.js 49 // Test allocation folding of doubles.
65 // Test allocation folding of doubles into non-doubles.
81 // Test allocation folding over a branch.
  /external/valgrind/main/massif/tests/
ignoring.post.exp 40 99.22% (1,024B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
48 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
61 98.46% (512B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
87 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
102 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
117 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
132 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
147 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
163 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
183 97.96% (768B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc
    [all...]
peak2.post.exp 42 86.32% (1,616B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
54 89.33% (3,216B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
66 90.39% (4,816B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
78 90.93% (6,416B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
90 91.26% (8,016B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
102 91.48% (9,616B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
114 91.63% (11,216B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
126 91.75% (12,816B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
138 91.85% (14,416B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
150 91.92% (16,016B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc
    [all...]
  /external/chromium/chrome/browser/tab_contents/
tab_contents_view_gtk.cc 192 out->SetRect(x + expanded_->allocation.x, y + expanded_->allocation.y,
414 GtkAllocation* allocation) {
415 int width = allocation->width;
416 int height = allocation->height;
433 GtkWidget* floating_container, GtkAllocation* allocation) {
447 int child_x = std::max((allocation->width - requisition.width) / 2, 0);
452 int child_y = std::max((allocation->height - requisition.height) / 2, 0);
  /external/chromium_org/v8/test/mjsunit/compiler/
alloc-object.js 30 // Test that inlined object allocation works for different layouts of
43 // Test adding a new property after allocation was inlined.
49 // Test changing the prototype after allocation was inlined.
85 // Test inlined allocation while slack tracking is still in progress.
  /external/v8/test/mjsunit/compiler/
alloc-object.js 30 // Test that inlined object allocation works for different layouts of
43 // Test adding a new property after allocation was inlined.
49 // Test changing the prototype after allocation was inlined.
85 // Test inlined allocation while slack tracking is still in progress.
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.cc 337 GtkAllocation allocation; local
338 gtk_widget_get_allocation(event_box_.get(), &allocation);
339 return allocation.height - kBookmarkBarMinimumHeight;
532 GtkAllocation allocation; local
533 gtk_widget_get_allocation(overflow_button_, &allocation);
534 extra_space = allocation.width;
629 GtkAllocation allocation; local
630 gtk_widget_get_allocation(bookmark_toolbar_.get(), &allocation);
631 int total_width = allocation.width - 2;
750 GtkAllocation* allocation) {
860 GtkAllocation allocation; local
1465 GtkAllocation allocation; local
    [all...]

Completed in 9203 milliseconds

1 23 4 5 6 7 8 91011>>