Searched defs:desired (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DRecognizedOptions.java243 static Option[] getOptions(OptionHelper helper, Set<OptionName> desired) { argument
246 if (desired.contains(option.getName()))
/openjdk7/jdk/src/share/classes/java/lang/
H A DPackage.java100 * only be compared for equality with desired version identifiers.
205 * desired version. It returns true if
207 * to the desired version number. <p>
210 * components of the desired and specification strings.
213 * If the specification value is greater than the desired
218 * @param desired the version string of the desired version.
220 * than or equal to the desired version number
222 * @exception NumberFormatException if the desired or current version
225 public boolean isCompatibleWith(String desired) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DallocationStats.hpp54 ssize_t _coal_desired; // desired +/- small-percent for tuning coalescing
56 ssize_t _surplus; // count - (desired +/- small-percent),
130 ssize_t desired() const { return _desired; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp172 ssize_t desired() const { function in class:VALUE_OBJ_CLASS_SPEC
173 return _allocation_stats.desired();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp249 const jvmtiCapabilities *desired,
254 if (has_some(exclude(desired, &temp, &temp))) {
259 either(&acquired_capabilities, desired, &acquired_capabilities);
262 both(&onload_capabilities, desired, &temp);
267 both(&onload_solo_capabilities, desired, &temp);
272 exclude(&always_solo_remaining_capabilities, desired, &always_solo_remaining_capabilities);
273 exclude(&onload_solo_remaining_capabilities, desired, &onload_solo_remaining_capabilities);
276 either(current, desired, result);
247 add_capabilities(const jvmtiCapabilities *current, const jvmtiCapabilities *prohibited, const jvmtiCapabilities *desired, jvmtiCapabilities *result) argument
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DDirectoryScanner.java520 // Switch this object state to the desired value an send
524 private final void setStateAndNotify(ScanState desired) { argument
526 if (old == desired) return;
527 state = desired;
532 String.valueOf(old),String.valueOf(desired));
H A DScanManager.java543 * and if so, switch its value to the new desired state.
547 private ScanState switchState(ScanState desired,String forOperation) { argument
548 return switchState(desired,allowedStates.get(forOperation));
553 * and if so, switch its value to the new desired state.
557 private ScanState switchState(ScanState desired,EnumSet<ScanState> allowed) { argument
565 state = desired;
569 LOG.fine("switched state: "+old+" -> "+desired);
570 if (old != desired)
571 queueStateChangedNotification(sequence,timestamp,old,desired);
797 * This method is used to switch to the desired stat
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant2.c46 * have as many boxes as desired colors. Then the mean color in each
64 * and it also interfered with desired capabilities such as quantizing to an
121 * desired colors. 16 bits/cell is plenty for that too.)
202 int desired; /* desired # of colors = size of colormap */ member in struct:__anon736
1153 select_colors(cinfo, cquantize->desired);
1282 int desired = cinfo->desired_number_of_colors; local
1284 if (desired < 8)
1287 if (desired > MAXNUMCOLORS)
1290 ((j_common_ptr) cinfo,JPOOL_IMAGE, (JDIMENSION) desired, (JDIMENSIO
[all...]

Completed in 64 milliseconds