Searched defs:Region (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DRegion.java42 * to bind styles based on the name of a <code>Region</code>.
51 * <code>Region</code> you would use <code>SplitPane</code>.
55 * public SynthStyle getStyle(JComponent c, Region id) {
56 * if (id == Region.SPLIT_PANE) {
74 public class Region { class
82 * To bind a style to this <code>Region</code> use the name
85 public static final Region ARROW_BUTTON = new Region("ArrowButton", false);
88 * Button region. To bind a style to this <code>Region</code> use the name
91 public static final Region BUTTO
506 private Region(String name, boolean subregion) { method in class:Region
525 protected Region(String name, String ui, boolean subregion) { method in class:Region
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.hpp66 enum Region { noRegion, classLoaderRegion, extraRegion, maxRegion }; enum in class:ThreadProfilerMark
68 ThreadProfilerMark(Region);
73 Region _r;
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp69 enum { Region, // Generally points to self. enumerator in enum:RegionNode::__anon302
79 const Node* r = _in[Region];
136 enum { Region, // Control input is the Phi's region. enumerator in enum:PhiNode::__anon303
165 RegionNode* region() const { Node* r = in(Region); assert(!r || r->is_Region(), ""); return (RegionNode*)r; }
168 // The node is a real phi if _in[0] is a Region node.
169 DEBUG_ONLY(const Node* r = _in[Region];)
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java37 * A rectangular Region is allowed to have a null band list in which
63 public class Region { class
68 * Immutable Region.
70 private static final class ImmutableRegion extends Region {
83 public static final Region EMPTY_REGION = new ImmutableRegion(0, 0, 0, 0);
84 public static final Region WHOLE_REGION = new ImmutableRegion(
156 protected Region(int lox, int loy, int hix, int hiy) { method in class:Region
164 * Returns a Region object covering the pixels which would be
175 public static Region getInstance(Shape s, AffineTransform at) {
180 * Returns a Region objec
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java501 public Region region;
510 private static class Region { class in class:HierarchicalLayoutManager
515 public HashSet<Region> succs = new HashSet<Region>(4);
516 public HashSet<Region> preds = new HashSet<Region>(4);
518 private static final Comparator<Region> regionComparator = new Comparator<Region>() {
520 public int compare(Region r1, Region r
[all...]

Completed in 258 milliseconds