Searched refs:location (Results 26 - 50 of 365) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DWrappingJavaFileManager.java136 public Iterable<JavaFileObject> list(Location location, argument
142 return wrap(super.list(location, packageName, kinds, recurse));
148 public String inferBinaryName(Location location, JavaFileObject file) { argument
149 return super.inferBinaryName(location, unwrap(file));
157 public JavaFileObject getJavaFileForInput(Location location, argument
162 return wrap(super.getJavaFileForInput(location, className, kind));
170 public JavaFileObject getJavaFileForOutput(Location location, argument
176 return wrap(super.getJavaFileForOutput(location, className, kind, unwrap(sibling)));
183 public FileObject getFileForInput(Location location, argument
188 return wrap(super.getFileForInput(location, packageNam
195 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DBreakpointRequest.java52 * Returns the location of the requested breakpoint.
56 Location location(); method in interface:BreakpointRequest
/openjdk7/jdk/test/java/io/pathNames/win32/
H A DRenameDelete.java48 //construct a test file in this location
50 StringBuffer location = new StringBuffer("\\");
51 location.append(f1.getCanonicalPath());
53 StringBuffer fromLocation = new StringBuffer(location.toString()+"\\From");
54 StringBuffer toLocation = new StringBuffer(location.toString()+"\\To");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DLineBreakpointSpec.java58 Location location = location((ClassType)refType);
60 .createBreakpointRequest(location));
63 private Location location(ClassType clazz) throws method in class:LineBreakpointSpec
65 Location location = null;
72 location = locs.get(0);
73 if (location.method() == null) {
83 return location;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DExceptionEvent.java34 private int location; field in class:ExceptionEvent
43 int location,
52 this.location = location;
62 public int location() { return location; } method in class:ExceptionEvent
40 ExceptionEvent(Oop thread, Oop clazz, JNIid method, int location, Oop exception, Oop catchClass, JNIid catchMethod, int catchLocation) argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java98 * parent and pixel (60, 60) of the child occupy the same location in
181 * location argument. If location is null, (0, 0) will be used.
195 * @param location the upper-left corner of the <code>Raster</code>
200 * <code>location.x + w</code> or
201 * <code>location.y + h</code> results in integer
207 Point location) {
213 bandOffsets, location);
223 * location argument. If location i
204 createInterleavedRaster(int dataType, int w, int h, int bands, Point location) argument
253 createInterleavedRaster(int dataType, int w, int h, int scanlineStride, int pixelStride, int bandOffsets[], Point location) argument
308 createBandedRaster(int dataType, int w, int h, int bands, Point location) argument
365 createBandedRaster(int dataType, int w, int h, int scanlineStride, int bankIndices[], int bandOffsets[], Point location) argument
451 createPackedRaster(int dataType, int w, int h, int bandMasks[], Point location) argument
522 createPackedRaster(int dataType, int w, int h, int bands, int bitsPerBand, Point location) argument
627 createInterleavedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int pixelStride, int bandOffsets[], Point location) argument
689 createBandedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int bankIndices[], int bandOffsets[], Point location) argument
760 createPackedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int bandMasks[], Point location) argument
821 createPackedRaster(DataBuffer dataBuffer, int w, int h, int bitsPerPixel, Point location) argument
879 createRaster(SampleModel sm, DataBuffer db, Point location) argument
935 createWritableRaster(SampleModel sm, Point location) argument
965 createWritableRaster(SampleModel sm, DataBuffer db, Point location) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DFinalizerTest.java136 event1.location().method().name() + ":" +
137 event1.location().lineNumber() + " (" +
138 event1.location().codeIndex() + ")");
141 * Record information about the current location
148 methodStack.add(frame.location().declaringType().name() +
149 "." + frame.location().method().name());
155 stepEvent.location().method().name() + ":" +
156 stepEvent.location().lineNumber() + " (" +
157 stepEvent.location().codeIndex() + ")");
160 * Compare current location wit
[all...]
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DTemperatureTableTest.java120 targetClass = bpe.location().declaringType();
128 checkLocation(bpe.location(), "main BP",
132 checkLocation("JSP", bpe.location(), "main BP",
136 checkLocation("bogus", bpe.location(), "main BP",
140 checkLocation(null, bpe.location(), "main BP",
144 checkLocation("Java", bpe.location(), "main BP",
209 Location hello = bpHello.location();
236 checkLocation(bpe.location(), "main BP",
240 checkLocation("JSP", bpe.location(), "main BP",
244 checkLocation("bogus", bpe.location(), "mai
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DStaxErrorReporter.java73 * Reports an error at a specific location.
75 * @param location The error location.
86 public String reportError(XMLLocator location, argument
127 fXMLReporter.report(message, "WARNING", null, convertToStaxLocation(location) );
139 fXMLReporter.report(message, "ERROR", null, convertToStaxLocation(location) );
159 Location convertToStaxLocation(final XMLLocator location){ argument
162 return location.getColumnNumber();
166 return location.getLineNumber();
170 return location
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DNonConcreteMethodImpl.java43 private Location location = null; field in class:NonConcreteMethodImpl
51 public Location location() { method in class:NonConcreteMethodImpl
55 if (location == null) {
56 location = new LocationImpl(vm, this, -1);
58 return location;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DNonConcreteMethodImpl.java44 private Location location = null; field in class:NonConcreteMethodImpl
57 public Location location() { method in class:NonConcreteMethodImpl
61 if (location == null) {
62 location = new LocationImpl(vm, this, -1);
64 return location;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DBlock.java64 return location;
68 location = i;
77 private int location; field in class:Block
/openjdk7/langtools/src/share/classes/javax/tools/
H A DStandardLocation.java72 * Gets a location object with the given name. The following
75 * The returned location will be an output location if and only if
79 * @return a location
84 for (Location location : values())
85 locations.putIfAbsent(location.getName(), location);
H A DStandardJavaFileManager.java214 * Associates the given path with the given location. Any
217 * @param location a location
219 * path for this location
221 * @throws IllegalArgumentException if location is an output
222 * location and path does not contain exactly one element
223 * @throws IOException if location is an output location and path
226 void setLocation(Location location, Iterable<? extends File> path) argument
230 * Gets the path associated with the given location
237 getLocation(Location location) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterLocation.java35 * identifies the location of the device. This could include things like:
51 * Constructs a new printer location attribute with the given location and
54 * @param location Printer location.
60 * (unchecked exception) Thrown if <CODE>location</CODE> is null.
62 public PrinterLocation(String location, Locale locale) { argument
63 super (location, locale);
67 * Returns whether this printer location attribute is equivalent to the
76 * This printer location attribut
[all...]
/openjdk7/langtools/src/share/classes/javax/annotation/processing/
H A DFiler.java56 * files may be created in either location. The methods for reading
135 * {@linkplain StandardLocation#SOURCE_OUTPUT root output location
179 * {@linkplain StandardLocation#CLASS_OUTPUT root output location
210 * other supported location. The locations {@link
216 * will be the concatenation of {@code location}, {@code pkg}, and
224 * @param location location of the new file
235 * @throws IllegalArgumentException for an unsupported location
238 FileObject createResource(JavaFileManager.Location location, argument
249 * @param location locatio
260 getResource(JavaFileManager.Location location, CharSequence pkg, CharSequence relativeName) argument
[all...]
/openjdk7/jdk/test/javax/swing/DataTransfer/6456844/
H A Dbug6456844.java46 JTextComponent.DropLocation location =
50 if (location.getBias() == null) {
/openjdk7/jdk/src/share/sample/nio/server/
H A DURLDumper.java61 String location = args[0];
64 URL url = new URL(location);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java40 * <li> the group's code location (the location of the group's class), and
67 * @serial The location from where to load the group's class.
69 private String location; field in class:ActivationGroupDesc
93 * implementation and code location. Properties specify Java
123 * @param location the location from where to load the group's
135 String location,
143 this.location = location;
134 ActivationGroupDesc(String className, String location, MarshalledObject<?> data, Properties overrides, CommandEnvironment cmd) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DListUI.java43 * given location in the list's coordinate system. To determine if the
44 * cell actually contains the specified location, compare the point against
49 * @param location the coordinates of the point
50 * @return the cell index closest to the given location, or {@code -1}
51 * @throws NullPointerException if {@code location} is null
53 public abstract int locationToIndex(JList list, Point location); argument
H A DSplitPaneUI.java45 * Sets the location of the divider to location.
47 public abstract void setDividerLocation(JSplitPane jc, int location); argument
50 * Returns the location of the divider.
55 * Returns the minimum possible location of the divider.
60 * Returns the maximum possible location of the divider.
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DLocatableEventSet.java41 * Abstract event set for events with location and thread.
53 * and on available debug information, this location will have
59 return ((LocatableEvent)oneEvent).location();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DMetaDataResolver.java41 * Gives {@link com.sun.xml.internal.ws.api.wsdl.parser.ServiceDescriptor} resolved from the given location.
45 * @param location metadata location
46 * @return {@link com.sun.xml.internal.ws.api.wsdl.parser.ServiceDescriptor} resolved from the location. It may be null in the cases when MetadataResolver
49 public abstract @Nullable ServiceDescriptor resolve(@NotNull URI location); argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_frame.h45 FrameIndex frame_find_or_create(jmethodID method, jlocation location);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DToolTipManager.java253 Point location;
291 location = toFind;
293 location.x -= size.width;
296 location = new Point(screenLocation.x + mouseEvent.getX(),
299 if(location.x - size.width>=0) {
300 location.x -= size.width;
310 popupRect.setBounds(location.x,location.y,
314 if (location.x < sBounds.x) {
315 location
[all...]

Completed in 859 milliseconds

1234567891011>>