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...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IsObjectTest.java 20 import android.renderscript.Allocation;
30 private Allocation mIn;
31 private Allocation mOut;
35 Allocation allocation; field in class:IsObjectTest
48 allocation = Allocation.createTyped(mRS, type);
66 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
86 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
106 mItem.allocation = allocation
    [all...]
SetObjectTest.java 20 import android.renderscript.Allocation;
29 private Allocation mIn;
30 private Allocation mOut;
34 Allocation allocation; field in class:SetObjectTest
47 allocation = Allocation.createTyped(mRS, type);
65 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
85 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
104 mItem.allocation = allocation
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
menu_bar_helper.cc 30 motion->x < menu->allocation.width &&
31 motion->y < menu->allocation.height) {
134 if (x >= 0 && y >= 0 && x < button->allocation.width &&
135 y < button->allocation.height) {
slide_animator_gtk.h 96 GtkAllocation* allocation,
gtk_custom_menu_item.cc 208 int x = first_button->allocation.x;
209 int y = first_button->allocation.y;
210 int width = last_button->allocation.width + last_button->allocation.x -
211 first_button->allocation.x;
212 int height = last_button->allocation.height;
218 &current_button->allocation, hbox, "button",
253 gtk_bin_get_child(GTK_BIN(current_button))->allocation;
261 current_button->allocation.x +
262 current_button->allocation.width - half_offset)
    [all...]
fullscreen_exit_bubble_gtk.cc 87 GtkAllocation* allocation) {
94 g_value_set_int(&value, (allocation->width - bubble_size.width) / 2);
browser_toolbar_gtk.cc 478 gfx::Rect right(widget->allocation.x + widget->allocation.width -
480 widget->allocation.y - kShadowThickness,
482 widget->allocation.height + kShadowThickness);
483 gfx::Rect left(widget->allocation.x - kShadowThickness,
484 widget->allocation.y - kShadowThickness,
486 widget->allocation.height + kShadowThickness);
514 widget->allocation.x + widget->allocation.width,
515 widget->allocation.y + widget->allocation.height)
    [all...]
  /external/chromium_org/content/common/gpu/
gpu_memory_manager_client.h 24 // send it allocation information and query its properties).
35 // Sets buffer usage depending on Memory Allocation
37 const GpuMemoryAllocation& allocation) = 0;
93 // The allocation for this client, used transiently during memory policy
98 // The ideal allocation for this client for three performance levels, used
image_transport_surface_win.cc 59 // Tracks the current buffer allocation state.
160 bool PbufferImageTransportSurface::SetBackbufferAllocation(bool allocation) {
161 if (backbuffer_suggested_allocation_ == allocation)
163 backbuffer_suggested_allocation_ = allocation;
173 void PbufferImageTransportSurface::SetFrontbufferAllocation(bool allocation) {
174 if (frontbuffer_suggested_allocation_ == allocation)
176 frontbuffer_suggested_allocation_ = allocation;
  /external/clang/test/Sema/
warn-unused-function.c 52 static void cleanupMalloc(char * const * const allocation) { }
  /external/srtp/crypto/kernel/
alloc.c 4 * memory allocation and deallocation
48 /* the debug module for memory allocation */
77 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
102 debug_print(mod_alloc, "allocation failed (asked for %d bytes)\n", size);
115 #else /* we need to define our own memory allocation routines */
117 #error no memory allocation defined yet
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
dragged_view_gtk.cc 352 GtkAllocation allocation; local
353 gtk_widget_get_allocation(container_, &allocation);
354 PaintTab(i, container_, cairo_context, allocation.width);
394 GtkAllocation allocation; local
395 gtk_widget_get_allocation(widget, &allocation);
404 allocation.width - kTwiceDragFrameBorderSize,
405 allocation.height - tab_height -
423 double right_x = allocation.width - offset;
424 double bottom_y = allocation.height - offset;
441 PaintTab(i, widget, cr, allocation.width)
    [all...]
  /external/chromium/chrome/browser/automation/
testing_automation_provider_gtk.cc 46 *bounds = gfx::Rect(widget->allocation.width, widget->allocation.height);
  /external/valgrind/main/memcheck/tests/
origin2-not-quite.stderr.exp 6 Uninitialised value was created by a heap allocation
16 Uninitialised value was created by a heap allocation
26 Uninitialised value was created by a stack allocation
origin3-no.stderr.exp 6 Uninitialised value was created by a heap allocation
16 Uninitialised value was created by a stack allocation
24 Uninitialised value was created by a heap allocation
34 Uninitialised value was created by a heap allocation
44 Uninitialised value was created by a heap allocation
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.cc 72 // Encapsulates a TURN allocation.
73 // The object is created when an allocation request is received, and then
75 // (via HandleChannelData) for this allocation when received by the server.
77 class TurnServer::Allocation : public talk_base::MessageHandler,
80 Allocation(TurnServer* server_,
84 virtual ~Allocation();
98 sigslot::signal1<Allocation*> SignalDestroyed;
146 // allocation, and self-deletes when its lifetime timer expires.
166 // allocation, and self-deletes when its lifetime timer expires.
296 // This is a channel message; let the allocation handle it
297 Allocation* allocation = FindAllocation(&conn); local
321 Allocation* allocation = FindAllocation(conn); local
415 Allocation* allocation = FindAllocation(conn); local
525 Allocation* allocation = new Allocation(this, local
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_gtk.cc 141 GtkAllocation allocation; local
142 gtk_widget_get_allocation(expanded_.get(), &allocation);
143 out->SetRect(x + allocation.x, y + allocation.y,
400 GtkAllocation* allocation) {
401 int width = allocation->width;
402 int height = allocation->height;

Completed in 815 milliseconds

12 3 4 5 6 7 8 91011>>