Searched defs:location (Results 101 - 125 of 180) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEnv.java161 * Return a Reader cooresponding to the source of this location.
165 static BufferedReader sourceReader(Location location) { argument
166 return sourceMapper.sourceReader(location);
169 static synchronized String sourceLine(Location location, int lineNumber) argument
176 String fileName = location.sourceName();
189 BufferedReader reader = sourceReader(location);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java51 final Map<Integer, List<Location>> lineMapper; // Maps line number to location(s)
74 private Location location = null; field in class:ConcreteMethodImpl
94 public Location location() { method in class:ConcreteMethodImpl
95 if (location == null) {
98 return location;
303 // location not mapped in this stratum
328 // Add to the location list
379 * lines at the same location. We need to choose
381 * and forth between line and location. So we choose
383 * location
[all...]
H A DPacketStream.java179 void writeLocation(Location location) { argument
180 ReferenceTypeImpl refType = (ReferenceTypeImpl)location.declaringType();
192 writeMethodRef(((MethodImpl)location.method()).ref());
193 writeLong(location.codeIndex());
556 * Read location represented as vm specific byte sequence.
564 /* Valid location */
568 /* Null location (example: uncaught exception) */
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java646 public Point location(int x, int y) { method in class:GridBagLayout
1770 * @param cellY the location of the row, does not include insets
1791 // Component not resizable, calculate y location
1863 // Reset the components y location based on
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowScene.java206 public void setNewLocation(Widget widget, Point location) { argument
208 int xOffset = location.x - originalLocation.x;
209 int yOffset = location.y - originalLocation.y;
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java464 private static void copy(URL location, File file) throws IOException { argument
465 try (InputStream in = location.openStream()) {
/openjdk7/jdk/src/share/back/
H A DstepControl.c130 findLineNumber(jthread thread, jlocation location, argument
135 if (location != -1) {
140 if (location < lines[i].start_location) {
225 jlocation location; local
227 error = getFrameLocation(thread, &clazz, &method, &location);
244 step->fromLine = findLineNumber(thread, location,
469 * until we reach the next safe location to complete the step->,
630 jlocation location; local
635 &clazz, &method, &location);
638 location
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp412 // Conversion from an VMReg to physical stack location
497 // A simple class to describe a location on the stack
500 intptr_t* location; member in class:VALUE_OBJ_CLASS_SPEC
516 if (a->location == b->location) {
519 return a->location - b->location;
524 void describe(int owner, intptr_t* location, const char* description, int priority = 0);
536 // top most frame. It automatically takes care of updating the location of
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DSchema.java61 location = new File(baseDir,loc);
72 if(($ai = $runtime.getAttributeIndex("","location"))>=0) {
137 if(($ai = $runtime.getAttributeIndex("","location"))>=0) {
180 if(($__uri.equals("") && $__local.equals("location"))) {
248 if(($__uri.equals("") && $__local.equals("location"))) {
276 if(($ai = $runtime.getAttributeIndex("","location"))>=0) {
322 private File location; field in class:Schema
325 public File getLocation() { return this.location;}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java302 s.location(e.getValue().getAbsolutePath());
319 void wsdl(String file); // location of WSDL
348 void location(String filePath); method in interface:WsgenTool.ReportOutput.Schema
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBindInfo.java79 private Locator location; field in class:BindInfo
133 // this is really PITA! I can't get the source location
156 * Gets the location of this annotation in the source file.
164 public Locator getSourceLocation() { return location; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java362 private final LocatorEx location; field in class:Lister.IDREFS.Pack
368 this.location = new LocatorEx.Snapshot(context.getLocator());
396 context.errorUnresolvedIDREF(bean,id,location);
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java122 Path getPathForLocation(Location location) { argument
123 Path path = pathsForLocation.get(location);
125 setPathForLocation(location, null);
126 return pathsForLocation.get(location);
129 void setPathForLocation(Location location, Iterable<? extends File> path) { argument
134 if (location == CLASS_PATH)
136 else if (location == PLATFORM_CLASS_PATH)
138 else if (location == ANNOTATION_PROCESSOR_PATH)
140 else if (location == SOURCE_PATH)
146 if (location
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocTool.java217 Location location = docenv.fileManager.hasLocation(StandardLocation.SOURCE_PATH)
221 location, name, EnumSet.of(JavaFileObject.Kind.SOURCE), false)) {
222 String binaryName = docenv.fileManager.inferBinaryName(location, fo);
276 StandardLocation location, Set<JavaFileObject.Kind> kinds)
282 for (JavaFileObject fo: docenv.fileManager.list(location, subPackage, kinds, true)) {
283 String binaryName = docenv.fileManager.inferBinaryName(location, fo);
272 searchSubPackages(List<String> subPackages, Map<String,Boolean> includedPackages, ListBuffer<String> packages, Map<String, List<JavaFileObject>> packageFiles, StandardLocation location, Set<JavaFileObject.Kind> kinds) argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_event.c216 jlocation location, jobject exception)
312 /* Get the TlsIndex and a TraceIndex for this location */
330 /* Get the SiteIndex for this location and a java.lang.Class object */
215 event_exception_catch(JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethod.java469 public void notifyClientWindowChange(Rectangle location) { argument
/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java109 public void setLocation(Location location, Iterable<? extends File> path) throws IOException { argument
110 fileManager.setLocation(location, path);
113 public Iterable<? extends File> getLocation(Location location) { argument
114 return fileManager.getLocation(location);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneDivider.java506 protected void dragDividerTo(int location) { argument
507 splitPaneUI.dragDividerTo(location);
515 protected void finishDraggingTo(int location) { argument
516 splitPaneUI.finishDraggingTo(location);
681 * Initial location of the divider.
691 * Initial location the mouse down happened at.
780 * Messages dragDividerTo with the new location for the mouse
794 * Messages finishDraggingTo with the new location for the mouse
1028 // We use the location from the UI directly, as the location th
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java98 * parent and pixel (60, 60) of the child occupy the same location in
181 * location argument. If location is null, (0, 0) will be used.
195 * @param location the upper-left corner of the <code>Raster</code>
200 * <code>location.x + w</code> or
201 * <code>location.y + h</code> results in integer
207 Point location) {
213 bandOffsets, location);
223 * location argument. If location i
204 createInterleavedRaster(int dataType, int w, int h, int bands, Point location) argument
253 createInterleavedRaster(int dataType, int w, int h, int scanlineStride, int pixelStride, int bandOffsets[], Point location) argument
308 createBandedRaster(int dataType, int w, int h, int bands, Point location) argument
365 createBandedRaster(int dataType, int w, int h, int scanlineStride, int bankIndices[], int bandOffsets[], Point location) argument
451 createPackedRaster(int dataType, int w, int h, int bandMasks[], Point location) argument
522 createPackedRaster(int dataType, int w, int h, int bands, int bitsPerBand, Point location) argument
627 createInterleavedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int pixelStride, int bandOffsets[], Point location) argument
689 createBandedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int bankIndices[], int bandOffsets[], Point location) argument
760 createPackedRaster(DataBuffer dataBuffer, int w, int h, int scanlineStride, int bandMasks[], Point location) argument
821 createPackedRaster(DataBuffer dataBuffer, int w, int h, int bitsPerPixel, Point location) argument
879 createRaster(SampleModel sm, DataBuffer db, Point location) argument
935 createWritableRaster(SampleModel sm, Point location) argument
965 createWritableRaster(SampleModel sm, DataBuffer db, Point location) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java583 VerifierCodeSource(Object csdomain, URL location, CodeSigner[] signers) { argument
584 super(location, signers);
586 vlocation = location;
590 VerifierCodeSource(Object csdomain, URL location, java.security.cert.Certificate[] certs) { argument
591 super(location, certs);
593 vlocation = location;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp99 AnnotationCollector(Location location) argument
100 : _location(location), _annotations_present(0)
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java53 // A "desc" (descriptor) is a bit-encoded pair of a location
114 storeIndex(fx.location(), fx.format(), 0);
240 int desc; // location and format of reloc
250 public int location() { return descLoc(desc); } method in class:Fixups.Fixup
254 // Ordering depends only on location.
255 return this.location() - that.location();
266 return "@"+location()+(format()==U1_FORMAT?".1":"")+"="+entry;
304 public void add(int location, int format, Entry entry) { argument
305 addDesc(makeDesc(location, forma
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfo.java137 public CClassInfo(Model model,JPackage pkg, String shortName, Locator location, QName typeName, QName elementName, XSComponent source, CCustomizations customizations) { argument
138 this(model,model.getPackage(pkg),shortName,location,typeName,elementName,source,customizations);
141 public CClassInfo(Model model,CClassInfoParent p, String shortName, Locator location, QName typeName, QName elementName, XSComponent source, CCustomizations customizations) { argument
142 super(model,source,location,customizations);
162 public CClassInfo(Model model,JCodeModel cm, String fullName, Locator location, QName typeName, QName elementName, XSComponent source, CCustomizations customizations) { argument
163 super(model,source,location,customizations);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DAbstractSEIModelImpl.java338 void setWSDLLocation(String location) { argument
339 wsdlLocation = location;

Completed in 100 milliseconds

12345678