Searched defs:lf (Results 1 - 12 of 12) 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/share/classes/java/lang/invoke/
H A DSimpleMethodHandle.java66 MethodHandle copyWith(MethodType mt, LambdaForm lf) { argument
67 return new SimpleMethodHandle(mt, lf);
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);
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...]
/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/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/hotspot/src/share/vm/c1/
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/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/windows/native/sun/windows/
H A Dawt_TextComponent.cpp390 LOGFONT lf; local
391 GetObject(m_hFont, sizeof(LOGFONT), &lf);
392 ImmSetCompositionFont(hIMC, &lf);
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...]

Completed in 64 milliseconds