Searched defs:region (Results 26 - 50 of 57) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java226 * Gets a SynthStyle for the specified region of the specified component.
231 * @param region Identifies the region of the specified component
234 public static SynthStyle getStyle(JComponent c, Region region) { argument
235 return getStyleFactory().getStyle(c, region);
H A DSynthTreeUI.java180 private SynthContext getContext(JComponent c, Region region) { argument
181 return getContext(c, region, getComponentState(c, region));
184 private SynthContext getContext(JComponent c, Region region, int state) { argument
186 region, cellStyle, state);
189 private int getComponentState(JComponent c, Region region) { argument
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java2313 String region = base.getRegion();
2320 if (region.equals("NO") && variant.equals("NY")) {
2328 List<Locale> tmpList = getDefaultList("nb", script, region, variant);
2342 List<Locale> nynorskList = getDefaultList("nn", script, region, variant);
2351 if (script.length() == 0 && region.length() > 0) {
2354 if (region.equals("TW") || region.equals("HK") || region.equals("MO")) {
2356 } else if (region.equals("CN") || region
2373 getDefaultList(String language, String script, String region, String variant) argument
[all...]
H A DLocale.java68 * or cultural region. An operation that requires a <code>Locale</code> to perform
73 * region, or culture.
117 * <dt><a name="def_region"/><b>country (region)</b></dt>
120 * You can find a full list of valid country and region codes in the
121 * IANA Language Subtag Registry (search for "Type: region"). The
122 * country (region) field is case insensitive, but
125 * <dd>Well-formed country/region values have
143 * region subtags. You can find a full list of valid variant codes
274 * about itself. Use <code>getCountry</code> to get the country (or region)
389 * <h5>Three-letter language/country(region) code
2376 setRegion(String region) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriter.java1417 * @param region a <code>Rectangle</code> that will be used to clip
1431 * @exception IllegalArgumentException if <code>region</code> is
1437 Rectangle region) throws IOException {
1446 * <p> The destination region is specified in the
1448 * boundaries and the region supplied to
1488 * <li> the intersected region does not contain at least one pixel.
1509 * <p> The destination region is specified in the
1511 * boundaries and the region supplied to
1549 * <li> the intersected region does not contain at least one pixel.
1436 prepareReplacePixels(int imageIndex, Rectangle region) argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp591 StableMemoryChecker(const void* region, jint size) { argument
592 _region = (address) region;
603 void set_region(const void* region) { _region = (address) region; } argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp86 // Is this region node unreachable from root?
136 enum { Region, // Control input is the Phi's region.
165 RegionNode* region() const { Node* r = in(Region); assert(!r || r->is_Region(), ""); return (RegionNode*)r; } function in class:PhiNode
H A Difnode.cpp114 if( phi->region() != r ) return NULL;
224 // Make a region merging constants and a region merging the rest
423 // First, remove region's dead users.
662 // leading to a region that merges one of this ifs control
696 // Identify which proj goes to the region and which continues on
697 RegionNode* region = otherproj->unique_out()->as_Region(); local
702 if (success == NULL && proj->outcnt() == 1 && proj->unique_out() == region) {
710 if (success != NULL && fail != NULL && !region->has_phi()) {
787 // phi->region
[all...]
H A DcallGenerator.cpp672 RegionNode* region = new (kit.C) RegionNode(3); local
673 region->init_req(1, kit.control());
674 region->init_req(2, slow_map->control());
675 kit.set_control(gvn.transform(region));
676 Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
679 kit.merge_memory(slow_map->merged_memory(), region, 2);
692 Node* phi = PhiNode::make(region, m, t);
921 RegionNode* region = new (kit.C) RegionNode(3); local
922 region->init_req(1, kit.control());
923 region
[all...]
H A Dcallnode.cpp1387 break; // hit a region, return it
1504 bool AbstractLockNode::find_unlocks_for_region(const RegionNode* region, LockNode* lock, argument
1508 for (int i = 1; i < (int)region->req(); i++) {
1509 Node *in_node = next_control(region->in(i));
1636 // We weren't able to find any opportunities but the region this
1639 // region simplification has occurred.
H A Dcfgnode.cpp69 static Node *merge_region(RegionNode *region, PhaseGVN *phase) { argument
70 if( region->Opcode() != Op_Region ) // Do not do to LoopNodes
75 uint rreq = region->req();
77 Node *r = region->in(i);
78 if( r && r->Opcode() == Op_Region && // Found a region?
80 r != region && // Avoid stupid situations
81 r->outcnt() == 2 ) { // Self user and 'region' user only?
84 if (region->has_phi()) {
88 igvn->hash_delete( region );
89 progress = region; // Makin
212 check_if_clipping( const RegionNode *region, IfNode * &bot_if, IfNode * &top_if ) argument
781 Node *region = in(0); local
1059 Node *region = in(0); local
1100 Node* region = in(0); local
1222 Node *region = phi->in(0); local
1278 RegionNode *region = (RegionNode*)phi->in(0); local
[all...]
H A Descape.cpp2310 // for different memory slices. Search all Phis for this region.
2312 Node* region = orig_phi->in(0); local
2313 for (DUIterator_Fast imax, i = region->fast_outs(imax); i < imax; i++) {
2314 Node* phi = region->fast_out(i);
H A Dloopopts.cpp39 Node *PhaseIdealLoop::split_thru_phi( Node *n, Node *region, int policy ) { argument
47 assert(region->is_Region(), "");
56 phi = new (C) PhiNode(region, type, NULL, iid, index, offset);
58 phi = PhiNode::make_blank(region, n);
61 for (uint i = 1; i < region->req(); i++) {
64 if (region->in(i) == C->top()) {
70 if (n->in(0) == region)
71 x->set_req( 0, region->in(i) );
74 if (in->is_Phi() && in->in(0) == region)
94 singleton &= region
726 merge_point_too_heavy(Compile* C, Node* region) argument
744 merge_point_safe(Node* region) argument
[all...]
H A Dparse1.cpp649 // Add new region for back branches.
650 int edges = block->pred_count() - block->preds_parsed() + 1; // +1 for original region
718 RegionNode* region = new (C) RegionNode(1); local
719 record_for_igvn(region);
720 gvn().set_type_bottom(region);
721 _exits.set_control(region);
724 Node* iophi = new (C) PhiNode(region, Type::ABIO);
725 Node* memphi = new (C) PhiNode(region, Type::MEMORY, TypePtr::BOTTOM);
740 Node* ret_phi = new (C) PhiNode(region, ret_type);
900 Node* region local
1812 Node* region = map->control(); local
1867 Node* region = control(); local
[all...]
H A Dparse2.cpp177 Node *region = new (C) RegionNode(3); // 2 results local
178 record_for_igvn(region);
179 region->init_req(1, iffalse);
180 region->init_req(2, iftrue );
181 _gvn.set_type(region, Type::CONTROL);
182 region = _gvn.transform(region);
183 set_control (region);
184 return region;
933 // phi->region
[all...]
H A Dloopnode.cpp46 this->as_Phi()->region()->is_CountedLoop() &&
47 this->as_Phi()->region()->as_CountedLoop()->phi() == this) {
333 if (incr->as_Phi()->region() != x || incr->req() != 3)
371 if (phi->region() != x)
1082 Node* region = phi->in(0); local
1083 assert(n_ctrl == NULL || n_ctrl == region, "ctrl parameter must be region");
1084 if (region && region != C->top()) {
1087 Node* use_c = region
[all...]
H A Dmacro.cpp103 Node* PhaseMacroExpand::opt_bits_test(Node* ctrl, Node* region, int edge, Node* word, int mask, int bits, bool return_fast_path) { argument
122 region->init_req(edge, slow_taken); // Capture slow-control
125 region->init_req(edge, fast_taken); // Capture fast-control
253 // checks if the store done to a different from the value's region.
268 "missing region check in G1 post barrier");
391 Node* region = mem->in(0); local
392 for (DUIterator_Fast kmax, k = region->fast_outs(kmax); k < kmax; k++) {
393 Node* phi = region->fast_out(k);
1140 // Plug the failing-too-big test into the slow-path region
1218 // Plug the failing-heap-space-need-gc test into the slow-path region
2046 Node *region; local
2284 Node *region; local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp53 // The SplitInfo class holds the information needed to 'split' a source region
55 // all the live data in a region is copied to a single destination space (e.g.,
56 // everything live in a region in eden is copied entirely into the old gen).
59 // requires finding a region that does not contain a partial object (i.e., no
60 // live object crosses the region boundary) somewhere near the last object that
62 // region, splitting is necessary for predictable behavior.
64 // A region is always split at the end of the partial object. This avoids
71 // Split points are identified during the summary phase, when region
80 // the partial object on the split region will be copied across a destination
81 // region boundar
313 set_source_region(size_t region) argument
605 ParallelCompactData::region(size_t region_idx) const function in class:ParallelCompactData
612 ParallelCompactData::region(const RegionData* const region_ptr) const function in class:ParallelCompactData
662 region_to_addr(size_t region, size_t offset) const argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSSoundbank.java1023 for (DLSRegion region : instrument.regions) {
1024 for (DLSModulator modulator : region.getModulators()) {
1043 for (DLSRegion region: instrument.regions)
1044 writeRegion(lrgn, region, version);
1094 private void writeRegion(RIFFWriter writer, DLSRegion region, int version) argument
1105 rgnh.writeUnsignedShort(region.keyfrom);
1106 rgnh.writeUnsignedShort(region.keyto);
1107 rgnh.writeUnsignedShort(region.velfrom);
1108 rgnh.writeUnsignedShort(region.velto);
1109 rgnh.writeUnsignedShort(region
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java501 public Region region; field in class:HierarchicalLayoutManager.Segment
941 s.region = new Region();
942 s.region.minOrderNumber = s.orderNumber;
943 s.region.segments.add(s);
944 s.region.d = s.d;
945 regions.add(s.region);
954 Region r1 = s.region;
955 Region r2 = other.region;
965 tempS.region = r1;
976 tempS.region
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java142 public abstract void redrawRegion(Rectangle2D region, argument
1359 * print opaque region of transparent image
H A DRasterPrinterJob.java298 * "region" is an area at as a high a resolution as possible.
303 Rectangle2D region; // Area of page to repaint field in class:RasterPrinterJob.GraphicsState
306 double sx; // X scale from region to device resolution
307 double sy; // Y scale from region to device resolution
406 * of part of page represented by the region in that state
410 Rectangle2D region, double sx, double sy) {
414 gstate.region = region;
2019 gstate.region,
409 saveState(AffineTransform at, Shape clip, Rectangle2D region, double sx, double sy) argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java107 private Region region; field in class:LWComponentPeer
459 static final Region computeVisibleRect(LWComponentPeer c, Region region) { argument
463 region = region.getTranslatedRegion(r.x, r.y);
464 region = region.getIntersection(p.getRegion());
465 region = region.getIntersection(p.getContentSize());
466 region = p.cutChildren(region,
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWComponentPeer.java1059 Region region);
1058 setRectangularShape(int lox, int loy, int hix, int hiy, Region region) argument
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java328 public void constrain(int x, int y, int w, int h, Region region) { argument
350 if (region != null) {
351 region = region.getScaledRegion(scaleX, scaleY);
352 region = region.getTranslatedRegion(x, y);
353 c = c.getIntersection(region);
1741 * Sets the background color in this context used for clearing a region.
1757 * Returns the background color used for clearing a region.
2505 * in order to draw the given image into the given clipping region
2722 drawTranslatedRenderedImage(RenderedImage img, Rectangle region, int i2uTransX, int i2uTransY) argument
[all...]

Completed in 149 milliseconds

123