Searched defs:location (Results 51 - 75 of 180) sorted by relevance

12345678

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DSOAP12ExtensionHandler.java66 @Override protected SOAPBinding getSOAPBinding(Locator location) { argument
67 return new SOAP12Binding(location);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DXmlSchemaQuick.java57 public String location() { method in class:XmlSchemaQuick
58 return core.location();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDPattern.java58 Locator location; field in class:DPattern
71 return location;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypeAnnotationPosition.java42 public List<Integer> location = List.nil(); field in class:TypeAnnotationPosition
169 // Append location data for generics/arrays.
171 sb.append(", location = (");
172 sb.append(location);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DPathFileManager.java102 * Get the search path associated with the given location.
104 * @param location a location
105 * @return a list of paths or {@code null} if this location has no
109 Iterable<? extends Path> getLocation(Location location); argument
112 * Associate the given search path with the given location. Any
115 * @param location a location
117 * search path for this location
119 * @throws IllegalArgumentException if location i
124 setLocation(Location location, Iterable<? extends Path> searchPath) argument
[all...]
/openjdk7/langtools/test/tools/javac/api/evalexpr/
H A DMemoryFileManager.java84 public ClassLoader getClassLoader(Location location) { argument
89 public JavaFileObject getJavaFileForOutput(Location location, argument
/openjdk7/hotspot/test/runtime/6925573/
H A DSortMethodsTest.java179 public FileObject getFileForInput(Location location, String packageName, argument
185 public JavaFileObject getJavaFileForOutput(Location location, String qualifiedName, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DStAXLocationWrapper.java30 * <p>A light wrapper around a StAX location. This is useful
43 public void setLocation(Location location) { argument
44 fLocation = location;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMException.java60 * @param location A SourceLocator object, or null to clear the location.
62 public void setLocator(SourceLocator location) { argument
63 locator = location;
214 * Get the error message with location information
251 * Get the location information as a string.
253 * @return A string with location info, or null
254 * if there is no location information.
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java312 private BasicLock resolveMonitorLock(Location location) { argument
314 Assert.that(location.isStack(), "for now we only look at the stack");
316 int byteOffset = location.getStackOffset();
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivatable.java63 * an activation descriptor (with the specified location, data, and
77 * exportObject} method with this object, and the specified location,
82 * @param location the location for classes for this object
98 protected Activatable(String location, argument
105 id = exportObject(this, location, data, restart, port);
110 * an activation descriptor (with the specified location, data, and
124 * exportObject} method with this object, and the specified location,
129 * @param location the location fo
148 Activatable(String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
339 exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port) argument
412 exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSource.java41 * encapsulate not only the location (URL) but also the certificate chains
42 * that were used to verify signed code originating from that location.
53 * The code location.
57 private URL location; field in class:CodeSource
77 * location and set of certificates.
79 * @param url the location (URL).
85 this.location = url;
95 * location and set of code signers.
97 * @param url the location (URL).
104 this.location
[all...]
/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/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetDragEvent.java80 * the location of the "Drag" <code>Cursor</code>'s hotspot
85 * @param cursorLocn The location of the "Drag" Cursor's
111 location = cursorLocn;
119 * location within the <code>Component'</code>s
122 * @return the current cursor location in
127 return location;
224 * The location of the drag cursor's hotspot in Component coordinates.
228 private Point location; field in class:DropTargetDragEvent
H A DDropTargetDropEvent.java79 * the location of the drag <code>Cursor</code>'s
90 * @param cursorLocn The location of the "Drag" Cursor's
117 location = cursorLocn;
125 * the location of the drag <code>Cursor</code>'s hotspot
133 * @param cursorLocn The location of the "Drag" Cursor's
157 * location in the <code>Component</code>'s coordinates.
159 * @return the current <code>Cursor</code> location in Component's coords.
163 return location;
274 * The location of the drag cursor's hotspot in Component coordinates.
278 private Point location field in class:DropTargetDropEvent
[all...]
/openjdk7/jdk/src/share/back/
H A DStackFrameImpl.c370 jlocation location; local
378 (gdata->jvmti, thread, fnum, &method, &location);
/openjdk7/hotspot/src/share/vm/runtime/
H A DregisterMap.hpp104 address location(VMReg reg) const { function in class:RegisterMap
/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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DWSDLLocation.java30 * Maintains wsdl:location context. This is used with
31 * TWSDLParserContextImpl, where one each WSDL being imported its location is pushed.
87 location = loc;
91 return location;
98 private String location; field in class:WSDLLocation.LocationContext
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DDomHandlerEx.java44 * {@link DomHandler} that produces a W3C DOM but with a location information.
65 return new DomAndLocation( ((Document)r.s2d.getDOM()).getDocumentElement(), r.location );
75 Locator location = null; field in class:DomHandlerEx.ResultImpl
87 location = new LocatorImpl(locator);
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java87 public Output getJavaFileForOutput(Location location, String name, Kind kind, FileObject source) { argument
/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/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java151 ServerLocation location;
181 location = locateServer(entry, IIOP_CLEAR_TEXT.value, false);
185 serverId + " found location " +
186 location.hostname + " and activated it" ) ;
366 ServerLocation location = new ServerLocation() ;
368 // if server location is desired, then wait for the server
369 // to register back, then return location
386 location.hostname = host ;
393 location.ports = new ORBPortInfo[listLength];
395 location
632 getServerPortForType(ServerLocationPerORB location, String endPointType) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DThreadListPanel.java65 private String location; field in class:ThreadListPanel.ThreadInfo
71 this.location = "<unknown>";
78 location = info.getName();
80 location = location + " (?)";
83 location = location + " + 0x" + Long.toHexString(info.getOffset());
96 public String getLocation() { return location; }

Completed in 83 milliseconds

12345678