Searched defs:save (Results 1 - 25 of 41) sorted by relevance

12

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DSaveAsAction.java58 save(doc);
61 public static void save(GraphDocument doc) { method in class:SaveAsAction
101 return "com/sun/hotspot/igv/coordinator/images/save.gif";
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDBuilder.java82 void save(DataOutputStream out, String className) throws IOException { method in class:DTDBuilder
305 dtd.save(str, argv[0]);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DMemoryCredentialsCache.java63 public abstract void save() throws IOException, KrbException; method in class:MemoryCredentialsCache
H A DCredentialsCache.java120 public abstract void save() throws IOException, KrbException; method in class:CredentialsCache
H A DFileCredentialsCache.java252 public synchronized void save() throws IOException, Asn1Exception { method in class:FileCredentialsCache
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java38 * A class used to aid in Properties load and save in XML. Keeping this
123 static void save(Properties props, OutputStream os, String comment, method in class:XMLUtils
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/hotspot/src/share/vm/memory/
H A DresourceArea.hpp76 // use malloc, but save pointer in res. area for later freeing
77 char** save = (char**)internal_malloc_4(sizeof(char*)); local
78 return (*save = (char*)os::malloc(size, mtThread));
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDnDEventMulticaster.java227 protected static void save(ObjectOutputStream s, String k, EventListener l) method in class:DnDEventMulticaster
229 AWTEventMulticaster.save(s, k, l);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherBlockChaining.java54 // variables for save/restore calls
106 void save() { method in class:CipherBlockChaining
H A DCipherFeedback.java60 // variables for save/restore calls
117 void save() { method in class:CipherFeedback
H A DElectronicCodeBook.java69 void save() {} method in class:ElectronicCodeBook
H A DOutputFeedback.java59 // variables for save/restore calls
116 void save() { method in class:OutputFeedback
H A DPCBC.java50 // variables for save/restore calls
101 void save() { method in class:PCBC
H A DCounterMode.java53 // variables for save/restore calls
86 void save() { method in class:CounterMode
H A DFeedbackCipher.java82 abstract void save(); method in class:FeedbackCipher
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanDirConfigMXBean.java53 * load and save the <i>scandir</i> application configuration to and from an
58 * can later save to the file, by calling {@link #save}, or discard, by
94 * neither {@link #load} or {@link #save} was yet called.
106 * Call {@link #save} to save them to the file, or {@link #load} to
164 public void save() method in interface:ScanDirConfigMXBean
170 * and {@link #save} will attempt to create the file.
189 * file, and {@link #save} to save th
[all...]
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DRuleRec.java42 private int save; field in class:RuleRec
72 return save;
116 * @param save the amount of daylight saving in milliseconds
121 boolean isSameTransition(ZoneRec zrec, int save, int gmtOffset) { argument
125 until = zrec.getLocalUntilTime(save, gmtOffset);
129 save,
200 rec.save = (int) Time.parse(tokens.nextToken()).getTime();
214 * @param save the amount of daylight save time
217 long getTransitionTime(int year, int gmtOffset, int save) { argument
[all...]
H A DTime.java137 * @param save the amount of daylight time in milliseconds
142 static long getLocalTime(int year, Month month, RuleDay day, int save, argument
147 t = time.getTime() + save;
149 t = time.getTime() + save + gmtOffset;
H A DZoneRec.java141 long getLocalUntilTime(int save, int gmtOffset) { argument
145 save,
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp375 intptr_t save = _recursions ; local
383 _recursions = save ;
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4933582.java60 save (authstring);
81 void save (String s) { method in class:B4933582
83 FileOutputStream f = new FileOutputStream ("auth.save");
94 FileInputStream f = new FileInputStream ("auth.save");
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwtran.c425 png_byte save = *(sp++); local
429 *(dp++) = save;
443 png_byte save[2]; local
444 save[0] = *(sp++);
445 save[1] = *(sp++);
452 *(dp++) = save[0];
453 *(dp++) = save[1];
470 png_byte save = *(sp++); local
472 *(dp++) = save;
486 png_byte save[ local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTab.java109 * Read a keytab file. Returns a new object and save it into cache when
454 public synchronized void save() throws IOException { method in class:KeyTab
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js104 "Do you want to save the changes?",
204 // factored out "save" function used by
205 // save, save as menu actions
206 function save(file) { function
231 // file-save as menu
237 save(ret);
240 // file-save menu
243 save(new java.io.File(curFileName));

Completed in 64 milliseconds

12