HomeSort by relevance Sort by last modified time
    Searched refs:LF (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /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_org/v8/test/mjsunit/
whitespaces.js 15 0x000A, // Line Feed LF
debug-sourceinfo.js 29 // For this test to work this file MUST have CR LF line endings.
71 // to trailing <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
  /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/
serialutil.py 84 LF = to_bytes([10])
162 def readline(self, size=None, eol=LF):
179 def readlines(self, sizehint=None, eol=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...]
  /external/chromium_org/third_party/icu/source/common/
uprops.h 283 LF =0x000a,
ubidiimp.h 127 #define LF 0x000A
  /external/icu/icu4c/source/common/
uprops.h 305 LF =0x000a,
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 1009 if (Function *LF = F->Codegen()) {
1011 LF->dump();
1034 if (Function *LF = F->Codegen()) {
1036 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 1033 if (Function *LF = F->Codegen()) {
1036 LF->dump();
1062 if (Function *LF = F->Codegen()) {
1064 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 1015 if (Function *LF = F->Codegen()) {
1018 LF->dump();
1044 if (Function *LF = F->Codegen()) {
1046 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /external/chromium_org/third_party/icu/source/i18n/
rbt_pars.cpp     [all...]
  /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/icu/icu4c/source/i18n/
rbt_pars.cpp     [all...]
  /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/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...]

Completed in 5862 milliseconds

12 3 4 5 6