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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk.cc 428 GtkAllocation allocation; local
429 gtk_widget_get_allocation(window_, &allocation);
434 allocation.width,
435 allocation.height);
452 GtkAllocation allocation; local
453 gtk_widget_get_allocation(window_, &allocation);
455 actual_frame_style_, allocation.width, allocation.height,
493 GtkAllocation allocation; local
494 gtk_widget_get_allocation(window_, &allocation);
500 GtkAllocation allocation; local
515 GtkAllocation allocation; local
672 GtkAllocation allocation; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
browser_toolbar_gtk.cc 528 GtkAllocation allocation; local
529 gtk_widget_get_allocation(widget, &allocation);
531 gfx::Rect right(allocation.x + allocation.width - kCornerWidth,
532 allocation.y - kShadowThickness,
534 allocation.height + kShadowThickness);
535 gfx::Rect left(allocation.x - kShadowThickness,
536 allocation.y - kShadowThickness,
538 allocation.height + kShadowThickness);
567 allocation.x + allocation.width
613 GtkAllocation allocation; local
    [all...]
nine_box.cc 124 GtkAllocation allocation; local
125 gtk_widget_get_allocation(dst, &allocation);
126 int w = allocation.width;
127 int h = allocation.height;
151 // For widgets that have their own window, the allocation (x,y) coordinates
156 cairo_translate(cr, allocation.x, allocation.y);
183 GtkAllocation allocation; local
184 gtk_widget_get_allocation(widget, &allocation);
185 int width = allocation.width
    [all...]
custom_button.cc 103 GtkAllocation allocation; local
104 gtk_widget_get_allocation(widget, &allocation);
105 cairo_translate(cairo_context, allocation.x, allocation.y);
109 cairo_translate(cairo_context, allocation.width, 0.0f);
117 int y = allocation.height - pixbuf->Height();
314 GtkAllocation allocation; local
315 gtk_widget_get_allocation(widget_.get(), &allocation);
316 return allocation;
slide_animator_gtk.h 96 GtkAllocation* allocation,
gtk_chrome_link_button.cc 167 GtkAllocation allocation; local
168 gtk_widget_get_allocation(widget, &allocation);
173 allocation.x, allocation.y,
174 allocation.width, allocation.height);
find_bar_gtk.cc 384 GtkAllocation allocation; local
385 gtk_widget_get_allocation(widget(), &allocation); local
386 if (xposition != allocation.x)
597 GtkAllocation allocation; local
598 gtk_widget_get_allocation(container_, &allocation);
599 return allocation.width;
763 GtkAllocation* allocation,
876 GtkAllocation allocation; local
    [all...]
  /frameworks/rs/
rsAllocation.cpp 30 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages,
44 void Allocation::operator delete(void* ptr) {
46 Allocation *a = (Allocation*) ptr;
51 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages,
53 // Allocation objects must use allocator specified by the driver
54 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Allocation), 0);
57 rsc->setError(RS_ERROR_FATAL_DRIVER, "Couldn't allocate memory for Allocation");
    [all...]