Searched defs:LF (Results 1 - 25 of 63) sorted by relevance

123

/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DStrictLineReader.java47 private static final byte LF = (byte) '\n'; field in class:StrictLineReader
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) {
/external/apache-http/src/org/apache/http/protocol/
H A DHTTP.java51 public static final int LF = 10; // <US-ASCII LF, linefeed (10)> field in class:HTTP
98 return ch == SP || ch == HT || ch == CR || ch == LF;
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py6 # Input characters are sent directly (only LF -> CR/LF/CRLF translation is
84 LF = serial.to_bytes([10]) variable
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",
547 help = "do not send CR+LF, send LF onl
[all...]
/external/guava/guava/src/com/google/common/base/
H A DAscii.java156 public static final byte LF = 10; field in class:Ascii
159 * Alternate name for {@link #LF}. ({@code LF} is preferred.)
/external/icu/icu4c/source/test/intltest/
H A Didnaconf.cpp135 static const UChar LF = 0x0a; local
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/icu/icu4c/source/tools/genrb/
H A Dread.c37 #define LF 0x000A macro
187 if(c == CR || c == LF){
200 if(c == CR || c == LF){
H A Dwrtxml.cpp294 /* Disallow C0 controls except TAB, CR, LF*/
368 #define LF 0x000D macro
386 case LF:
H A Dparse.cpp67 #define LF 0x000A macro
403 while(c != CR && c != LF) {
419 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
/external/llvm/lib/MC/
H A DMCFragment.cpp424 const MCLEBFragment *LF = cast<MCLEBFragment>(this); local
426 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned();
H A DMCAssembler.cpp514 const MCLEBFragment &LF = cast<MCLEBFragment>(F); local
515 OW->writeBytes(LF.getContents());
787 bool MCAssembler::relaxLEB(MCAsmLayout &Layout, MCLEBFragment &LF) { argument
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/syslinux/gpxe/src/include/gpxe/
H A Dkeys.h47 #define LF CTRL_J macro
79 #define KEY_ENTER LF
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp1046 // 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; local
1064 *q++ = LF;
1066 if ( *p == LF ) { // check for CR+LF (and skip LF)
[all...]
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
H A Dserialutil.py84 LF = to_bytes([10]) variable
162 def readline(self, size=None, eol=LF):
179 def readlines(self, sizehint=None, eol=LF):
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAssembler.cpp467 MCLEBFragment &LF = cast<MCLEBFragment>(F); local
468 OW->WriteBytes(LF.getContents().str());
718 bool MCAssembler::RelaxLEB(MCAsmLayout &Layout, MCLEBFragment &LF) { argument
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); local
925 OS << " Value:" << LF
[all...]
/external/icu/icu4c/source/common/
H A Ducnvisci.c52 #define LF 0x0A macro
922 /* Write the language code following LF only if LF is not the last character. */
923 if (args->converter->fromUnicodeStatus == LF) {
H A Duprops.h322 LF =0x000a, enumerator in enum:__anon7285
H A Dubidiimp.h132 #define LF 0x000A macro
H A Ducnv2022.cpp86 #define LF 0x0A macro
1982 if(sourceChar == CR || sourceChar == LF) {
2180 case LF:
3010 if(sourceChar == CR || sourceChar == LF) {
3362 case LF:
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetISCII.java45 private static final short LF = 0x0a; field in class:CharsetISCII
1234 /* Write the language code following LF only if LF is not the last character. */
1235 if (fromUnicodeStatus == LF) {
H A DCharsetISO2022.java33 private static final byte LF = 0x0A; field in class:CharsetISO2022
942 case LF:
1197 case LF:
2038 if (sourceChar == CR || sourceChar == LF) {
2330 if (sourceChar == CR || sourceChar == LF) {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1474 Function *LF = F->Codegen(); local
1475 if (LF && VerboseOutput) {
1477 LF->dump();
1501 if (Function *LF = F->Codegen()) {
1503 void *FPtr = TheHelper->getPointerToFunction(LF);
/external/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp773 NodeToValueMap::iterator LF = Loc.find(CN); local
777 if (LF == Loc.end())
779 Bs.push_back(LF->second);
/external/tinyxml2/
H A Dtinyxml2.cpp33 static const char LINE_FEED = (char)0x0a; // all line endings are normalized to LF
34 static const char LF = LINE_FEED; variable
172 // CR-LF pair becomes LF
173 // CR alone becomes LF
174 // LF-CR becomes LF
175 if ( *(p+1) == LF ) {
181 *q++ = LF;
183 else if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == LF ) {
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidi.java971 private static final char LF = '\n'; field in class:Bidi
1911 if (i < originalLength && uchar == CR && text[i] == LF) /* do nothing on the CR */
2441 if (text[i] == CR && text[i + 1] == LF)
2442 continue; /* skip CR when followed by LF */
2595 if (text[i] == CR && text[i + 1] == LF)
2596 break; /* skip CR when followed by LF */
3803 * is followed by a Line Feed (LF). Both CR and LF are block separators, but
3806 * coming after the LF.
3887 * is followed by a Line Feed (LF)
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidi.java996 private static final char LF = '\n'; field in class:Bidi
1946 if (i < originalLength && uchar == CR && text[i] == LF) /* do nothing on the CR */
2476 if (text[i] == CR && text[i + 1] == LF)
2477 continue; /* skip CR when followed by LF */
2630 if (text[i] == CR && text[i + 1] == LF)
2631 break; /* skip CR when followed by LF */
3839 * is followed by a Line Feed (LF). Both CR and LF are block separators, but
3842 * coming after the LF.
3924 * is followed by a Line Feed (LF)
[all...]

Completed in 692 milliseconds

123