Searched defs:wt (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKStyleFactory.java62 WidgetType wt = GTKEngine.getWidgetType(c, id);
75 key = new ComplexKey(wt, sp, horiz, ltr, focusable);
83 key = new ComplexKey(wt, ltr);
93 key = new ComplexKey(wt, toolButton, defaultCapable);
98 wt = WidgetType.MENU_BAR;
104 key = wt;
109 result = new GTKStyle(defaultFont, wt);
128 private final WidgetType wt; field in class:GTKStyleFactory.ComplexKey
131 ComplexKey(WidgetType wt, Object... args) { argument
132 this.wt
[all...]
H A DGTKStyle.java597 * @param wt WidgetType for which to fetch the value
601 private static Object getClassSpecificValue(WidgetType wt, String key) { argument
603 return nativeGetClassValue(wt.ordinal(), key);
611 * @param wt WidgetType for which to fetch the value
617 private static int getClassSpecificIntValue(WidgetType wt, String key, argument
620 Object value = getClassSpecificValue(wt, key);
789 WidgetType wt = horiz ?
791 int sliderWidth = getClassSpecificIntValue(wt, "slider-width", 14);
792 int stepperSize = getClassSpecificIntValue(wt, "stepper-size", 14);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcUtil.hpp88 void modify(size_t avg, unsigned wt, bool force = false) { argument
91 _weight = wt;
H A DparGCAllocBuffer.hpp177 PLABStats(size_t desired_plab_sz_, unsigned wt) : argument
183 _filter(wt)
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java578 MethodType wt = pt.wrapAlt;
579 if (wt == null) {
581 wt = MethodTypeForm.canonicalize(pt, MethodTypeForm.WRAP, MethodTypeForm.WRAP);
582 assert(wt != null);
583 pt.wrapAlt = wt;
585 return wt;
588 private static MethodType unwrapWithNoPrims(MethodType wt) { argument
589 assert(!wt.hasPrimitives());
590 MethodType uwt = wt.wrapAlt;
593 uwt = MethodTypeForm.canonicalize(wt, MethodTypeFor
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp2619 void CFLS_LAB::modify_initialization(size_t n, unsigned wt) { argument
2625 _blocks_to_claim[i].modify(n, wt, true /* force */);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp646 FILETIME wt; local
647 GetSystemTimeAsFileTime(&wt);
648 return (jlong_from(wt.dwHighDateTime, wt.dwLowDateTime) - first_filetime);
737 FILETIME wt; local
738 GetSystemTimeAsFileTime(&wt);
739 first_filetime = jlong_from(wt.dwHighDateTime, wt.dwLowDateTime);
790 jlong windows_to_java_time(FILETIME wt) { argument
791 jlong a = jlong_from(wt
818 FILETIME wt; local
889 FILETIME wt; local
[all...]

Completed in 92 milliseconds