Searched defs:location (Results 1 - 25 of 180) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocatable.java48 Location location(); method in interface:Locatable
/openjdk7/jdk/src/share/classes/java/awt/
H A DPointerInfo.java37 * as the mouse moves. To get the updated location, you must call
48 private Point location; field in class:PointerInfo
53 PointerInfo(GraphicsDevice device, Point location) { argument
55 this.location = location;
81 return location;
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInfo.java30 final int location; field in class:Info
32 Info(int counter, String className, String methodName, int location) { argument
36 this.location = location;
H A DInjector.java27 byte[] bytecodes(String className, String methodName, int location); argument
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLReporter.java58 * @param location the location of the error, if available
63 public void report(String message, String errorType, Object relatedInformation, Location location) argument
H A DXMLStreamException.java43 protected Location location; field in class:XMLStreamException
83 * Construct an exception with the assocated message, exception and location.
87 * @param location the location of the error
89 public XMLStreamException(String msg, Location location, Throwable th) { argument
90 super("ParseError at [row,col]:["+location.getLineNumber()+","+
91 location.getColumnNumber()+"]\n"+
94 this.location = location;
98 * Construct an exception with the assocated message, exception and location
103 XMLStreamException(String msg, Location location) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DBreakpointEvent.java34 private int location; field in class:BreakpointEvent
39 int location) {
44 this.location = location;
50 public int location() { return location; } method in class:BreakpointEvent
36 BreakpointEvent(Oop thread, Oop clazz, JNIid method, int location) argument
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/net/
H A DHttpRetryException.java43 private String location; field in class:HttpRetryException
63 * @param location the URL to be redirected to
65 public HttpRetryException(String detail, int code, String location) { argument
68 this.location = location;
94 * @return The location string
97 return location;
/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/src/share/classes/java/awt/font/
H A DLayoutPath.java45 * Convert a point in user space to a location relative to the
46 * path. The location is chosen so as to minimize the distance
48 * will be smallest). If there is more than one such location,
49 * the location with the smallest advance is chosen.
51 * object as location, point will remain unmodified by this call.
52 * @param location a <code>Point2D</code> to hold the returned location.
55 * path preceding the location, false if it is associated with
56 * the portion following. The default, if the location is not at
58 * @throws NullPointerException if point or location i
61 pointToPath(Point2D point, Point2D location) argument
82 pathToPoint(Point2D location, boolean preceding, Point2D point) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DXMLStreamException2.java49 public XMLStreamException2(String msg, Location location) { argument
50 super(msg, location);
53 public XMLStreamException2(String msg, Location location, Throwable th) { argument
54 super(msg, location, th);
/openjdk7/langtools/test/tools/javac/api/6420409/
H A DT6420409.java27 * @summary JSR 199: StandardFileManager: cannot set CLASS_PATH location
66 static void test(Iterable<? extends File> path, File file, Location location) { argument
69 throw new AssertionError(file + " not in " + location);
71 throw new AssertionError("Unexpected element in " + location + " : " + it.next());
72 System.err.format((Locale)null, "OK: %s: %s%n", location, path);
/openjdk7/langtools/test/tools/javac/api/
H A DT6400207.java27 * @summary JSR 199: JavaFileManager.list and unset location
38 JavaFileManager.Location location,
42 location == null ||
46 fm.list(location, packageName, kinds, false);
49 if (location == null)
50 throw new AssertionError(message + " (location is null)");
71 for (StandardLocation location : StandardLocation.values()) {
72 if (location != locationFor(location.getName()))
73 throw new AssertionError(location
37 testList(JavaFileManager fm, JavaFileManager.Location location, String packageName, Set<JavaFileObject.Kind> kinds) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DParseException.java33 int location; field in class:ParseException
43 public ParseException(String mes, int location) { argument
45 this.location = location;
50 * @return -1 if location information is not available.
53 return this.location;
/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/code/
H A DLocationValue.java29 /** A Location value describes a value in a given location; i.e. the
31 this location. */
34 private Location location; field in class:LocationValue
36 public LocationValue(Location location) { argument
37 this.location = location;
45 return location;
50 location = new Location(stream);
/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/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/jndi/cosnaming/
H A DCorbanameUrl.java70 private String location; field in class:CorbanameUrl
85 return "corbaloc:" + location;
103 location = url.substring(addrStart, addrEnd);
105 int keyStart = location.indexOf("/");
108 if (keyStart == (location.length() -1)) {
109 location += "NameService";
112 location += "/NameService";
121 System.out.println("location: " + url.getLocation());
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DObsoleteMethodImpl.java38 private Location location = null; field in class:ObsoleteMethodImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/annotation/spec/
H A DXmlSchemaWriter.java37 XmlSchemaWriter location(String value); method in interface:XmlSchemaWriter
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/exception/
H A DLocatableWebServiceException.java40 * {@link WebServiceException} with source location informaiton.
43 * This exception should be used wherever the location information is available,
44 * so that the location information is carried forward to users (to assist
53 private final Locator[] location; field in class:LocatableWebServiceException
55 public LocatableWebServiceException(String message, Locator... location) { argument
56 this(message,null,location);
59 public LocatableWebServiceException(String message, Throwable cause, Locator... location) { argument
60 super(appendLocationInfo(message,location), cause);
61 this.location = location;
64 LocatableWebServiceException(Throwable cause, Locator... location) argument
90 appendLocationInfo(String message, Locator[] location) argument
[all...]

Completed in 159 milliseconds

12345678