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

1 2 3 4 5 6

  /external/icu/icu4c/source/data/brkitr/
char.txt 16 $LF = [\p{Grapheme_Cluster_Break = LF}];
39 $CR $LF;
47 [^$Control $CR $LF] $Extend;
49 [^$Control $CR $LF] $SpacingMark;
50 # TODO: Restore if the Prepend set becomes non-empty again: $Prepend [^$Control $CR $LF];
56 $LF $CR;
63 $Extend [^$Control $CR $LF];
64 $SpacingMark [^$Control $CR $LF];
65 # TODO: Restore if the Prepend set becomes non-empty again: [^$Control $CR $LF] $Prepend
    [all...]
sent.txt 17 $LF = [\p{Sentence_Break = LF}];
52 # Rule 3 - break after separators. Keep CR/LF together.
54 $CR $LF;
60 [^$Sep $CR $LF]? ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
77 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
80 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* .;
81 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep $LF $CR {eof}] | $CR $LF){100}
    [all...]
sent_el.txt 17 $LF = [\p{Sentence_Break = LF}];
52 # Rule 3 - break after separators. Keep CR/LF together.
54 $CR $LF;
60 [^$Sep $CR $LF]? ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
77 ($STermEx | $ATermEx) $CloseEx* $SpEx* ($Sep | $CR | $LF)?;
80 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* .;
81 [[^$STerm $ATerm $Close $Sp $Sep $LF $CR $Format $Extend]{bof}] ($Extend | $Format | $Close | $Sp)* ([$Sep $LF $CR {eof}] | $CR $LF){100}
    [all...]
word.txt 28 $LF = [\p{Word_Break = LF}];
90 # Rule 3 - CR x LF
92 $CR $LF;
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
186 $LF $CR;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_POSIX.txt 28 $LF = [\p{Word_Break = LF}];
90 # Rule 3 - CR x LF
92 $CR $LF;
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
186 $LF $CR;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
  /external/fio/
FIO-VERSION-GEN 6 LF='
17 *$LF*) (exit 1) ;;
  /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/linux-tools-perf/perf-3.12.0/tools/perf/util/
PERF-VERSION-GEN 9 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/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/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/chromium_org/v8/test/mjsunit/
newline-in-string.js 38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 477 if (Function *LF = F->Codegen()) {
479 LF->dump();
502 if (Function *LF = F->Codegen()) {
504 LF->dump();
  /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/icu/source/tools/genrb/
read.c 34 #define LF 0x000A
183 if(c == CR || c == LF){
196 if(c == CR || c == LF){
  /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/icu/icu4c/source/tools/genrb/
read.c 35 #define LF 0x000A
185 if(c == CR || c == LF){
198 if(c == CR || c == LF){
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 212 int lf = in.read(); local
213 if ((cr != HTTP.CR) || (lf != HTTP.LF)) {
AbstractSessionInputBuffer.java 157 if (this.buffer[i] == HTTP.LF) {
172 // attempt to find end of line (LF)
209 // discard LF if found
212 if (this.linebuffer.byteAt(l - 1) == HTTP.LF) {
AbstractSessionOutputBuffer.java 54 private static final byte[] CRLF = new byte[] {HTTP.CR, HTTP.LF};
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 490 if (Function *LF = F->Codegen()) {
492 LF->dump();
515 if (Function *LF = F->Codegen()) {
517 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/lib/MC/
MCAssembler.cpp 751 const MCLEBFragment &LF = cast<MCLEBFragment>(F);
752 OW->WriteBytes(LF.getContents().str());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 735 if (Function *LF = F->Codegen()) {
737 LF->dump();
760 if (Function *LF = F->Codegen()) {
762 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 846 if (Function *LF = F->Codegen()) {
848 LF->dump();
871 if (Function *LF = F->Codegen()) {
873 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /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",

Completed in 334 milliseconds

1 2 3 4 5 6