Searched refs:Location (Results 1 - 25 of 231) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/javac/diags/examples/
H A DLocation.java27 class Location { class
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/host/
H A DLocationHost.java48 import com.sun.xml.internal.rngom.ast.om.Location;
55 final class LocationHost implements Location {
56 final Location lhs;
57 final Location rhs;
59 LocationHost( Location lhs, Location rhs ) {
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocatable.java29 * A mirror that has a {@link Location}.
38 * Returns the {@link Location} of this mirror, if there
45 * @return the {@link Location} of this mirror, or null if
48 Location location();
H A DMethod.java204 * Returns a list containing a {@link Location} object for
212 * @return a List of all source line {@link Location} objects.
218 List<Location> allLineLocations() throws AbsentInformationException;
221 * Returns a list containing a {@link Location} object for
227 * {@link Location#codeIndex}.
239 * (see {@link Location} for a description of strata).
247 * @return a List of all source line {@link Location} objects.
256 List<Location> allLineLocations(String stratum, String sourceName)
260 * Returns a List containing all {@link Location} objects
272 * @return a List of {@link Location} object
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/om/
H A DLocation.java48 public interface Location { } interface
/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
34 private Location location;
36 public LocationValue(Location location) {
44 public Location getLocation() {
50 location = new Location(stream);
H A DMonitorValue.java31 private Location basicLock;
35 // MonitorValue(ScopeValue* owner, Location basic_lock);
38 basicLock = new Location(stream);
44 public Location basicLock() { return basicLock; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DLocation.java31 * Location information for {@link IllegalAnnotationException}.
36 // internally, Location is created from Locatable.
37 public interface Location { interface
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DDummyLocation.java28 import javax.xml.stream.Location;
31 * {@link Location} that returns no info.
35 public final class DummyLocation implements Location {
38 public static final Location INSTANCE = new DummyLocation();
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependency.java30 * A directed relationship between two {@link Dependency.Location Location}s.
64 * A location somewhere within a class. Subtypes of {@code Location}
67 public interface Location { interface in interface:Dependency
82 Location getOrigin();
88 Location getTarget();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DNonConcreteMethodImpl.java44 private Location location = null;
57 public Location location() {
67 public List<Location> allLineLocations(String stratumID,
69 return new ArrayList<Location>(0);
72 public List<Location> allLineLocations(SDE.Stratum stratum,
74 return new ArrayList<Location>(0);
77 public List<Location> locationsOfLine(String stratumID,
80 return new ArrayList<Location>(0);
83 public List<Location> locationsOfLine(SDE.Stratum stratum,
86 return new ArrayList<Location>(
[all...]
/openjdk7/langtools/src/share/classes/javax/tools/
H A DStandardLocation.java28 import javax.tools.JavaFileManager.Location;
38 public enum StandardLocation implements Location {
41 * Location of new class files.
46 * Location of new source files.
51 * Location to search for user class files.
56 * Location to search for existing source files.
61 * Location to search for annotation processors.
66 * Location to search for platform classes. Sometimes called
81 public static Location locationFor(final String name) {
84 for (Location locatio
[all...]
H A DJavaFileManager.java111 interface Location { interface in interface:JavaFileManager
145 ClassLoader getClassLoader(Location location);
167 Iterable<JavaFileObject> list(Location location,
185 String inferBinaryName(Location location, JavaFileObject file);
224 boolean hasLocation(Location location);
247 JavaFileObject getJavaFileForInput(Location location,
284 JavaFileObject getJavaFileForOutput(Location location,
329 FileObject getFileForInput(Location location,
374 FileObject getFileForOutput(Location location,
/openjdk7/jaxp/src/javax/xml/stream/
H A DLocation.java34 * All the information provided by a Location is optional. For example
41 public interface Location { interface
H A DXMLReporter.java63 public void report(String message, String errorType, Object relatedInformation, Location location)
/openjdk7/hotspot/make/bsd/
H A Dbuild.sh32 echo "Usage : $0 Build_Options Location"
34 echo "Location : specify any workspace which has gamma sources"
86 Location=$2
88 case ${Location} in
90 ?*) Location=`(cd ${Location}; pwd)`;;
94 ${GNUMAKE} -f ${Location}/make/bsd/Makefile $Build_Options GAMMADIR=${Location}
95 ${GNUMAKE} -f ${Location}/make/bsd/Makefile $Build_Options GAMMADIR=${Location}
[all...]
/openjdk7/hotspot/make/linux/
H A Dbuild.sh32 echo "Usage : $0 Build_Options Location"
34 echo "Location : specify any workspace which has gamma sources"
89 Location=$2
91 case ${Location} in
93 ?*) Location=`(cd ${Location}; pwd)`;;
97 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}
98 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DExceptionEvent.java90 * @return the {@link Location} where the exception will be caught or null if
93 public Location catchLocation();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DLocatable.java28 import com.sun.xml.internal.bind.v2.runtime.Location;
31 * {@link Location} that is chained.
52 * Gets the upstream {@link Location} information.
64 Location getLocation();
H A DQuick.java30 import com.sun.xml.internal.bind.v2.runtime.Location;
41 public /*so that our code generator can refer to this class*/ abstract class Quick implements Annotation, Locatable, Location {
59 public final Location getLocation() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DCommentList.java48 import com.sun.xml.internal.rngom.ast.om.Location;
51 public interface CommentList<L extends Location> {
/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.cpp29 void Location::print_on(outputStream* st) const {
31 // product of Location::invalid_loc() or Location::Location().
57 Location::Location(DebugInfoReadStream* stream) { function in class:Location
62 void Location::write_on(DebugInfoWriteStream* stream) {
67 // Valid argument to Location::new_stk_loc()?
68 bool Location::legal_offset_in_bytes(int offset_in_bytes) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DXMLStreamException2.java29 import javax.xml.stream.Location;
49 public XMLStreamException2(String msg, Location location) {
53 public XMLStreamException2(String msg, Location location, Throwable th) {
/openjdk7/langtools/src/share/classes/com/sun/mirror/apt/
H A DFiler.java121 PrintWriter createTextFile(Location loc,
142 OutputStream createBinaryFile(Location loc,
156 enum Location { enum in interface:Filer
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DStAXLocationWrapper.java25 import javax.xml.stream.Location;
39 private Location fLocation = null;
43 public void setLocation(Location location) {
47 public Location getLocation() {

Completed in 97 milliseconds

12345678910