HomeSort by relevance Sort by last modified time
    Searched defs:LF (Results 1 - 25 of 287) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
StrictLineReader.java 47 private static final byte LF = (byte) '\n';
137 // Try to find LF in the buffered data and return the line if successful.
139 if (buf[i] == LF) {
165 // Try to find LF in the buffered data and return the line if successful.
167 if (buf[i] == LF) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
110 # server can send any combination of CR & LF
111 # however, 'readline()' returns lines ending in LF
112 # so only possibilities are ...LF, ...CRLF, CR...LF
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
UniClassObject.py 45 LF = u'\u000A'
538 Line = Line.replace(u'\\r\\n', CR + LF)
539 Line = Line.replace(u'\\n', CR + LF)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 51 public static final int LF = 10; // <US-ASCII LF, linefeed (10)>
98 return ch == SP || ch == HT || ch == CR || ch == LF;
  /external/icu/icu4c/source/tools/genrb/
read.c 37 #define LF 0x000A
187 if(c == CR || c == LF){
200 if(c == CR || c == LF){
  /external/python/cpython2/Lib/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
118 # server can send any combination of CR & LF
119 # however, 'readline()' returns lines ending in LF
120 # so only possibilities are ...LF, ...CRLF, CR...LF
  /prebuilts/gdb/darwin-x86/lib/python2.7/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
110 # server can send any combination of CR & LF
111 # however, 'readline()' returns lines ending in LF
112 # so only possibilities are ...LF, ...CRLF, CR...LF
  /prebuilts/gdb/linux-x86/lib/python2.7/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
110 # server can send any combination of CR & LF
111 # however, 'readline()' returns lines ending in LF
112 # so only possibilities are ...LF, ...CRLF, CR...LF
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
110 # server can send any combination of CR & LF
111 # however, 'readline()' returns lines ending in LF
112 # so only possibilities are ...LF, ...CRLF, CR...LF
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
poplib.py 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
32 LF = '\n'
33 CRLF = CR+LF
110 # server can send any combination of CR & LF
111 # however, 'readline()' returns lines ending in LF
112 # so only possibilities are ...LF, ...CRLF, CR...LF
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
UniClassObject.py 40 LF = u'\u000A'
426 Line = Line.replace(u'\\r\\n', CR + LF)
427 Line = Line.replace(u'\\n', CR + LF)
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
miniterm.py 6 # Input characters are sent directly (only LF -> CR/LF/CRLF translation is
84 LF = serial.to_bytes([10])
113 return LF
163 NEWLINE_CONVERISON_MAP = (LF, CR, CRLF)
164 LF_MODES = ('LF', 'CR', 'CR/LF')
540 help = "do not send CR+LF, send CR only",
544 group.add_option("--lf",
545 dest = "lf",
    [all...]
  /external/guava/guava/src/com/google/common/base/
Ascii.java 156 public static final byte LF = 10;
159 * Alternate name for {@link #LF}. ({@code LF} is preferred.)
  /external/icu/icu4c/source/test/intltest/
idnaconf.cpp 135 static const UChar LF = 0x0a;
138 // CR LF
139 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
143 // CR or LF
144 if ( c == CR || c == LF) {
  /external/llvm/lib/MC/
MCFragment.cpp 424 const MCLEBFragment *LF = cast<MCLEBFragment>(this);
426 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned();
  /external/python/cpython2/Lib/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  /external/python/cpython3/Lib/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  /external/python/cpython3/Lib/
poplib.py 38 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
40 LF = b'\n'
41 CRLF = CR+LF
135 # server can send any combination of CR & LF
136 # however, 'readline()' returns lines ending in LF
137 # so only possibilities are ...LF, ...CRLF, CR...LF
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 1046 // Systems based on ASCII or a compatible character set use either LF (Line feed, '\n', 0x0A, 10 in decimal) or
1047 // CR (Carriage return, '\r', 0x0D, 13 in decimal) individually, or CR followed by LF (CR+LF, 0x0D 0x0A)...
1048 // * LF: Multics, Unix and Unix-like systems (GNU/Linux, AIX, Xenix, Mac OS X, FreeBSD, etc.), BeOS, Amiga, RISC OS, and others
1049 // * CR+LF: DEC RT-11 and most other early non-Unix, non-IBM OSes, CP/M, MP/M, DOS, OS/2, Microsoft Windows, Symbian OS
1055 const char LF = 0x0a;
1064 *q++ = LF;
1066 if ( *p == LF ) { // check for CR+LF (and skip LF)
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
keys.h 47 #define LF CTRL_J
79 #define KEY_ENTER LF
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
CharsetUtil.java     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 14 LF = 0x0a # ^J
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",

Completed in 1815 milliseconds

1 2 3 4 5 6 7 8 91011>>