Searched refs:origin (Results 26 - 50 of 84) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicToolBarUI.java952 protected void dragTo(Point position, Point origin) argument
966 Point global = new Point(origin.x+ position.x,
967 origin.y+position.y);
1002 protected void floatAt(Point position, Point origin) argument
1013 Point global = new Point(origin.x+ position.x,
1014 origin.y+position.y);
1162 Point origin = null; field in class:BasicToolBarUI.Handler
1177 if (origin == null)
1178 origin = evt.getComponent().getLocationOnScreen();
1179 floatAt(position, origin);
1326 protected Point origin = null; field in class:BasicToolBarUI.DockingListener
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteComponentRaster.java88 * The Raster's upper left corner is origin and it is the same
93 * @param origin The Point that specified the origin.
95 public ByteComponentRaster(SampleModel sampleModel, Point origin) { argument
98 new Rectangle(origin.x,
99 origin.y,
102 origin,
108 * and DataBuffer. The Raster's upper left corner is origin and
115 * @param origin The Point that specifies the origin
117 ByteComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
149 ByteComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ByteComponentRaster parent) argument
[all...]
H A DShortComponentRaster.java88 * The Raster's upper left corner is origin and it is the same
93 * @param origin The Point that specified the origin.
95 public ShortComponentRaster(SampleModel sampleModel, Point origin) { argument
98 new Rectangle(origin.x,
99 origin.y,
102 origin,
108 * and DataBuffer. The Raster's upper left corner is origin and
115 * @param origin The Point that specifies the origin
117 ShortComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
148 ShortComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ShortComponentRaster parent) argument
[all...]
H A DByteInterleavedRaster.java81 * The Raster's upper left corner is origin and it is the same
86 * @param origin The Point that specified the origin.
88 public ByteInterleavedRaster(SampleModel sampleModel, Point origin) { argument
91 new Rectangle(origin.x,
92 origin.y,
95 origin,
101 * and DataBuffer. The Raster's upper left corner is origin and
108 * @param origin The Point that specifies the origin
110 ByteInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
186 ByteInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ByteInterleavedRaster parent) argument
[all...]
H A DBytePackedRaster.java85 * The Raster's upper left corner is origin and it is the same
90 * @param origin The Point that specified the origin.
93 Point origin) {
96 new Rectangle(origin.x,
97 origin.y,
100 origin,
106 * and DataBuffer. The Raster's upper left corner is origin and
112 * @param origin The Point that specifies the origin
92 BytePackedRaster(SampleModel sampleModel, Point origin) argument
114 BytePackedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
148 BytePackedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, BytePackedRaster parent) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DPageAttributes.java34 * orientation, logical origin, print quality, and resolution of every
850 * The OriginType instance to use for specifying a physical origin.
854 * The OriginType instance to use for specifying a printable origin.
904 private OriginType origin; field in class:PageAttributes
939 * @param origin OriginType.PHYSICAL or OriginType.PRINTABLE
951 OriginType origin, PrintQualityType printQuality,
956 setOrigin(origin);
986 origin = obj.origin;
1141 return origin;
949 PageAttributes(ColorType color, MediaType media, OrientationRequestedType orientationRequested, OriginType origin, PrintQualityType printQuality, int[] printerResolution) argument
1154 setOrigin(OriginType origin) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependencies.java349 public SimpleDependency(Location origin, Location target) { argument
350 this.origin = origin;
355 return origin;
369 return (origin.equals(o.origin) && target.equals(o.target));
374 return origin.hashCode() * 31 + target.hashCode();
379 return origin + ":" + target;
382 private Location origin; field in class:Dependencies.SimpleDependency
546 private Location origin; field in class:Dependencies.BasicDependencyFinder.Visitor
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DStructTest.java58 assertTrue(rect.origin().x() == 0);
59 assertTrue(rect.origin().y() == 1);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java403 * members of class `origin'? It is assumed that _other is a member
404 * of origin.
411 public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) { argument
1113 * override the erasure of the other when seen from class `origin'?
1115 public boolean binaryOverrides(Symbol _other, TypeSymbol origin, Types types) { argument
1130 other.isOverridableIn(origin) &&
1131 this.isMemberOf(origin, types) &&
1135 /** The implementation of this (abstract) symbol in class origin,
1138 * @param origin The class of which the implementation is a member.
1140 public MethodSymbol binaryImplementation(ClassSymbol origin, Type argument
1162 overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) argument
1196 isOverridableIn(TypeSymbol origin) argument
1220 implementation(TypeSymbol origin, Types types, boolean checkResult) argument
1231 implementation(TypeSymbol origin, Types types, boolean checkResult, Filter<Symbol> implFilter) argument
[all...]
H A DScope.java206 * given scope `s' accessed through `origin'. The last two
209 public void enter(Symbol sym, Scope s, Scope origin) { argument
219 Entry e = makeEntry(sym, old, elems, s, origin);
229 Entry makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) { argument
497 // The origin is only recorded for import scopes. For all
501 // error, we return scope which will be the same as origin
514 Entry makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) { argument
515 return new ImportEntry(sym, shadowed, sibling, scope, origin);
519 private Scope origin; field in class:Scope.ImportScope.ImportEntry
521 ImportEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) { argument
721 enter(Symbol sym, Scope s, Scope origin) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java300 * aligned to the origin. For the horizontal axis with a left to
969 * where 0 represents alignment along the origin, 1 is aligned
970 * the furthest away from the origin, 0.5 is centered, etc.
986 * where 0 represents alignment along the origin, 1 is aligned
987 * the furthest away from the origin, 0.5 is centered, etc.
1064 int origin, int size) {
1079 group.setSize(axis, origin, size);
1225 String origin = "";
1229 origin = Integer.toString(cSpring.getOrigin()) + " ";
1232 origin
1063 calculateAutopadding(Group group, int axis, int sizeType, int origin, int size) argument
1370 setSize(int axis, int origin, int size) argument
1579 setSize(int axis, int origin, int size) argument
1595 setValidSize(int axis, int origin, int size) argument
2016 setValidSize(int axis, int origin, int size) argument
2036 setValidSizeNotPreferred(int axis, int origin, int size) argument
2579 setValidSize(int axis, int origin, int size) argument
2585 setChildSize(Spring spring, int axis, int origin, int size) argument
2695 setValidSize(int axis, int origin, int size) argument
2856 baselineLayout(int origin, int size) argument
2935 private int origin; field in class:GroupLayout.ComponentSpring
3048 setSize(int axis, int origin, int size) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTSurfaceLayers.m80 CGFloat newY = windowLayer.bounds.size.height - rect.origin.y - rect.size.height;
81 CGRect newRect = CGRectMake(rect.origin.x, newY, rect.size.width, rect.size.height);
H A DCGraphicsDevice.m177 jint bottom = visibleFrame.origin.y - frame.origin.y;
179 jint left = visibleFrame.origin.x - frame.origin.x;
H A DCPrinterJob.m82 [defaultPrintInfo setLeftMargin: imageableRect.origin.x];
83 [defaultPrintInfo setBottomMargin: imageableRect.origin.y]; //top and bottom are flipped because [NSPrintInfo imageablePageBounds] returns a flipped NSRect (bottom-left to top-right).
84 [defaultPrintInfo setRightMargin: [defaultPrintInfo paperSize].width-imageableRect.origin.x-imageableRect.size.width];
85 [defaultPrintInfo setTopMargin: [defaultPrintInfo paperSize].height-imageableRect.origin.y-imageableRect.size.height];
99 CGFloat fullLeftM = imageable.origin.x;
100 CGFloat fullRightM = paperSize.width - (imageable.origin.x + imageable.size.width);
104 CGFloat fullTopM = paperSize.height - (imageable.origin.y + imageable.size.height);
105 CGFloat fullBottomM = imageable.origin.y;
H A DAWTWindow.m475 parentRect.origin.x += (parentRect.size.width - [self.growBoxWindow frame].size.width);
476 [self.growBoxWindow setFrameOrigin:parentRect.origin];
499 (jint)frame.origin.x,
500 (jint)frame.origin.y,
710 if (p.y >= (frame.origin.y + contentRect.size.height)) {
728 float left = contentRect.origin.x - frame.origin.x;
729 float bottom = contentRect.origin.y - frame.origin.y;
901 jint left = (jint)(contentRect.origin
[all...]
/openjdk7/jdk/make/common/
H A DDefs-linux.gmk316 # On Linux we add a flag -z origin, not sure if this is necessary, but
321 Z_ORIGIN_FLAG/sparc = -Xlinker -z -Xlinker origin
322 Z_ORIGIN_FLAG/i586 = -Xlinker -z -Xlinker origin
323 Z_ORIGIN_FLAG/amd64 = -Xlinker -z -Xlinker origin
324 Z_ORIGIN_FLAG/ia64 = -Xlinker -z -Xlinker origin
327 Z_ORIGIN_FLAG/zero = -Xlinker -z -Xlinker origin
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals_extension.hpp235 static void boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin);
236 static void intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin);
237 static void uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin);
238 static void uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin);
239 static void doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin);
240 static void ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin);
H A Darguments.cpp583 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) { argument
584 return CommandLineFlags::boolAtPut(name, &value, origin);
587 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) { argument
593 if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
599 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) { argument
618 if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
622 if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
626 if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
632 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) { argument
633 if (!CommandLineFlags::ccstrAtPut(name, &value, origin)) retur
639 append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) argument
667 parse_argument(const char* arg, FlagValueOrigin origin) argument
803 process_argument(const char* arg, jboolean ignore_unrecognized, FlagValueOrigin origin) argument
2131 parse_each_vm_init_arg(const JavaVMInitArgs* args, SysClassPath* scp_p, bool* scp_assembly_required_p, FlagValueOrigin origin) argument
[all...]
H A Dglobals.hpp216 FlagValueOrigin origin; member in struct:Flag
312 static bool boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin);
313 static bool boolAtPut(char* name, bool* value, FlagValueOrigin origin) { return boolAtPut(name, strlen(name), value, origin); } argument
317 static bool intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin);
318 static bool intxAtPut(char* name, intx* value, FlagValueOrigin origin) { return intxAtPut(name, strlen(name), value, origin); } argument
322 static bool uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin);
323 static bool uintxAtPut(char* name, uintx* value, FlagValueOrigin origin) { return uintxAtPut(name, strlen(name), value, origin); } argument
328 uint64_tAtPut(char* name, uint64_t* value, FlagValueOrigin origin) argument
333 doubleAtPut(char* name, double* value, FlagValueOrigin origin) argument
338 ccstrAtPut(char* name, ccstr* value, FlagValueOrigin origin) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java1009 * upper left corner is origin and it is the same size as the
1013 * @param origin The Point that specified the origin
1015 * <code>origin.x + sampleModel.getWidth()</code> or
1016 * <code>origin.y + sampleModel.getHeight()</code> results in
1019 * <code>origin</code> is null
1022 Point origin) {
1025 new Rectangle(origin.x,
1026 origin.y,
1029 origin,
1021 Raster(SampleModel sampleModel, Point origin) argument
1048 Raster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PopupMenu.cpp114 * relative to the origin component, which is passed by PopupMenu
121 jobject origin = (env)->GetObjectField(event, AwtEvent::targetID); local
122 jobject peerOrigin = GetPeerForTarget(env, origin);
157 env->DeleteLocalRef(origin);
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableExample.java84 Dimension origin = new Dimension(0, 0); field in class:TableExample
269 return origin;
273 return origin;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXPopupMenuPeer.java207 * given origin in global coordinates and
210 * @param origin the origin point specified in show()
214 protected Rectangle getWindowBounds(Point origin, Dimension windowSize) { argument
215 Rectangle globalBounds = new Rectangle(origin.x, origin.y, 0, 0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java138 private int origin; field in class:VM.Flag
140 private Flag(String type, String name, Address addr, String kind, int origin) { argument
145 this.origin = origin;
165 return origin;
817 CIntField originFld = new CIntField(flagType.getCIntegerField("origin"), 0);
827 int origin = (int)originFld.getValue(flagAddr);
828 commandLineFlags[f] = new Flag(type, name, addr, kind, origin);
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphImages.m141 clip.origin.x, clip.origin.y, clip.size.width, clip.size.height);
155 pathpoint.x, pathpoint.y, pathbbox.origin.x, pathbbox.origin.y,
467 bbox.origin.x -= CGGI_GLYPH_BBOX_PADDING;
468 bbox.origin.y -= CGGI_GLYPH_BBOX_PADDING;
493 glyphInfo->topLeftX = round(bbox.origin.x);
494 glyphInfo->topLeftY = round(bbox.origin.y);

Completed in 111 milliseconds

1234