Searched refs:origin (Results 1 - 25 of 84) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/com/sun/management/
H A DVMOption.java34 * {@link VMOption.Origin <i>origin</i>}.
46 * and the origin of that value at the time this <tt>VMOption</tt>
59 private Origin origin; field in class:VMOption
110 * @param origin where the value of a VM option came from.
114 public VMOption(String name, String value, boolean writeable, Origin origin) { argument
118 this.origin = origin;
132 this.origin = VMOptionCompositeData.getOrigin(cd);
156 * Returns the origin of the value of this VM option. That is,
162 return origin;
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPopupMenu.java48 Component origin = (Component)e.target;
49 if (origin != null) {
50 Point loc = origin.getLocationOnScreen();
H A DCMouseDragGestureRecognizer.java132 Point origin = trigger.getPoint();
135 int dx = Math.abs(origin.x - current.x);
136 int dy = Math.abs(origin.y - current.y);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPopupMenuPeer.java73 Component origin = (Component)e.target;
74 WComponentPeer peer = (WComponentPeer) WToolkit.targetToPeer(origin);
80 Component nativeOrigin = WToolkit.getNativeContainer(origin);
84 for (Component c = origin; c != nativeOrigin; c = c.getParent()) {
97 void show(Component origin, Point p) { argument
98 WComponentPeer peer = (WComponentPeer) WToolkit.targetToPeer(origin);
99 Event e = new Event(origin, 0, Event.MOUSE_DOWN, p.x, p.y, 0, 0);
101 Component nativeOrigin = WToolkit.getNativeContainer(origin);
H A DWMouseDragGestureRecognizer.java210 Point origin = trigger.getPoint();
213 int dx = Math.abs(origin.x - current.x);
214 int dy = Math.abs(origin.y - current.y);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DGlyphListPipe.java58 double origin[] = {x + info.originX, y + info.originY};
59 sg2d.transform.transform(origin, 0, origin, 0, 1);
60 devx = (float)origin[0];
61 devy = (float)origin[1];
94 double origin[] = {ix + info.originX, iy + info.originY};
95 sg2d.transform.transform(origin, 0, origin, 0, 1);
96 x = (float) origin[0];
97 y = (float) origin[
[all...]
/openjdk7/jdk/src/share/native/sun/management/
H A DFlag.c89 jobject origin; local
138 switch (globals[i].origin) {
140 origin = default_origin;
143 origin = vm_creation_origin;
146 origin = mgmt_origin;
149 origin = envvar_origin;
152 origin = config_file_origin;
155 origin = ergo_origin;
158 origin = other_origin;
161 // unknown origin
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DFlag.java41 private Origin origin; field in class:Flag
46 boolean external, Origin origin) {
49 this.origin = origin;
67 return new VMOption(name, value.toString(), writeable, origin);
45 Flag(String name, Object value, boolean writeable, boolean external, Origin origin) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMethodDocImpl.java126 ClassSymbol origin = (ClassSymbol)sym.owner;
127 for (Type t = env.types.supertype(origin.type);
132 if (sym.overrides(e.sym, origin, env.types, true)) {
158 ClassSymbol origin = (ClassSymbol)sym.owner;
159 for (Type t = env.types.supertype(origin.type);
164 if (sym.overrides(e.sym, origin, env.types, true)) {
185 ClassSymbol origin = (ClassSymbol) sym.owner;
196 // sym, whose declaring type is the origin, must be
198 env.types.asSuper(origin.type, overridee.owner) != null &&
201 sym.overrides(overridee, origin, en
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DPopupMenu.java135 * Shows the popup menu at the x, y position relative to an origin
137 * The origin component must be contained within the component
138 * hierarchy of the popup menu's parent. Both the origin and the parent
145 * @param origin the component which defines the coordinate space
151 * @exception IllegalArgumentException if the origin is not in the
155 public void show(Component origin, int x, int y) { argument
167 //Exception was not thrown if compParent was not equal to origin and
169 if (compParent != origin) {
171 if (!((Container)compParent).isAncestorOf(origin)) {
172 throw new IllegalArgumentException("origin no
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DIntegerNIORaster.java51 public IntegerNIORaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) { argument
53 super(sampleModel, dataBuffer, new Rectangle(origin.x, origin.y, sampleModel.getWidth(), sampleModel.getHeight()), origin, null);
/openjdk7/jdk/make/common/shared/
H A DCompiler-llvm.gmk33 ifeq ($(origin CC), default)
37 ifeq ($(origin CXX), default)
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals.cpp110 st->print("%9s %-40s %c= ", type, name, (origin != DEFAULT ? ':' : ' '));
312 return (f->origin == DEFAULT);
318 return (f->origin == ERGONOMIC);
324 return (f->origin == COMMAND_LINE);
330 *value = (result->origin == COMMAND_LINE);
342 bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) { argument
349 result->origin = origin;
353 void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) { argument
357 faddr->origin
368 intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) argument
379 intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) argument
394 uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) argument
405 uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) argument
420 uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) argument
431 uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) argument
446 doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) argument
457 doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) argument
474 ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) argument
497 ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DIntegerInterleavedRaster.java63 * The Raster's upper left corner is origin and it is the same
68 * @param origin The Point that specified the origin.
71 Point origin) {
74 new Rectangle(origin.x,
75 origin.y,
78 origin,
84 * and DataBuffer. The Raster's upper left corner is origin and
90 * @param origin The Point that specifies the origin
70 IntegerInterleavedRaster(SampleModel sampleModel, Point origin) argument
92 IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
123 IntegerInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, IntegerInterleavedRaster parent) argument
[all...]
H A DSunWritableRaster.java110 public SunWritableRaster(SampleModel sampleModel, Point origin) { argument
111 super(sampleModel, origin);
117 Point origin)
119 super(sampleModel, dataBuffer, origin);
115 SunWritableRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
H A DShortInterleavedRaster.java65 * The Raster's upper left corner is origin and it is the same
70 * @param origin The Point that specified the origin.
72 public ShortInterleavedRaster(SampleModel sampleModel, Point origin) { argument
75 new Rectangle(origin.x,
76 origin.y,
79 origin,
85 * and DataBuffer. The Raster's upper left corner is origin and
92 * @param origin The Point that specifies the origin
94 ShortInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
125 ShortInterleavedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ShortInterleavedRaster parent) argument
[all...]
H A DByteBandedRaster.java70 * Raster's upper left corner is origin and it is the same
75 * @param origin The Point that specifies the origin.
78 Point origin) {
81 new Rectangle(origin.x,
82 origin.y,
85 origin,
91 * and DataBuffer. The Raster's upper left corner is origin and
97 * @param origin The Point that specifies the origin
77 ByteBandedRaster(SampleModel sampleModel, Point origin) argument
99 ByteBandedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
127 ByteBandedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ByteBandedRaster parent) argument
[all...]
H A DIntegerComponentRaster.java103 * The Raster's upper left corner is origin and it is the same
108 * @param origin The Point that specified the origin.
111 Point origin) {
114 new Rectangle(origin.x,
115 origin.y,
118 origin,
124 * and DataBuffer. The Raster's upper left corner is origin and
130 * @param origin The Point that specifies the origin
110 IntegerComponentRaster(SampleModel sampleModel, Point origin) argument
132 IntegerComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
163 IntegerComponentRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, IntegerComponentRaster parent) argument
[all...]
H A DShortBandedRaster.java68 * The Raster's upper left corner is origin and it is the same
73 * @param origin The Point that specified the origin.
76 Point origin) {
79 new Rectangle(origin.x,
80 origin.y,
83 origin,
89 * and DataBuffer. The Raster's upper left corner is origin and
95 * @param origin The Point that specifies the origin
75 ShortBandedRaster(SampleModel sampleModel, Point origin) argument
97 ShortBandedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
125 ShortBandedRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion, Point origin, ShortBandedRaster parent) argument
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DGeomUtilities.m51 rect.origin.x,
52 rect.origin.y,
59 rect.origin.x,
60 rect.origin.y,
114 rect.origin.y = [primaryScreen(env) frame].size.height - rect.origin.y - rect.size.height;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DDeclarationsImpl.java117 ClassSymbol origin = (ClassSymbol) overrider.owner;
128 // overrider, whose declaring type is the origin, must be
130 env.jctypes.asSuper(origin.type, overridee.owner) != null &&
133 overrider.overrides(overridee, origin, env.jctypes, false);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMouseDragGestureRecognizer.java212 Point origin = trigger.getPoint();
215 int dx = Math.abs(origin.x - current.x);
216 int dy = Math.abs(origin.y - current.y);
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragGestureEvent.java82 * indicating the origin of the drag, and a {@code List} of
89 * @param ori The origin of the drag
117 if (ori == null) throw new IllegalArgumentException("null origin");
121 origin = ori;
159 return origin;
334 origin = (Point)f.get("origin", null);
372 * The origin of the drag.
376 private Point origin; field in class:DragGestureEvent
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DWritableRaster.java53 * WritableRaster's upper left corner is origin and it is the
57 * @param origin The Point that specifies the origin.
59 * <code>origin.x + sampleModel.getWidth()</code> or
60 * <code>origin.y + sampleModel.getHeight()</code> results
64 Point origin) {
67 new Rectangle(origin.x,
68 origin.y,
71 origin,
77 * The WritableRaster's upper left corner is origin an
63 WritableRaster(SampleModel sampleModel, Point origin) argument
88 WritableRaster(SampleModel sampleModel, DataBuffer dataBuffer, Point origin) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTransTypes.java196 * local scope of origin.
201 * @param origin The class to which the bridge will be added
211 ClassSymbol origin,
215 Type origType = types.memberType(origin.type, meth);
225 origin);
231 JCExpression receiver = (impl.owner == origin)
232 ? make.This(origin.erasure(types))
233 : make.Super(types.supertype(origin.type).tsym.erasure(types), origin);
256 origin
208 addBridge(DiagnosticPosition pos, MethodSymbol meth, MethodSymbol impl, ClassSymbol origin, boolean hypothetical, ListBuffer<JCTree> bridges) argument
278 addBridgeIfNeeded(DiagnosticPosition pos, Symbol sym, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
384 addBridges(DiagnosticPosition pos, TypeSymbol i, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
399 addBridges(DiagnosticPosition pos, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
[all...]

Completed in 145 milliseconds

1234