Searched refs:lf (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/test/java/io/File/
H A DFileMethods.java39 private static void ck(String op, File f, String[] ls, File[] lf) argument
43 int n = lf.length;
47 if (ls[i].equals(lf[i].getName())
48 && lf[i].getParentFile().equals(f)) {
49 System.err.println(ls[i] + " ==> " + lf[i]);
51 throw new Exception("list mismatch: " + ls[i] + ", " + lf[i]);
/openjdk7/langtools/test/tools/javac/generics/inference/6365166/
H A DNewTest.java47 public <L extends List<? super A>,LF extends Factory<L>> L addOrCreate4(B b,L l,LF lf) { argument
49 l = lf.create();
65 ListFactory<Number> lf = new ListFactory<Number>();
72 ret4 = test.addOrCreate4(1, ret4,lf);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c175 LOGFONTW lf; local
223 memset(&lf, 0, sizeof(LOGFONTW));
224 lf.lfHeight = -size;
225 lf.lfWeight = (style & 1) ? FW_BOLD : FW_NORMAL;
226 lf.lfItalic = (style & 2) ? 0xff : 0;
227 lf.lfCharSet = DEFAULT_CHARSET;
228 lf.lfQuality = CLEARTYPE_QUALITY;
229 lf.lfOutPrecision = OUT_TT_PRECIS;
230 lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
231 lf
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DSimpleMethodHandle.java66 MethodHandle copyWith(MethodType mt, LambdaForm lf) { argument
67 return new SimpleMethodHandle(mt, lf);
H A DBoundMethodHandle.java183 public abstract BoundMethodHandle clone(MethodType mt, LambdaForm lf) throws Throwable; argument
184 public abstract BoundMethodHandle cloneExtendL(MethodType mt, LambdaForm lf, Object narg) throws Throwable; argument
185 public abstract BoundMethodHandle cloneExtendI(MethodType mt, LambdaForm lf, int narg) throws Throwable; argument
186 public abstract BoundMethodHandle cloneExtendJ(MethodType mt, LambdaForm lf, long narg) throws Throwable; argument
187 public abstract BoundMethodHandle cloneExtendF(MethodType mt, LambdaForm lf, float narg) throws Throwable; argument
188 public abstract BoundMethodHandle cloneExtendD(MethodType mt, LambdaForm lf, double narg) throws Throwable; argument
206 public Species_L(MethodType mt, LambdaForm lf, Object argL0) { argument
207 super(mt, lf);
218 public final BoundMethodHandle clone(MethodType mt, LambdaForm lf) throws Throwable { argument
219 return new Species_L(mt, lf, argL
222 cloneExtendL(MethodType mt, LambdaForm lf, Object narg) argument
226 cloneExtendI(MethodType mt, LambdaForm lf, int narg) argument
230 cloneExtendJ(MethodType mt, LambdaForm lf, long narg) argument
234 cloneExtendF(MethodType mt, LambdaForm lf, float narg) argument
238 cloneExtendD(MethodType mt, LambdaForm lf, double narg) argument
[all...]
H A DMethodHandle.java1317 MethodHandle copyWith(MethodType mt, LambdaForm lf) { argument
H A DDirectMethodHandle.java117 MethodHandle copyWith(MethodType mt, LambdaForm lf) { argument
118 return new DirectMethodHandle(mt, lf, member);
/openjdk7/jdk/test/javax/swing/JSlider/6348946/
H A Dbug6348946.java49 String lf = "javax.swing.plaf.metal.MetalLookAndFeel";
50 UIManager.setLookAndFeel(lf);
/openjdk7/jdk/src/share/back/
H A DeventFilter.c1030 LocationFilter *lf = &(filter->u.LocationOnly); local
1036 EI_BREAKPOINT, matchBreakpoint, lf)) {
1038 lf->method, (int)lf->location));
1040 (gdata->jvmti, lf->method, lf->location);
1060 LocationFilter *lf = &(filter->u.LocationOnly); local
1066 EI_BREAKPOINT, matchBreakpoint, lf)) {
1068 lf->method, (int)lf
1082 LocationFilter lf; local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DContext.java191 LocalMember lf = getLocalField(name);
192 int ls = (lf == null) ? -2 : lf.scopeNumber;
209 return lf;
263 LocalMember lf = getLocalClass(name);
264 int ls = (lf == null) ? -2 : lf.scopeNumber;
286 return lf;
H A DStatement.java251 LocalMember lf = ctx.getLocalField(idFinallyReturnValue);
252 num = new Integer(lf.number);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp190 LoadField* lf = value->as_LoadField(); \
191 bool must_kill = lf != NULL \
192 && lf->field()->holder() == field->holder() \
193 && (all_offsets || lf->field()->offset() == field->offset());
H A Dc1_Canonicalizer.cpp236 LoadField* lf = x->array()->as_LoadField(); local
237 if (lf != NULL) {
238 ciField* field = lf->field();
509 LoadField* lf = value->as_LoadField(); local
510 if (lf) {
511 type = lf->field_type();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DFieldImpl.java95 sun.jvm.hotspot.oops.LongField lf = (sun.jvm.hotspot.oops.LongField)saField;
96 valueImpl = (LongValueImpl) vm.mirrorOf(lf.getValue(target));
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java1728 LocalMember lf = null;
1730 lf = classContext.getLocalClass(name);
1731 if (lf != null) {
1732 ls = lf.getScopeNumber();
1741 (lf == null || classContext.getScopeNumber(c) > ls)) {
1752 if (lf != null) {
1753 return lf.getInnerClass().getName();
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java2249 ObjectStreamField lf = localFields[j];
2250 if (f.getName().equals(lf.getName())) {
2251 if ((f.isPrimitive() || lf.isPrimitive()) &&
2252 f.getTypeCode() != lf.getTypeCode())
2257 if (lf.getField() != null) {
2259 lf.getField(), lf.isUnshared(), false);
2262 lf.getName(), lf.getSignature(), lf
[all...]
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java483 int lf = is.read();
486 ((lf & 0xff) != 0x0a)) {
488 "Expected <CR><LF>: got '" + cr + "/" + lf + "'");
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java298 int lf = is.read();
301 ((lf & 0xff) != 0x0a)) {
303 "Expected <CR><LF>: got '" + cr + "/" + lf + "'");
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentHashMap.java425 Segment(float lf, int threshold, HashEntry<K,V>[] tab) { argument
426 this.loadFactor = lf;
744 float lf = proto.loadFactor;
745 int threshold = (int)(cap * lf);
749 Segment<K,V> s = new Segment<K,V>(lf, threshold, tab);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1902 LOGFONTA lf; local
1915 int maxlen = static_cast<int>(sizeof(lf.lfFaceName)) - 1;
1921 lf.lfFaceName, // Put ASCII string here
1934 DASSERT(destLen < sizeof(lf.lfFaceName));
1935 lf.lfFaceName[destLen] = '\0';
1936 lf.lfCharSet = DEFAULT_CHARSET;
1937 lf.lfPitchAndFamily = 0;
1939 foundFont = !EnumFontFamiliesExA((HDC)printDC, &lf,
2027 LOGFONTW lf;
2042 if (nameLen < (sizeof(lf
[all...]
H A Dawt_TextComponent.cpp390 LOGFONT lf; local
391 GetObject(m_hFont, sizeof(LOGFONT), &lf);
392 ImmSetCompositionFont(hIMC, &lf);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicLabelUI.java354 Component lf = l.getLabelFor();
355 if ((dka != 0) && (lf != null)) {
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceMember.java504 LocalMember lf = (LocalMember)(args.elementAt(i));
505 Identifier name_i = lf.getName();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java253 final AquaLookAndFeel lf = (AquaLookAndFeel)UIManager.getLookAndFeel();
254 final ActionMap audioMap = lf.getAudioActionMap();

Completed in 113 milliseconds