/openjdk7/langtools/test/tools/javac/diags/examples/ |
H A D | Location.java | 27 class Location { class
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | location.cpp | 29 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 D | location.hpp | 32 // 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 D | Location.java | 34 * 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 D | Location.java | 31 * 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 D | Location.java | 48 public interface Location { } interface
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | Location.java | 46 * 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 D | Dependency.java | 30 * 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 D | Filer.java | 121 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 D | JavaFileManager.java | 111 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 D | Location.java | 34 /** <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 D | classFileParser.hpp | 88 enum Location { _in_field, _in_method, _in_class }; enum in class:VALUE_OBJ_CLASS_SPEC::AnnotationCollector 97 const Location _location; 99 AnnotationCollector(Location location)
|