Searched refs:save (Results 1 - 25 of 97) sorted by relevance

1234

/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 DZoneinfo.java488 int save = (fromTime == transition) ? rrec.getSave() : currentSave;
490 tz.getOffsetIndex(gmtOffset+save),
491 tz.getDstOffsetIndex(save));
496 int save = rrec.getSave();
498 tz.getOffsetIndex(gmtOffset+save),
499 tz.getDstOffsetIndex(save));
504 int save = rrec.getSave();
506 tz.getOffsetIndex(gmtOffset+save),
507 tz.getDstOffsetIndex(save));
H A DZoneRec.java141 long getLocalUntilTime(int save, int gmtOffset) { argument
145 save,
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslOutputStream.java105 SaslException save = null;
110 save = e;
114 if (save != null) {
115 throw save;
H A DSaslInputStream.java186 SaslException save = null;
191 save = e;
196 if (save != null) {
197 throw save;
/openjdk7/jdk/test/java/util/concurrent/ExecutorService/
H A DInvoke.java80 long save = count.get();
81 check(single.invokeAny(tasks) == save + 1);
82 check(count.get() == save + 1);
/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
/openjdk7/jdk/test/sun/security/krb5/ktab/
H A DKeyTabIndex.java40 kt.save();
H A DFileKeyTab.java37 kt.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/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DSaveAllAction.java44 SaveAsAction.save(component.getDocument());
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/src/share/classes/com/sun/crypto/provider/
H A DElectronicCodeBook.java69 void save() {} method in class:ElectronicCodeBook
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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTopLevelElement.java66 final InstructionList result, save = methodGen.getInstructionList();
69 methodGen.setInstructionList(save);
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4933582.sh47 rm -f cache.ser auth.save
/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/sun/tools/tree/
H A DStatement.java215 * If 'save' isn't null, there is also a value on the top of the stack
218 Context stopctx, Type save) {
245 if (save != null) {
253 asm.add(where, opc_istore + save.getTypeCodeOffset(), num);
287 asm.add(where, opc_iload + save.getTypeCodeOffset(), num);
217 codeFinally(Environment env, Context ctx, Assembler asm, Context stopctx, Type save) argument
/openjdk7/jdk/test/sun/security/krb5/ccache/
H A DEmptyCC.java50 cache.save();
/openjdk7/jdk/test/sun/security/krb5/tools/
H A DKtabZero.java49 KeyTab.getInstance(NAME).save();
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanDirConfigTest.java110 * Test of save method, of class com.sun.jmx.examples.scandir.ScanDirConfig.
113 System.out.println("save");
131 instance.save();
138 instance.save();
233 instance.save();
242 instance.save();
296 System.out.println("save");
316 instance.save();
/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/sample/scripting/scriptpad/src/resources/
H A Dgui.js91 * @param save flag tells whether this is a save dialog or not
94 function fileDialog(curDir, save) {
102 var res = save? dialog.showSaveDialog(window):
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddump_sparc.cpp82 __ save(SP, -256, SP);

Completed in 102 milliseconds

1234