Searched refs:save (Results 51 - 75 of 97) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp375 intptr_t save = _recursions ; local
383 _recursions = save ;
H A DjvmtiRedefineClasses.cpp496 typeArrayOop save; local
498 save = scratch_class->get_method_annotations_of(i);
500 scratch_class->set_method_annotations_of(j, save);
502 save = scratch_class->get_method_parameter_annotations_of(i);
504 scratch_class->set_method_parameter_annotations_of(j, save);
506 save = scratch_class->get_method_default_annotations_of(i);
508 scratch_class->set_method_default_annotations_of(j, save);
1268 // This old_cp is an actual original constant pool. We save
1434 // the method has been replaced so save the new method version
2352 // sized constant pool with the klass to save spac
[all...]
/openjdk7/jdk/test/java/nio/file/attribute/PosixFileAttributeView/
H A DBasic.java137 Set<PosixFilePermission> save = view.readAttributes()
164 view.setPermissions(save);
/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java1469 IdentityArrayList<Window> save = new IdentityArrayList<Window>();
1473 save.add(w);
1479 Window w = save.get(i);
H A DCheckbox.java627 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
636 AWTEventMulticaster.save(s, itemListenerK, itemListener);
H A DChoice.java663 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
672 AWTEventMulticaster.save(s, itemListenerK, itemListener);
H A DMenuItem.java715 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
723 AWTEventMulticaster.save(s, actionListenerK, actionListener);
H A DTextField.java661 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
669 AWTEventMulticaster.save(s, actionListenerK, actionListener);
H A DList.java1197 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
1213 AWTEventMulticaster.save(s, itemListenerK, itemListener);
1214 AWTEventMulticaster.save(s, actionListenerK, actionListener);
H A DScrollbar.java1168 * @see AWTEventMulticaster#save(ObjectOutputStream, String, EventListener)
1177 AWTEventMulticaster.save(s, adjustmentListenerK, adjustmentListener);
H A DComponent.java3989 // save the current bounds
4285 // save the current bounds
8626 * @see AWTEventMulticaster#save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener)
8645 AWTEventMulticaster.save(s, componentListenerK, componentListener);
8646 AWTEventMulticaster.save(s, focusListenerK, focusListener);
8647 AWTEventMulticaster.save(s, keyListenerK, keyListener);
8648 AWTEventMulticaster.save(s, mouseListenerK, mouseListener);
8649 AWTEventMulticaster.save(s, mouseMotionListenerK, mouseMotionListener);
8650 AWTEventMulticaster.save(s, inputMethodListenerK, inputMethodListener);
8655 AWTEventMulticaster.save(
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DProperties.java53 * instead. If the <code>store</code> or <code>save</code> method is called
695 * occurs while saving the property list. The preferred way to save a
707 public void save(OutputStream out, String comments) { method in class:Properties
936 XMLUtils.save(this, os, comment, encoding);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java135 ArrayList save = new ArrayList(this);
138 addAll(save);
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/
H A DKtab.java285 // admin.save();
286 table.save();
296 System.err.println("Failed to save new entry.");
409 table.save();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DvtableStubs_sparc.cpp151 __ save(SP,-frame::register_save_words*wordSize,SP);
249 // save %sp, -64, %sp
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c2150 * transform appropriately, then it would save a lot of work/time.
2637 png_byte save; local
2642 save = *(--sp);
2646 *(--dp) = save;
2656 png_byte save[2]; local
2661 save[0] = *(--sp);
2662 save[1] = *(--sp);
2669 *(--dp) = save[0];
2670 *(--dp) = save[1];
2683 png_byte save; local
2700 png_byte save[2]; local
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanDirConfig.java64 * load and save the <i>scandir</i> application configuration to and from an
69 * can later save to the file, by calling {@link #save}, or discard, by
112 // We will emit a notification when the save state of this object
173 // This object save state. CREATED is the initial state.
194 * Can be null (in which case load() and save() will fail).
196 * load() will fail if called before save(), and save() will
198 * in which case load() will load that file and save() will save
234 public void save() throws IOException { method in class:ScanDirConfig
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp591 // use malloc, but save pointer in res. area for later freeing
592 char** save = (char**)internal_malloc_4(sizeof(char*)); local
593 return (*save = (char*)os::malloc(size, mtChunk));
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.c639 char save = *(ptr + 2); local
645 *(ptr + 2) = save;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Soundbank.java508 public void save(String name) throws IOException { method in class:SF2Soundbank
512 public void save(File file) throws IOException { method in class:SF2Soundbank
516 public void save(OutputStream out) throws IOException { method in class:SF2Soundbank
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java2761 int save = flags;
2858 flags = save;
4554 int save = matcher.locals[localIndex];
4557 matcher.locals[localIndex] = save;
4561 int save = matcher.locals[localIndex];
4564 matcher.locals[localIndex] = save;
4622 // This is a group reference case. We don't need to save any
4648 * is called from the Prolog to save the index of where the group
4695 int save = matcher.locals[countIndex];
4708 matcher.locals[countIndex] = save;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java800 cipher.save();
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp1368 intptr_t save = _recursions; // record the old recursion count local
1372 return save;
1499 intptr_t save = _recursions; // record the old recursion count local
1634 _recursions = save; // restore the old recursion count
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s223 save %sp,-MINFRAME,%sp ! reserve space for stack
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DFileCredentialsCache.java252 public synchronized void save() throws IOException, Asn1Exception { method in class:FileCredentialsCache

Completed in 164 milliseconds

1234