Searched refs:location (Results 1 - 25 of 579) sorted by relevance

1234567891011>>

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DParseException.java34 final int location; field in class:ParseException
44 public ParseException(String mes, int location) { argument
46 this.location = location;
51 * @return -1 if location information is not available.
54 return this.location;
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DPointerInfo.java37 * moves. To get the updated location, you must call
47 private final Point location; field in class:PointerInfo
52 PointerInfo(final GraphicsDevice device, final Point location) { argument
54 this.location = location;
79 return location;
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/
H A DXMLStreamException.java40 protected Location location; field in class:XMLStreamException
80 * Construct an exception with the assocated message, exception and location.
84 * @param location the location of the error
86 public XMLStreamException(String msg, Location location, Throwable th) { argument
87 super("ParseError at [row,col]:["+location.getLineNumber()+","+
88 location.getColumnNumber()+"]\n"+
91 this.location = location;
95 * Construct an exception with the assocated message, exception and location
100 XMLStreamException(String msg, Location location) argument
[all...]
H A DXMLReporter.java55 * @param location the location of the error, if available
60 public void report(String message, String errorType, Object relatedInformation, Location location) argument
/openjdk10/hotspot/src/jdk.hotspot.agent/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);
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DLocatable.java49 Location location(); method in interface:Locatable
/openjdk10/jdk/src/java.base/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;
/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DModuleReference.java39 * module's descriptor and its location, if known. It also has the ability to
53 private final URI location; field in class:ModuleReference
60 * @param location
61 * The module location or {@code null} if not known
63 protected ModuleReference(ModuleDescriptor descriptor, URI location) { argument
65 this.location = location;
78 * Returns the location of this module's content, if known.
81 * java.security.CodeSource#getLocation location} value of a {@link
86 * @return The location o
88 public final Optional<URI> location() { method in class:ModuleReference
[all...]
/openjdk10/jdk/src/java.rmi/share/classes/java/rmi/activation/
H A DActivationDesc.java36 * <li> the object's code location (the location of the class), a codebase URL
65 * @serial the object's code location
67 private String location; field in class:ActivationDesc
85 * code <code>location</code> and whose initialization
103 * @param location the object's code location (from where the class is
113 String location,
118 className, location, data, false);
124 * code <code>location</cod
112 ActivationDesc(String className, String location, MarshalledObject<?> data) argument
151 ActivationDesc(String className, String location, MarshalledObject<?> data, boolean restart) argument
187 ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data) argument
221 ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data, boolean restart) argument
[all...]
/openjdk10/jdk/src/java.desktop/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} 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...]
/openjdk10/jdk/test/javax/naming/module/src/fruit/org/example/fruit/
H A DFruit.java34 static String location = null; field in class:Fruit
46 location); // factory location
54 location = loc;
55 System.out.println("setting location to : " + location);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXEventFactory.java40 Location location = null; field in class:StAXEventFactory
48 * the events created by this factory. To reset the location
49 * information set the location to null.
50 * @param location the location to set on each event created
52 public void setLocation(Location location) { argument
53 this.location = location;
66 if(location != null)attr.setLocation(location);
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/jndi/cosnaming/
H A DCorbanameUrl.java74 private String location; field in class:CorbanameUrl
89 return "corbaloc:" + location;
107 location = url.substring(addrStart, addrEnd);
109 int keyStart = location.indexOf('/');
112 if (keyStart == (location.length() -1)) {
113 location += "NameService";
116 location += "/NameService";
125 System.out.println("location: " + url.getLocation());
/openjdk10/langtools/src/java.compiler/share/classes/javax/tools/
H A DForwardingJavaFileManager.java63 public ClassLoader getClassLoader(Location location) { argument
64 return fileManager.getClassLoader(location);
71 public Iterable<JavaFileObject> list(Location location, argument
77 return fileManager.list(location, packageName, kinds, recurse);
83 public String inferBinaryName(Location location, JavaFileObject file) { argument
84 return fileManager.inferBinaryName(location, file);
102 public boolean hasLocation(Location location) { argument
103 return fileManager.hasLocation(location);
114 public JavaFileObject getJavaFileForInput(Location location, argument
119 return fileManager.getJavaFileForInput(location, classNam
126 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
139 getFileForInput(Location location, String packageName, String relativeName) argument
151 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
172 getLocationForModule(Location location, String moduleName) argument
180 getLocationForModule(Location location, JavaFileObject fo) argument
188 getServiceLoader(Location location, Class<S> service) argument
196 inferModuleName(Location location) argument
204 listLocationsForModules(Location location) argument
211 contains(Location location, FileObject fo) argument
[all...]
H A DJavaFileManager.java45 * current/working directory to use as default location when creating
118 * a place where a tool can write files. If a location is used to identify
124 * If a location is typically used to identify a place where a tool can write files,
128 * <p>You can access the classes in a package-oriented location using methods like
131 * location. Instead, you can get a package-oriented location for any specific module
137 * Returns the name of this location.
144 * Determines if this is an output location.
145 * An output location is a location tha
193 getClassLoader(Location location) argument
216 list(Location location, String packageName, Set<Kind> kinds, boolean recurse) argument
235 inferBinaryName(Location location, JavaFileObject file) argument
274 hasLocation(Location location) argument
298 getJavaFileForInput(Location location, String className, Kind kind) argument
336 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
382 getFileForInput(Location location, String packageName, String relativeName) argument
428 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
478 getLocationForModule(Location location, String moduleName) argument
502 getLocationForModule(Location location, JavaFileObject fo) argument
526 getServiceLoader(Location location, Class<S> service) argument
545 inferModuleName(Location location) argument
565 listLocationsForModules(Location location) argument
599 contains(Location location, FileObject fo) argument
[all...]
/openjdk10/jdk/test/java/awt/Window/ShapedAndTranslucentWindows/
H A DShapedTranslucent.java74 Point location = window.getLocationOnScreen();
75 robot.dragAndDrop(location.x + dl, location.y + 5, location.x + dl + random.nextInt(dl), location.y + random.nextInt(dl));
80 location = window.getLocationOnScreen();
81 robot.dragAndDrop(location.x + 4, location.y + 4, location.x + random.nextInt(2*dl)-dl, location
[all...]
H A DStaticallyShaped.java72 Point location = window.getLocationOnScreen();
73 robot.dragAndDrop(location.x + dl, location.y + 5, location.x + dl + random.nextInt(dl), location.y + random.nextInt(dl));
78 location = window.getLocationOnScreen();
79 robot.dragAndDrop(location.x + 4, location.y + 4, location.x + random.nextInt(2*dl)-dl, location
[all...]
H A DTranslucent.java71 Point location = window.getLocationOnScreen();
72 robot.dragAndDrop(location.x + dl, location.y + 5, location.x + dl + random.nextInt(dl), location.y + random.nextInt(dl));
77 location = window.getLocationOnScreen();
78 robot.dragAndDrop(location.x + 4, location.y + 4, location.x + random.nextInt(2*dl)-dl, location
[all...]
H A DShaped.java74 Point location = window.getLocationOnScreen();
75 robot.dragAndDrop(location.x + dl, location.y + 5, location.x + dl + random.nextInt(dl), location.y + random.nextInt(dl));
80 location = window.getLocationOnScreen();
81 robot.dragAndDrop(location.x + 4, location.y + 4, location.x + random.nextInt(2*dl)-dl, location
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DTypeAnnotationPosition.java125 public List<TypePathEntry> location; field in class:TypeAnnotationPosition
263 // Append location data for generics/arrays.
264 if (!location.isEmpty()) {
265 sb.append(", location = (");
266 sb.append(location);
342 * the {@code location} field.
377 final List<TypePathEntry> location) {
378 Assert.checkNonNull(location);
385 this.location = location;
371 TypeAnnotationPosition(final TargetType ttype, final int pos, final int parameter_index, final JCLambda onLambda, final int type_index, final int bound_index, final List<TypePathEntry> location) argument
396 methodReturn(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
411 methodReturn(final List<TypePathEntry> location) argument
432 methodReceiver(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
447 methodReceiver(final List<TypePathEntry> location) argument
469 methodParameter(final List<TypePathEntry> location, final JCLambda onLambda, final int parameter_index, final int pos) argument
513 methodParameter(final List<TypePathEntry> location, final int parameter_index) argument
526 methodRef(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
541 methodRef(final List<TypePathEntry> location) argument
553 constructorRef(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
568 constructorRef(final List<TypePathEntry> location) argument
580 field(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
595 field(final List<TypePathEntry> location) argument
616 localVariable(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
643 localVariable(final List<TypePathEntry> location) argument
655 exceptionParameter(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
682 exceptionParameter(final List<TypePathEntry> location) argument
695 resourceVariable(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
722 resourceVariable(final List<TypePathEntry> location) argument
734 newObj(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
758 newObj(final List<TypePathEntry> location) argument
771 classExtends(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
789 classExtends(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
802 classExtends(final List<TypePathEntry> location, final int type_index) argument
835 instanceOf(final List<TypePathEntry> location, final JCLambda onLambda, final int pos) argument
849 instanceOf(final List<TypePathEntry> location) argument
862 typeCast(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
879 typeCast(final List<TypePathEntry> location, final int type_index) argument
894 methodInvocationTypeArg(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
912 methodInvocationTypeArg(final List<TypePathEntry> location, final int type_index) argument
927 constructorInvocationTypeArg(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
945 constructorInvocationTypeArg(final List<TypePathEntry> location, final int type_index) argument
959 typeParameter(final List<TypePathEntry> location, final JCLambda onLambda, final int parameter_index, final int pos) argument
976 typeParameter(final List<TypePathEntry> location, final int parameter_index) argument
990 methodTypeParameter(final List<TypePathEntry> location, final JCLambda onLambda, final int parameter_index, final int pos) argument
1007 methodTypeParameter(final List<TypePathEntry> location, final int parameter_index) argument
1021 methodThrows(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
1038 methodThrows(final List<TypePathEntry> location, final int type_index) argument
1053 methodRefTypeArg(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
1071 methodRefTypeArg(final List<TypePathEntry> location, final int type_index) argument
1086 constructorRefTypeArg(final List<TypePathEntry> location, final JCLambda onLambda, final int type_index, final int pos) argument
1104 constructorRefTypeArg(final List<TypePathEntry> location, final int type_index) argument
1119 typeParameterBound(final List<TypePathEntry> location, final JCLambda onLambda, final int parameter_index, final int bound_index, final int pos) argument
1138 typeParameterBound(final List<TypePathEntry> location, final int parameter_index, final int bound_index) argument
1156 methodTypeParameterBound(final List<TypePathEntry> location, final JCLambda onLambda, final int parameter_index, final int bound_index, final int pos) argument
1176 methodTypeParameterBound(final List<TypePathEntry> location, final int parameter_index, final int bound_index) argument
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/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...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/
H A Dparser.js26 * name is optional name for the code source and location param tells whether to
27 * include location information for AST nodes or not.
39 function parse(/*code, [name], [location]*/) {
40 var code, name = "<unknown>", location = false;
43 location = arguments[2];
50 var jsonStr = Packages.jdk.nashorn.api.scripting.ScriptUtils.parse(code, name, location);
/openjdk10/jaxws/src/java.xml.bind/share/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);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/addressing/
H A Dpackage-info.java27 location = "http://schemas.xmlsoap.org/ws/2004/08/addressing")
/openjdk10/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/wsaddressing/
H A Dpackage-info.java30 location="http://www.w3.org/2006/03/addressing/ws-addr.xsd")

Completed in 211 milliseconds

1234567891011>>