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

1 2 3

  /external/icu4c/data/brkitr/
char.txt 16 $LF = [\p{Grapheme_Cluster_Break = LF}];
38 $CR $LF;
44 [^$Control $CR $LF] $Extend;
46 [^$Control $CR $LF] $SpacingMark;
47 $Prepend [^$Control $CR $LF];
53 $LF $CR;
58 $Extend [^$Control $CR $LF];
59 $SpacingMark [^$Control $CR $LF];
60 [^$Control $CR $LF] $Prepend
    [all...]
char_th.txt 16 $LF = [\p{Grapheme_Cluster_Break = LF}];
36 $CR $LF;
42 [^$Control $CR $LF] $Extend;
47 $LF $CR;
52 $Extend [^$Control $CR $LF];
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}];
73 # Rule 3 - CR x LF
75 $CR $LF;
82 [^$CR $LF $Newline]? ($Extend | $Format)+;
145 $LF $CR;
148 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_POSIX.txt 28 $LF = [\p{Word_Break = LF}];
73 # Rule 3 - CR x LF
75 $CR $LF;
82 [^$CR $LF $Newline]? ($Extend | $Format)+;
145 $LF $CR;
148 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_ja.txt 28 $LF = [\p{Word_Break = LF}];
73 # Rule 3 - CR x LF
75 $CR $LF;
82 [^$CR $LF $Newline]? ($Extend | $Format)+;
150 $LF $CR;
153 ($Format | $Extend)* [^$CR $LF $Newline]?;
  /external/linux-tools-perf/util/
PERF-VERSION-GEN 9 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;
  /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/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 475 if (Function *LF = F->Codegen()) {
477 LF->dump();
500 if (Function *LF = F->Codegen()) {
502 LF->dump();
  /external/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/lib/MC/
MCAssembler.cpp 472 MCLEBFragment &LF = cast<MCLEBFragment>(F);
473 OW->WriteBytes(LF.getContents().str());
719 bool MCAssembler::relaxLEB(MCAsmLayout &Layout, MCLEBFragment &LF) {
721 uint64_t OldSize = LF.getContents().size();
722 bool IsAbs = LF.getValue().EvaluateAsAbsolute(Value, Layout);
725 SmallString<8> &Data = LF.getContents();
728 if (LF.isSigned())
733 return OldSize != LF.getContents().size();
925 const MCLEBFragment *LF = cast<MCLEBFragment>(this);
927 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned()
    [all...]
  /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/icu4c/tools/genrb/
read.c 34 #define LF 0x000A
183 if(c == CR || c == LF){
196 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 488 if (Function *LF = F->Codegen()) {
490 LF->dump();
513 if (Function *LF = F->Codegen()) {
515 void *FPtr = TheExecutionEngine->getPointerToFunction(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/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 733 if (Function *LF = F->Codegen()) {
735 LF->dump();
758 if (Function *LF = F->Codegen()) {
760 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 844 if (Function *LF = F->Codegen()) {
846 LF->dump();
869 if (Function *LF = F->Codegen()) {
871 void *FPtr = TheExecutionEngine->getPointerToFunction(LF);
  /packages/apps/Email/src/org/apache/james/mime4j/util/
CharsetUtil.java     [all...]

Completed in 881 milliseconds

1 2 3