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

1 2 3 4 5 6 7 8 910

  /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'
534 Line = Line.replace(u'\\r\\n', CR + LF)
535 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){
  /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/telemetry/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();
MCAssembler.cpp 514 const MCLEBFragment &LF = cast<MCLEBFragment>(F);
515 OW->writeBytes(LF.getContents());
787 bool MCAssembler::relaxLEB(MCAsmLayout &Layout, MCLEBFragment &LF) {
788 uint64_t OldSize = LF.getContents().size();
790 bool Abs = LF.getValue().evaluateKnownAbsolute(Value, Layout);
793 SmallString<8> &Data = LF.getContents();
796 if (LF.isSigned())
800 return OldSize != LF.getContents().size();
  /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",
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
serialutil.py 84 LF = to_bytes([10])
162 def readline(self, size=None, eol=LF):
179 def readlines(self, sizehint=None, eol=LF):
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAssembler.cpp 467 MCLEBFragment &LF = cast<MCLEBFragment>(F);
468 OW->WriteBytes(LF.getContents().str());
718 bool MCAssembler::RelaxLEB(MCAsmLayout &Layout, MCLEBFragment &LF) {
720 uint64_t OldSize = LF.getContents().size();
721 bool IsAbs = LF.getValue().EvaluateAsAbsolute(Value, Layout);
724 SmallString<8> &Data = LF.getContents();
727 if (LF.isSigned())
732 return OldSize != LF.getContents().size();
923 const MCLEBFragment *LF = cast<MCLEBFragment>(this);
925 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_iso2022.c 38 #define LF 0x0A
474 case LF:
476 WRITE1(LF)
    [all...]

Completed in 1542 milliseconds

1 2 3 4 5 6 7 8 910