Searched refs:location (Results 126 - 150 of 365) sorted by relevance

1234567891011>>

/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/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStackFrameImpl.java56 private final Location location; field in class:StackFrameImpl
70 this.location = new LocationImpl(vm, rt, SAMethod, (long)jvf.getBCI());
84 * Return the frame location.
87 public Location location() { method in class:StackFrameImpl
89 return location;
116 MethodImpl currentMethod = (MethodImpl)location.method();
142 List allVariables = location.method().variables();
200 " is not valid at this frame location");
215 MethodImpl mmm = (MethodImpl)location.method();
312 return location
[all...]
/openjdk7/jdk/src/share/back/
H A DthreadControl.h72 jmethodID method, jlocation location);
75 jlocation location);
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/prims/
H A DjvmtiExport.hpp127 static void post_field_modification(JavaThread *thread, methodOop method, address location,
227 static void at_single_stepping_point(JavaThread *thread, methodOop method, address location);
236 static void post_single_step (JavaThread *thread, methodOop method, address location);
237 static void post_raw_breakpoint (JavaThread *thread, methodOop method, address location);
239 static void post_exception_throw (JavaThread *thread, methodOop method, address location, oop exception);
240 static void notice_unwind_due_to_exception (JavaThread *thread, methodOop method, address location, oop exception, bool in_handler_frame);
249 address location, KlassHandle field_klass, Handle object, jfieldID field);
260 address location, KlassHandle field_klass, Handle object, jfieldID field,
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DDefaultValidationEventHandler.java87 // calculate the location message
88 String location = getLocation( event );
94 location ) );
101 * Calculate a location message for the event
/openjdk7/jdk/test/com/sun/jdi/
H A DExpiredRequestDeletionTest.java113 targetClass = bpe.location().declaringType();
133 erm.createBreakpointRequest(barMethod.location());
H A DInstanceFilter.java118 String methodStr = event.location().method().name();
133 targetClass = bpe.location().declaringType();
H A DInterruptHangTest.java105 event.location().method() + ":" +
106 event.location().lineNumber());
H A DMonitorFrameInfo.java97 targetClass = bpe.location().declaringType();
104 if (!mainThread.frame(0).location().method().name()
H A DSuspendThreadTest.java119 targetClass = (ClassType)bpe.location().declaringType();
123 Location loc1 = findMethod(targetClass, "bkpt", "()V").location();
H A DArgumentValuesTest.java114 targetClass = bpe.location().declaringType();
124 Method mmm = frame.location().method();
153 Method mmm = frame.location().method();
171 Method mmm = frame.location().method();
205 Method mmm = frame.location().method();
230 Method mmm = frame.location().method();
H A DPopSynchronousTest.java124 if (frame.location().method().name().equals(methodName)) {
155 return mainThread.frame(0).location().method().name().equals(methodName);
159 Location loc = mainThread.frame(0).location();
165 } else if ((meth.location().codeIndex() == loc.codeIndex()) != atStart) {
210 resumeTo(meth.location());
237 targetClass = bpe.location().declaringType();
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DMangleStepTest.java102 lineMatch(bpe.location(), jLines[0], lines[0]);
106 lineMatch(se.location(), jLines[i], lines[i]);
/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/jdk/src/share/classes/sun/awt/im/
H A DCompositionArea.java286 Point location = getLocationOnScreen();
287 rectangle.translate(location.x, location.y);
296 Point location = getLocationOnScreen();
297 x -= location.x + TEXT_ORIGIN_X;
298 y -= location.y + TEXT_ORIGIN_Y;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacFiler.java418 public FileObject createResource(JavaFileManager.Location location, argument
422 locationCheck(location);
429 fileManager.getFileForOutput(location, strPkg,
439 private void locationCheck(JavaFileManager.Location location) { argument
440 if (location instanceof StandardLocation) {
441 StandardLocation stdLoc = (StandardLocation) location;
443 throw new IllegalArgumentException("Resource creation not supported in location " +
448 public FileObject getResource(JavaFileManager.Location location, argument
462 // does not have the correct semantics for any "path" location
466 if (location
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCInputMethod.java588 int location = locationIn;
591 if ((location + length) > (fIMContext.getCommittedTextLength() + fCurrentTextLength)) {
592 length = fIMContext.getCommittedTextLength() - location;
598 theIterator = fIMContext.getCommittedText(location, location + length, null);
602 if (location < insertSpot) {
603 theIterator = fIMContext.getCommittedText(location, location + length, null);
604 } else if (location >= insertSpot && location < insertSpo
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLErrorReporter.java226 // An example would be to record the location of
229 // could report the location information of the
233 // caller to specify the location of the error being
351 * Reports an error at a specific location.
353 * @param location The error location.
365 public String reportError(XMLLocator location, argument
368 return reportError(location, domain, key, arguments, severity, null);
372 * Reports an error at a specific location.
374 * @param location Th
387 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity, Exception exception) argument
[all...]
/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/javax/swing/plaf/basic/
H A DBasicComboPopup.java207 Point location = getPopupLocation();
208 show( comboBox, location.x, location.y );
851 Point location = newEvent.getPoint();
854 if ( r.contains( location ) ) {
878 Point location = anEvent.getPoint();
881 if ( r.contains( location ) ) {
901 Point location = newEvent.getPoint();
902 if ( r.contains( location ) ) {
1205 * on the combo box location an
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.hpp29 #include "code/location.hpp"
40 // - LocationValue describes a value in a given location (in frame or register)
60 // A Location value describes a value in a given location; i.e. the corresponding
61 // logical entity (e.g., a method temporary) lives in this location.
67 LocationValue(Location location) { _location = location; } argument
69 Location location() const { return _location; } function in class:LocationValue
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java321 private final Location location; field in class:EventRequestManagerImpl.BreakpointRequestImpl
323 BreakpointRequestImpl(Location location) { argument
324 this.location = location;
326 .create(location));
330 public Location location() { method in class:EventRequestManagerImpl.BreakpointRequestImpl
331 return location;
339 return "breakpoint request " + location() + state();
811 public BreakpointRequest createBreakpointRequest(Location location) { argument
812 validateMirror(location);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DSlotLayout.java164 Point location = new Point(curLocation.x, client.y + client.height * z / (count + 1) - curBounds.height / 2);
166 location = new Point(client.x + client.width * z / (count + 1) - maxWidth / 2, curLocation.y);
168 c.resolveBounds(location, null);

Completed in 157 milliseconds

1234567891011>>