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

1 2

  /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/chromium_org/third_party/icu/source/tools/genrb/
read.c 35 #define LF 0x000A
185 if(c == CR || c == LF){
198 if(c == CR || c == LF){
parse.cpp 42 #define LF 0x000A
371 while(c != CR && c != LF) {
387 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
    [all...]
wrtxml.cpp 282 /* Disallow C0 controls except TAB, CR, LF*/
356 #define LF 0x000D
374 case LF:
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 35 #define LF 0x000A
185 if(c == CR || c == LF){
198 if(c == CR || c == LF){
parse.cpp 61 #define LF 0x000A
393 while(c != CR && c != LF) {
409 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
    [all...]
wrtxml.cpp 292 /* Disallow C0 controls except TAB, CR, LF*/
366 #define LF 0x000D
384 case LF:
    [all...]
  /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/chromium_org/tools/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 151 public static final byte LF = 10;
154 * Alternate name for {@link #LF}. ({@code LF} is preferred.)
  /external/icu/icu4c/source/test/intltest/
idnaconf.cpp 133 static const UChar LF = 0x0a;
136 // CR LF
137 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
141 // CR or LF
142 if ( c == CR || c == LF) {
  /external/lldb/test/pexpect-2.4/
screen.py 16 LF = 10 # Line feed.
17 VT = 11 # Same as LF.
18 FF = 12 # Same as LF.
110 def lf (self): member in class:screen
128 self.lf ()
  /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/tools/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/chromium_org/third_party/icu/source/common/
ucnvisci.c 50 #define LF 0x0A
    [all...]
uprops.h 305 LF =0x000a,
ubidiimp.h 141 #define LF 0x000A
ucnv2022.cpp 84 #define LF 0x0A
    [all...]
  /external/icu/icu4c/source/common/
ucnvisci.c 50 #define LF 0x0A
    [all...]
uprops.h 305 LF =0x000a,
ubidiimp.h 132 #define LF 0x000A
  /external/llvm/lib/MC/
MCAssembler.cpp 751 const MCLEBFragment &LF = cast<MCLEBFragment>(F);
752 OW->WriteBytes(LF.getContents().str());
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
autopep8.py 72 LF = '\n'
    [all...]

Completed in 988 milliseconds

1 2