Search

Searched defs:Location (Results 1 - 12 of 12) sorted by relevance

/openjdk7/langtools/test/tools/javac/diags/examples/
H A DLocation.java27 class Location { class
/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) {
H A Dlocation.hpp32 // A Location describes a concrete machine variable location
43 class Location VALUE_OBJ_CLASS_SPEC {
76 // Create a bit-packed Location
77 Location(Where where_, Type type_, unsigned offset_) { function in class:VALUE_OBJ_CLASS_SPEC
93 static Location new_stk_loc( Type t, int offset ) { return Location(on_stack,t,offset>>LogBytesPerInt); }
95 static Location new_reg_loc( Type t, VMReg reg ) { return Location(in_register, t, reg->value()); }
97 Location() { set(on_stack,invalid,0); } function in class:VALUE_OBJ_CLASS_SPEC
117 Location(DebugInfoReadStrea
[all...]
/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
/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/rngom/ast/om/
H A DLocation.java48 public interface Location { } interface
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocation.java46 * The source information for a Location is dependent on the
61 * does not apply to other strata - thus each Location should
89 public interface Location extends Mirror, Comparable<Location> { interface in inherits:Mirror,Comparable
92 * Gets the type to which this Location belongs. Normally
97 * @return the {@link ReferenceType} containing this Location.
102 * Gets the method containing this Location.
138 * (see the {@link Location class comment} for a
142 * file for this Location. For example,
183 * (see the {@link Location clas
[all...]
/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/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/langtools/src/share/classes/javax/tools/
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/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DLocation.java34 /** <P> A Location describes a concrete machine variable location
48 public class Location { class
62 OFFSET_MASK = db.lookupIntConstant("Location::OFFSET_MASK").intValue();
63 OFFSET_SHIFT = db.lookupIntConstant("Location::OFFSET_SHIFT").intValue();
64 TYPE_MASK = db.lookupIntConstant("Location::TYPE_MASK").intValue();
65 TYPE_SHIFT = db.lookupIntConstant("Location::TYPE_SHIFT").intValue();
66 WHERE_MASK = db.lookupIntConstant("Location::WHERE_MASK").intValue();
67 WHERE_SHIFT = db.lookupIntConstant("Location::WHERE_SHIFT").intValue();
69 // Location::Type constants
70 TYPE_NORMAL = db.lookupIntConstant("Location
191 Location(Where where, Type type, int offset) { method in class:Location
330 public Location(DebugInfoReadStream stream) { method in class:Location
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp88 enum Location { _in_field, _in_method, _in_class }; enum in class:VALUE_OBJ_CLASS_SPEC::AnnotationCollector
97 const Location _location;
99 AnnotationCollector(Location location)

Completed in 6434 milliseconds