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

/openjdk7/langtools/test/tools/javac/
H A DAddReferenceThis.java38 final int LF = '\n'; field in class:AddReferenceThis
39 final char[] CRLF = { CR, LF};
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DLayoutCharacters.java56 final static byte LF = 0xA; field in interface:LayoutCharacters
/openjdk7/jdk/test/java/net/URLConnection/
H A DZeroContentLength.java83 final int LF = '\n'; field in class:ZeroContentLength.Worker
93 // read entire request from client, until CR LF CR LF
102 if (c == LF) {
108 if (c == LF) {
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DChunkedInputStream.java45 final static char LF = '\n'; field in class:ChunkedInputStream
91 if (ch == LF) {
147 c = (char)in.read(); /* LF */
148 if (c != LF) {
H A DRequest.java42 final static byte LF = 10; field in class:Request
89 if (c == LF) {
137 if (firstc == CR || firstc == LF) {
139 if (c == CR || c == LF) {
147 while (firstc != LF && firstc != CR && firstc >= 0) {
166 case LF:
168 if (c == CR && firstc == LF) {
173 if (firstc == LF || firstc == CR || firstc > ' ')
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java55 private static final String LF = "java/lang/invoke/LambdaForm"; field in class:InvokerBytecodeGenerator
61 private static final String LF_SIG = "L" + LF + ";";
66 private static final String superName = LF;
583 mv.visitFieldInsn(Opcodes.GETFIELD, LF, "names", LFN_SIG);
773 * Emits a return statement from a LF invoker. If required, the result type is cast to the correct return type.
791 // rn.type is the type of the result Name in the LF
969 mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, LF, "interpretWithArguments", "([Ljava/lang/Object;)Ljava/lang/Object;");
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java785 private static final char LF = '\n'; field in class:BidiBase
1286 if (!((uchar == (int)CR) && (text[i] == (int)LF))) {
1487 if (!((text[i] == CR) && (text[i + 1] == LF))) {
1583 if (!((text[i] == CR) && (text[i + 1] == LF))) {
2308 * is followed by a Line Feed (LF). Both CR and LF are block separators, but
2311 * coming after the LF.
2393 * is followed by a Line Feed (LF). Both CR and LF are block separators, but
2396 * coming after the LF
[all...]

Completed in 359 milliseconds