OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LF
(Results
1 - 25
of
52
) 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/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/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
467
MCLEBFragment &
LF
= cast<MCLEBFragment>(F);
468
OW->WriteBytes(
LF
.getContents().str());
718
bool MCAssembler::RelaxLEB(MCAsmLayout &Layout, MCLEBFragment &
LF
) {
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);
925
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/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/emailcommon/src/org/apache/james/mime4j/util/
CharsetUtil.java
[
all
...]
/external/icu4c/common/
uprops.h
283
LF
=0x000a,
ubidiimp.h
127
#define
LF
0x000A
/external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
1007
if (Function *
LF
= F->Codegen()) {
1009
LF
->dump();
1032
if (Function *
LF
= F->Codegen()) {
1034
void *FPtr = TheExecutionEngine->getPointerToFunction(
LF
);
[
all
...]
/external/icu4c/i18n/
rbt_pars.cpp
[
all
...]
Completed in 490 milliseconds
1
2
3