Lines Matching defs:allocation
115 <li>The view gets its allocation from the parent at paint time, so it
130 entire allocation, typically a view does not. Rendering is performed by
312 * views to enable itself to render into the given allocation.
315 * @param allocation the allocated region to render into
317 public abstract void paint(Graphics g, Shape allocation);
458 * Fetches the allocation for the given child view.
466 * @param a the allocation to this view
467 * @return the allocation to the child
691 * @param a the current allocation of the view
732 * @param a the current allocation of the view
773 * @param a the current allocation of the view
1030 public String getToolTipText(float x, float y, Shape allocation) {
1031 int viewIndex = getViewIndex(x, y, allocation);
1033 allocation = getChildAllocation(viewIndex, allocation);
1034 Rectangle rect = (allocation instanceof Rectangle) ?
1035 (Rectangle)allocation : allocation.getBounds();
1037 return getView(viewIndex).getToolTipText(x, y, allocation);
1050 * @param allocation current allocation of the View.
1055 public int getViewIndex(float x, float y, Shape allocation) {
1057 Shape childAllocation = getChildAllocation(counter, allocation);
1131 * @param a the current allocation of the view
1199 * @param a the current allocation of the view
1225 * @param a the current allocation of the view