/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | EditableView.java | 72 public void paint(Graphics g, Shape allocation) { argument 94 super.paint(g, allocation);
|
H A D | ListView.java | 69 * @param allocation the allocated region to render into 72 public void paint(Graphics g, Shape allocation) { argument 73 super.paint(g, allocation); 74 Rectangle alloc = allocation.getBounds(); 82 alloc = getInsideAllocation(allocation);
|
H A D | NoFramesView.java | 60 * @param allocation the allocated region to render into 64 public void paint(Graphics g, Shape allocation) { argument 74 super.paint(g, allocation);
|
H A D | BlockView.java | 276 * @param allocation the allocated region to render into 279 public void paint(Graphics g, Shape allocation) { argument 280 Rectangle a = (Rectangle) allocation;
|
H A D | FrameView.java | 149 public void paint(Graphics g, Shape allocation) { argument 157 super.paint(g, allocation); 362 * @param a the current allocation of the view
|
H A D | ImageView.java | 255 public String getToolTipText(float x, float y, Shape allocation) { argument
|
H A D | TableView.java | 138 Rectangle allocation = new Rectangle(); 140 allocation.setBounds(alloc); 141 childAllocation(i, allocation); 144 v = ((RowView)v).findViewAtPoint(x, y, allocation); 146 alloc.setBounds(allocation); 714 * @param a the allocation to the table on entry, and the 715 * allocation of the view containing the position on exit 770 * @param allocation the allocated region to render into 773 public void paint(Graphics g, Shape allocation) { argument 775 Rectangle a = allocation 1462 paint(Graphics g, Shape allocation) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicTextAreaUI.java | 360 * @param a the current allocation of the view 374 public void paint(Graphics g, Shape allocation) { argument
|
H A D | BasicHTML.java | 476 * @param allocation the region to render into 478 public void paint(Graphics g, Shape allocation) { argument 479 Rectangle alloc = allocation.getBounds(); 481 view.paint(g, allocation);
|
H A D | BasicTextUI.java | 985 * Gets the allocation to give the root View. Due 1197 * Fetches a View with the allocation of the associated 1427 * @param allocation the region to render into 1429 public void paint(Graphics g, Shape allocation) { argument 1431 Rectangle alloc = (allocation instanceof Rectangle) ? 1432 (Rectangle)allocation : allocation.getBounds(); 1434 view.paint(g, allocation); 1484 * Fetches the allocation for the given child view. 1487 * their location. This returns the given allocation [all...] |
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | threadLocalAllocBuffer.cpp | 64 // Publish new stats if some allocation occurred. 65 if (global_stats()->allocation() != 0) { 78 // Update allocation history if a reasonable amount of eden was allocated. 94 size_t allocation = _number_of_refills * desired_size(); local 95 double alloc_frac = allocation / (double) used; 148 // Compute the next tlab size using expected allocation amount
|
H A D | threadLocalAllocBuffer.hpp | 35 // the threads for allocation. 43 HeapWord* _top; // address after last allocation 44 HeapWord* _pf_top; // allocation prefetch watermark 45 HeapWord* _end; // allocation end (excluding alignment_reserve) 79 // Resize based on amount of allocation, etc. 137 // Record slow allocation 146 // Retire in-use tlab before allocation of a new tlab 225 size_t allocation() { function in class:GlobalTLABStats
|
H A D | allocation.cpp | 26 #include "memory/allocation.hpp" 27 #include "memory/allocation.inline.hpp" 62 // new(size) sets allocation type RESOURCE_AREA. 80 // Set allocation type in the resource object 81 uintptr_t allocation = (uintptr_t)res; local 82 assert((allocation & allocation_mask) == 0, "address should be aligned to 4 bytes at least"); 83 assert(type <= allocation_mask, "incorrect allocation type"); 85 resobj->_allocation_t[0] = ~(allocation + type); 349 // clear out this chunk (to detect allocation bugs) 709 fatal("allocation bu [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | FlowView.java | 250 * @param a the current allocation of the view 264 * @param a the current allocation of the view 278 * @param a the current allocation of the view 363 * @param alloc the current allocation of the view inside of the insets. 389 * @param alloc the current allocation of the view inside of the insets. 786 * @param a the current allocation of the view 808 * @param allocation the allocated region to render into 811 public void paint(Graphics g, Shape allocation) { argument 849 * @param alloc the parent's allocation on entry, which should 850 * be changed to the child's allocation o [all...] |
H A D | BoxView.java | 222 * If a child changed its requirements and the allocation 230 * @param a the current allocation of the view 269 * need an allocation. 409 * @param allocation the allocated region to render into 412 public void paint(Graphics g, Shape allocation) { argument 413 Rectangle alloc = (allocation instanceof Rectangle) ? 414 (Rectangle)allocation : allocation.getBounds(); 439 * Fetches the allocation for the given child view. 446 * @param a the allocation t [all...] |
H A D | View.java | 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); argument 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 o 1030 getToolTipText(float x, float y, Shape allocation) argument 1055 getViewIndex(float x, float y, Shape allocation) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JEditorPane.java | 2230 * @param a the current allocation of the view 2245 public void paint(Graphics g, Shape allocation) { argument
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | memnode.cpp | 28 #include "memory/allocation.inline.hpp" 129 AllocateNode* alloc = proj_in->as_Initialize()->allocation(); 360 // an allocation it wants to look past. 464 // Otherwise, one is an allocation and the other a pre-existing value. 465 if (a1 == NULL && a2 == NULL) { // neither an allocation 469 } else if (a1 != NULL) { // one allocation a1 472 } else { //(a2 != NULL) // one allocation a2 550 AllocateNode* st_alloc = st_init->allocation(); 565 // of this load dominates the store's allocation. 576 // the same allocation w 1187 AllocateNode* allocation = NULL; local [all...] |
H A D | graphKit.cpp | 581 if (failing()) { stop(); return; } // exception allocation might fail 627 // allocation time and code size, by drastically reducing the number 730 // should help register allocation time and cut down on the size 753 // should help register allocation time and cut down on the size 832 // should help register allocation time and cut down on the size 1134 // Special-case a fresh allocation to avoid building nodes: 1143 // Special-case a fresh allocation to avoid building nodes: 2960 // This two-faced routine is useful because allocation sites 3009 // a normal slow-call doesn't change i_o, but an allocation does 3018 assert(init ->allocation() 3352 AllocateNode* InitializeNode::allocation() { function in class:InitializeNode [all...] |
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | gtk2_interface.h | 429 GtkAllocation allocation; member in struct:_GtkWidget
|