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

1 2 3 4

  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
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) {
164 // Try to find LF in the buffered data and return the line if successful.
166 if (buf[i] == LF) {
  /libcore/luni/src/main/java/libcore/io/
StrictLineReader.java 47 private static final byte LF = (byte)'\n';
163 // Try to find LF in the buffered data and return the line if successful.
165 if (buf[i] == LF) {
187 // Try to find LF in the buffered data and return the line if successful.
189 if (buf[i] == LF) {
  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 46 public static final int LF = 10; // <US-ASCII LF, linefeed (10)>
93 return ch == SP || ch == HT || ch == CR || ch == LF;
  /external/chromium_org/third_party/icu/source/tools/genrb/
read.c 34 #define LF 0x000A
183 if(c == CR || c == LF){
196 if(c == CR || c == LF){
parse.c 44 #define LF 0x000A
374 while(c != CR && c != LF) {
390 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
    [all...]
wrtxml.cpp 280 /* Disallow C0 controls except TAB, CR, LF*/
354 #define LF 0x000D
372 case LF:
    [all...]
  /external/icu4c/tools/genrb/
read.c 35 #define LF 0x000A
185 if(c == CR || c == LF){
198 if(c == CR || c == 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
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaconf.cpp 134 static const UChar LF = 0x0a;
137 // CR LF
138 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
142 // CR or LF
143 if ( c == CR || c == LF) {
  /external/chromium_org/third_party/pexpect/
screen.py 32 LF = 10 # Line feed.
33 VT = 11 # Same as LF.
34 FF = 12 # Same as LF.
126 def lf (self): member in class:screen
144 self.lf ()
  /external/chromium_org/third_party/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/guava/guava/src/com/google/common/base/
Ascii.java 151 public static final byte LF = 10;
154 * Alternate name for {@link #LF}. ({@code LF} is preferred.)
  /external/icu4c/test/intltest/
idnaconf.cpp 134 static const UChar LF = 0x0a;
137 // CR LF
138 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
142 // CR or LF
143 if ( c == CR || c == 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...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
CharsetUtil.java     [all...]
  /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/openfst/src/include/fst/
lookahead-filter.h 651 typedef LookAheadComposeFilter<SF, M> LF;
652 typedef PushWeightsComposeFilter<LF, M> WF;
664 typedef LookAheadComposeFilter<SF, M> LF;
665 typedef PushWeightsComposeFilter<LF, M> WF;
677 typedef LookAheadComposeFilter<SF, M> LF;
678 typedef PushWeightsComposeFilter<LF, M> WF;
690 typedef LookAheadComposeFilter<SF, M> LF;
691 typedef PushWeightsComposeFilter<LF, M> WF;
  /external/chromium_org/third_party/icu/source/common/
ubidiimp.h 127 #define LF 0x000A
ucnvisci.c 49 #define LF 0x0A
    [all...]
uprops.h 283 LF =0x000a,
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]
  /external/icu4c/common/
ubidiimp.h 127 #define LF 0x000A
ucnvisci.c 50 #define LF 0x0A
    [all...]

Completed in 480 milliseconds

1 2 3 4