Searched defs:soft (Results 1 - 6 of 6) sorted by relevance

/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DBranchNode.java137 public Node nextInPathTo(Version vernum, boolean soft) argument
142 if (thisBase.isGreaterThan(branchPoint) && !soft)
169 if (branch != null || soft)
H A DNode.java455 * @param soft If true, no error is thrown if a node with the given
456 * version doesn't exist. Use soft=true to find a apth to where a new
461 * If soft=false the exception is also thrown if a node with the given
465 public Path pathTo(Version vernum, boolean soft) argument
474 target = target.nextInPathTo(vernum, soft);
485 * @param soft If true, no error is thrown if a node with the given
486 * version doesn't exist. Use soft=true to find a apth to where a new
491 * If soft=false the exception is also thrown if a node with the given
495 public abstract Node nextInPathTo(Version vernum, boolean soft) argument
H A DTrunkNode.java131 public Node nextInPathTo(Version vernum, boolean soft) argument
137 if (soft)
155 if (branch != null || soft)
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DCache.java256 public MemoryCache(boolean soft, int maxSize) { argument
257 this(soft, maxSize, 0);
260 public MemoryCache(boolean soft, int maxSize, int lifetime) { argument
263 this.queue = soft ? new ReferenceQueue() : null;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftChannel/
H A DProgramAndBankChange.java83 private static void testProgramAndBank(SoftSynthesizer soft, argument
89 MidiChannel channel = soft.getChannels()[0];
98 VoiceStatus[] vstatus = soft.getVoiceStatus();
113 channel = soft.getChannels()[1];
125 vstatus = soft.getVoiceStatus();
140 SoftSynthesizer soft = new SoftSynthesizer();
141 AudioInputStream stream = soft.openStream(null, null);
142 soft.unloadAllInstruments(soft.getDefaultSoundbank());
144 soft
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRef.java51 private SoftReference soft = null; field in class:Ref
87 SoftReference s = soft;
89 soft = null;
98 soft = new SoftReference(thing);
105 SoftReference s = soft;

Completed in 123 milliseconds