Searched defs:location (Results 126 - 150 of 180) sorted by relevance

12345678

/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java82 public byte[] bytecodes(String className, String methodName, int location) { argument
102 public byte[] bytecodes(String className, String methodName, int location) { argument
135 dataOut.writeInt(info.location);
141 public byte[] bytecodes(String className, String methodName, int location) { argument
144 infoList.add(new Info(counter, className, methodName, location));
314 // so mark this location so we can rewind
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java157 public ClassLoader getClassLoader(Location location) { argument
158 nullCheck(location);
159 Iterable<? extends Path> path = getLocation(location);
181 public boolean hasLocation(Location location) { argument
182 return (getLocation(location) != null);
185 public Iterable<? extends Path> getLocation(Location location) { argument
186 nullCheck(location);
188 PathsForLocation path = pathsForLocation.get(location);
189 if (path == null && !pathsForLocation.containsKey(location)) {
190 setDefaultForLocation(location);
196 getOutputLocation(Location location) argument
201 setLocation(Location location, Iterable<? extends Path> searchPath) argument
305 list(Location location, String packageName, Set<Kind> kinds, boolean recurse) argument
415 getJavaFileForInput(Location location, String className, Kind kind) argument
421 getFileForInput(Location location, String packageName, String relativeName) argument
426 getFileForInput(Location location, String relativePath) argument
446 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
452 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
458 getFileForOutput(Location location, String relativePath, FileObject sibling) argument
487 inferBinaryName(Location location, JavaFileObject fo) argument
[all...]
/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/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/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java333 public void pathToPoint(Point2D location, boolean preceding, Point2D point) { argument
334 locateAndGetIndex(location, preceding, point);
394 // location back to a point).
518 * Return the location of the point passed in result as mapped to the
620 * Map a location based on the provided segment, returning in pt.
965 public void pathToPoint(Point2D location, boolean preceding, Point2D point) { argument
967 tx.transform(location, point);
969 point.setLocation(location);
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java1870 // temporary directory location
1873 static File location() { method in class:File.TempDirectory
1975 : TempDirectory.location();
1984 // don't reveal temporary directory location
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp160 // This can never be a stack location, so we don't need to transform it.
161 assert(optional->is_reg(), "Trying to callee save a stack location");
485 // Scan through oopmap and find location of all callee-saved registers
607 DerivedPointerEntry(oop* location, intptr_t offset) { _location = location; _offset = offset; } argument
608 oop* location() { return _location; } function in class:DerivedPointerEntry
630 // Returns value of location as an int
636 assert(derived_loc != base_loc, "Base and derived in same location");
638 assert(*derived_loc != (oop)base_loc, "location already added");
653 // Set derived oop location t
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java190 private Location location; field in class:EventSetImpl.LocatableEventImpl
194 ThreadReference thread, Location location) {
196 this.location = location;
199 public Location location() { method in class:EventSetImpl.LocatableEventImpl
200 return location;
207 return location.method();
212 ((location() == null) ? " null" : location().toString()) +
220 super(evt, evt.requestID, evt.thread, evt.location);
192 LocatableEventImpl(JDWP.Event.Composite.Events.EventsCommon evt, int requestID, ThreadReference thread, Location location) argument
491 WatchpointEventImpl(JDWP.Event.Composite.Events.EventsCommon evt, int requestID, ThreadReference thread, Location location, byte refTypeTag, long typeID, long fieldID, ObjectReference object) argument
[all...]
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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaSetImpl.java81 public SchemaImpl createSchema(String targetNamespace, Locator location) { argument
84 obj = new SchemaImpl(this, location, targetNamespace);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java197 public ClassLoader getClassLoader(Location location) { argument
199 return clientJavaFileManager.getClassLoader(location);
210 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { argument
212 return wrapJavaFileObjects(clientJavaFileManager.list(location, packageName, kinds, recurse));
223 public String inferBinaryName(Location location, JavaFileObject file) { argument
225 return clientJavaFileManager.inferBinaryName(location, unwrap(file));
262 public boolean hasLocation(Location location) { argument
264 return clientJavaFileManager.hasLocation(location);
275 public JavaFileObject getJavaFileForInput(Location location, String className, Kind kind) throws IOException { argument
277 return wrap(clientJavaFileManager.getJavaFileForInput(location, classNam
288 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
301 getFileForInput(Location location, String packageName, String relativeName) argument
314 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java610 public ClassLoader getClassLoader(Location location) { argument
611 nullCheck(location);
612 Iterable<? extends File> path = getLocation(location);
627 public Iterable<JavaFileObject> list(Location location, argument
637 Iterable<? extends File> path = getLocation(location);
648 public String inferBinaryName(Location location, JavaFileObject file) { argument
650 location.getClass(); // null check
651 // Need to match the path semantics of list(location, ...)
652 Iterable<? extends File> path = getLocation(location);
673 public boolean hasLocation(Location location) { argument
677 getJavaFileForInput(Location location, String className, JavaFileObject.Kind kind) argument
691 getFileForInput(Location location, String packageName, String relativeName) argument
707 getFileForInput(Location location, RelativeFile name) argument
732 getJavaFileForOutput(Location location, String className, JavaFileObject.Kind kind, FileObject sibling) argument
747 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
764 getFileForOutput(Location location, RelativeFile fileName, FileObject sibling) argument
813 setLocation(Location location, Iterable<? extends File> path) argument
855 getLocation(Location location) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_trace.c202 jlocation location; local
218 frame_get_location(frame_index, frame_serial_num, &method, &location, &lineno);
517 jlocation location; local
520 location = jframes_buffer[i+topframe].location;
521 frames_buffer[i] = frame_find_or_create(method, location);
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c780 * Find path to JRE based on .exe's location or registry settings.
822 int location; local
851 char* location; local
855 location = JLI_StrStr(buf, "sparcv8plus ");
856 if (location == NULL) {
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java314 public ClassLoader getClassLoader(Location location) { argument
316 return super.getClassLoader(location);
320 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { argument
322 return wrap(super.list(location, packageName, kinds, recurse));
326 public String inferBinaryName(Location location, JavaFileObject file) { argument
328 return super.inferBinaryName(location, unwrap(file));
344 public boolean hasLocation(Location location) { argument
346 return super.hasLocation(location);
350 public JavaFileObject getJavaFileForInput(Location location, String className, Kind kind) throws IOException { argument
352 return wrap(super.getJavaFileForInput(location, classNam
356 getJavaFileForOutput(Location location, String className, Kind kind, FileObject sibling) argument
362 getFileForInput(Location location, String packageName, String relativeName) argument
368 getFileForOutput(Location location, String packageName, String relativeName, FileObject sibling) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java612 private SyntaxTreeNode loadExternalStylesheet(String location) argument
617 // Check if the location is URL or a local file
618 if ((new File(location)).exists())
619 source = new InputSource("file:"+location);
621 source = new InputSource(location);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaLoader.java199 /** Property identifier: schema location. */
203 /** Property identifier: no namespace schema location. */
547 * @param source the location of the entity which forms
568 // Process external schema location properties.
589 * to resolve the location of the schema in XSDDescription
620 /** This method tries to resolve location of the given schema.
621 * The loader stores the namespace/location pairs in a hashtable (use "" as the
624 * if so, pass that location value to the user-defined entity resolver.
635 // we consider the schema location properties for import
641 // get the location hin
938 addLocation(String location) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java391 * @param location The location within the stylesheet.
393 public void setSAXLocator(SourceLocator location) argument
395 m_saxLocations.setTop(location);
401 * @param location The location within the stylesheet.
403 public void pushSAXLocator(SourceLocator location) argument
405 m_saxLocations.push(location);
430 * @return The location within the stylesheet, or null if not known.
819 * Set the current location pat
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java1298 private URL location; field in class:SynthParser.LazyImageIcon
1300 public LazyImageIcon(URL location) { argument
1302 this.location = location;
1326 if (location != null) {
1327 setImage(Toolkit.getDefaultToolkit().getImage(location));
1328 location = null;
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java270 * starting at the passed in location. The ordering of the enumeration
338 * file has changed, but it is in the same location in the file
630 * Returns the index of the row containing location. If there
631 * are no rows, -1 is returned. If location is beyond the last
634 private int getRowContainingYLocation(int location) { argument
638 location / getRowHeight()));
1199 * Adds newChild to this nodes children at the appropriate location.
1200 * The location is determined from the childIndex of newChild.
H A DVariableHeightLayoutCache.java228 * @param row the location of interest
337 * starting at the passed in location. The ordering of the enumeration
340 * @param path the location in the <code>TreePath</code> to start
399 * file has changed, but it is in the same location in the file
880 * location.
882 private void updateYLocationsFrom(int location) { argument
883 if(location >= 0 && location < getRowCount()) {
887 aNode = getNode(location);
889 for(counter = location
927 getRowContainingYLocation(int location) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DdebugInit.c495 jthread thread, jmethodID method, jlocation location,
494 cbEarlyException(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception, jmethodID catch_method, jlocation catch_location) argument
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...]
H A DeventHandler.c270 * the co-location of events policy. Of these three co-located
288 * Co-location of events policy used to be implemented via
308 * location information for the METHOD_ENTRY or SINGLE_STEP event
324 EventIndex ei, jclass clazz, jmethodID method, jlocation location)
347 deferring = isBreakpointSet(clazz, method, location);
350 clazz, method, location);
369 jclass clazz, jmethodID method, jlocation location)
374 if (threadControl_cmpCLEInfo(env, thread, clazz, method, location)) {
376 "%s,thread=%p,clazz=%p,method=%p,location=%d",
377 eventText(ei), thread, clazz, method, location));
323 deferEventReport(JNIEnv *env, jthread thread, EventIndex ei, jclass clazz, jmethodID method, jlocation location) argument
368 skipEventReport(JNIEnv *env, jthread thread, EventIndex ei, jclass clazz, jmethodID method, jlocation location) argument
388 reportEvents(JNIEnv *env, jbyte sessionID, jthread thread, EventIndex ei, jclass clazz, jmethodID method, jlocation location, struct bag *eventBag) argument
748 cbSingleStep(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location) argument
770 cbBreakpoint(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location) argument
819 cbException(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception, jmethodID catch_method, jlocation catch_location) argument
932 cbFieldAccess(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field) argument
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
988 cbExceptionCatch(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
1066 jlocation location; local
1099 jlocation location; local
1133 jlocation location; local
1175 jlocation location; local
1641 createInternal(EventIndex ei, HandlerFunction func, jthread thread, jclass clazz, jmethodID method, jlocation location, jboolean permanent) argument
1698 eventHandler_createInternalBreakpoint(HandlerFunction func, jthread thread, jclass clazz, jmethodID method, jlocation location) argument
[all...]
H A DeventHelper.c65 jlocation location; member in struct:FrameEventCommandSingle
284 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
291 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
302 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
319 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
333 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
355 * So get the method class to write location info.
359 writeCodeLocation(out, klass, evinfo->method, evinfo->location);
370 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location);
473 writeCodeLocation(out, command->clazz, command->method, command->location);
1030 eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei, jthread thread, jclass clazz, jmethodID method, jlocation location, int needReturnValue, jvalue returnValue, struct bag *eventBag) argument
[all...]

Completed in 1952 milliseconds

12345678