Searched refs:location (Results 176 - 200 of 365) sorted by relevance

1234567891011>>

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGenDoc.java179 LatitudeAndLongitude location = new LatitudeAndLongitude(token);
181 mapList.put(token, location);
192 LatitudeAndLongitude location = (LatitudeAndLongitude)mapList.get(zonename);
193 if (location != null) {
196 deg = location.getLatDeg();
197 min = location.getLatMin();
198 sec = location.getLatSec();
212 deg = location.getLongDeg();
213 min = location.getLongMin();
214 sec = location
[all...]
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec146 "location where it was originally stopped. "
1818 (location location "The current location of this frame")
1953 (int stack_depth "Stack depth location where monitor was acquired")
2258 "whose location is in the given reference type or any of its subtypes. "
2259 "An event will be generated for any location in a reference type that can "
2274 "the class name of the event's location is matched. "
2294 "the class name of the event's location is matched. "
2307 "the given location
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java281 // the divider location provided by the JSplitPane. This is used as there
656 * Returns the last drag location of the JSplitPane.
664 * Set the last drag location of the JSplitPane.
944 * Sets the location of the divider to location.
946 public void setDividerLocation(JSplitPane jc, int location) { argument
956 location != insets.top &&
957 location != splitPane.getHeight()-divider.getHeight()-insets.top) ||
959 location != insets.left &&
960 location !
1192 dragDividerTo(int location) argument
1234 finishDraggingTo(int location) argument
1678 setComponentToSize(Component c, int size, int location, Insets insets, Dimension containerSize) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp246 JvmtiLocationEventMark(JavaThread *thread, methodHandle method, address location) : argument
248 _loc(location - method->code_base()) {};
249 jlocation location() { return _loc; } function in class:JvmtiLocationEventMark
257 JvmtiExceptionEventMark(JavaThread *thread, methodHandle method, address location, Handle exception) : argument
258 JvmtiLocationEventMark(thread, method, location),
774 void JvmtiExport::post_raw_breakpoint(JavaThread *thread, methodOop method, address location) { argument
786 ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_BREAKPOINT); local
794 location - mh()->code_base() ));
797 JvmtiLocationEventMark jem(thread, mh, location);
802 jem.jni_methodID(), jem.location());
855 at_single_stepping_point(JavaThread *thread, methodOop method, address location) argument
1229 post_single_step(JavaThread *thread, methodOop method, address location) argument
1239 ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_SINGLE_STEP); local
1262 post_exception_throw(JavaThread *thread, methodOop method, address location, oop exception) argument
1343 notice_unwind_due_to_exception(JavaThread *thread, methodOop method, address location, oop exception, bool in_handler_frame) argument
1467 post_field_access(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field) argument
1565 post_raw_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value) argument
1623 post_field_modification(JavaThread *thread, methodOop method, address location, KlassHandle field_klass, Handle object, jfieldID field, char sig_type, jvalue *value_ptr) argument
[all...]
H A DjvmtiEnvThreadState.hpp150 // location just return. Otherwise, reset the current location
154 void compare_and_set_current_location(methodOop method, address location, jvmtiEvent event);
/openjdk7/jdk/src/share/back/
H A DeventFilter.c51 jlocation location; member in struct:LocationFilter
426 evinfo->location !=
427 filter->u.LocationOnly.location ||
754 jlocation location)
775 filter->location = location;
989 * same location as the LocationFilter passed in arg.
1006 trial->location == goal->location &&
1017 * Set a breakpoint if this is the first one at this location
752 eventFilter_setLocationOnlyFilter(HandlerNode *node, jint index, jclass clazz, jmethodID method, jlocation location) argument
1080 isBreakpointSet(jclass clazz, jmethodID method, jlocation location) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibleText.java241 static double[] getBoundsForRange(final Accessible a, final Component c, final int location, final int length) { argument
257 final Rectangle2D boundsStart = at.getCharacterBounds(location);
258 final Rectangle2D boundsEnd = at.getCharacterBounds(location + length - 1);
279 static String getStringForRange(final Accessible a, final Component c, final int location, final int length) { argument
289 return aet.getTextRange(location, location + length);
/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/jaxp/src/javax/xml/transform/
H A DTransformerException.java54 * @param location A SourceLocator object, or null to clear the location.
56 public void setLocator(SourceLocator location) { argument
57 locator = location;
207 * Get the error message with location information
211 * location information appended.
247 * Get the location information as a string.
249 * @return A string with location info, or null
250 * if there is no location information.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCRegisterMap.java221 location[R_O_nums[i]] = location[R_I_nums[i]];
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceModel.java210 if (bp.location() != null) {
211 Location loc = bp.location();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DJAXBModelBuilder.java89 String location = element.getOwnerDocument().getDocumentURI();
90 String systemId = location + "#types?schema" + schemaElementCount++;
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java149 String location = "http://"+host+uri.getPath() + "/";
151 map.set ("Location", location);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DB6216082.java178 String location = "/redirect";
179 trans.addResponseHeader("Location", location);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java128 for (StandardLocation location : StandardLocation.values())
129 fm.setLocation(location, path);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java192 CIntegerAccessor location = lookupCInt("saExceptionLocation");
198 (int) location.getValue(), exception.getValue(),
206 CIntegerAccessor location = lookupCInt("saBreakpointLocation");
208 method, (int) location.getValue());
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSplitPane.java61 * <code>setDividerLocation</code> where <code>location</code> is either
227 * Previous location of the split pane.
595 * Sets the last location the divider was at to
598 * @param newLastLocation an integer specifying the last divider location
603 * description: The last location the divider was at.
615 * Returns the last location the divider was at.
617 * @return an integer specifying the last divider location as a count
747 * the divider location.
759 * Sets the divider location as a percentage of the
766 * screen, this method will have no effect (new divider location wil
807 setDividerLocation(int location) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.hpp28 #include "code/location.hpp"
108 static BasicLock* resolve_monitor_lock(const frame* fr, Location location);
H A Dvframe_hp.hpp74 BasicLock* resolve_monitor_lock(Location location) const;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDataPatternBuilderImpl.java66 p.location = (Locator)loc;
/openjdk7/jdk/test/com/sun/jdi/
H A DAfterThreadDeathTest.java130 targetClass = bpe.location().declaringType();
H A DAnyDebuggeeTest.java109 targetClass = bpe.location().declaringType();
H A DBreakpointTest.java128 targetClass = (ClassType)bpe.location().declaringType();
H A DEnumTest.java88 targetClass = bpe.location().declaringType();
H A DGetLocalVariables2Test.java85 targetClass = bpe.location().declaringType();

Completed in 1021 milliseconds

1234567891011>>