/external/icu4c/data/brkitr/ |
char.txt | 15 $CR = [\p{Grapheme_Cluster_Break = CR}]; 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 | 16 $CR = [\p{Sentence_Break = CR}]; 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 | 16 $CR = [\p{Sentence_Break = CR}]; 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 | 27 $CR = [\p{Word_Break = CR}]; 83 # Rule 3 - CR x LF 85 $CR $LF; 92 [^$CR $LF $Newline]? ($Extend | $Format)+; 167 $LF $CR; 170 ($Format | $Extend)* [^$CR $LF $Newline]?;
|
word_POSIX.txt | 27 $CR = [\p{Word_Break = CR}]; 83 # Rule 3 - CR x LF 85 $CR $LF; 92 [^$CR $LF $Newline $dictionaryCJK]? ($Extend | $Format)+; 167 $LF $CR; 170 ($Format | $Extend)* [^$CR $LF $Newline $dictionaryCJK]?;
|
/external/llvm/lib/Support/ |
ConstantRange.cpp | 53 const ConstantRange &CR) { 54 if (CR.isEmptySet()) 55 return CR; 57 uint32_t W = CR.getBitWidth(); 61 return CR; 63 if (CR.isSingleElement()) 64 return ConstantRange(CR.getUpper(), CR.getLower()); 67 APInt UMax(CR.getUnsignedMax()); 73 APInt SMax(CR.getSignedMax()) [all...] |
ConvertUTFWrapper.cpp | 68 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, 71 if (CR != conversionOK) 117 ConversionResult CR = 119 assert(CR != targetExhausted); 121 if (CR != conversionOK) {
|
/external/llvm/include/llvm/Support/ |
ConstantRange.h | 114 bool contains(const ConstantRange &CR) const; 155 bool operator==(const ConstantRange &CR) const { 156 return Lower == CR.Lower && Upper == CR.Upper; 158 bool operator!=(const ConstantRange &CR) const { 159 return !operator==(CR); 168 ConstantRange difference(const ConstantRange &CR) const; 177 ConstantRange intersectWith(const ConstantRange &CR) const; 185 ConstantRange unionWith(const ConstantRange &CR) const; 270 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { [all...] |
/external/clang/test/CodeGen/ |
pointer-signext.c | 10 #define CR(Record, TYPE, Field) \ 30 Entry = CR (Link, MEMORY_MAP, Link);
|
/external/apache-http/src/org/apache/http/protocol/ |
HTTP.java | 45 public static final int CR = 13; // <US-ASCII CR, carriage return (13)> 93 return ch == SP || ch == HT || ch == CR || ch == LF;
|
/external/qemu/ |
ppc-dis.c | 257 /* This operand may use the symbolic names for the CR fields, which 535 #define CR BT + 1 539 #define CRB CR + 1 5372 int cr; local 5377 (*info->fprintf_func) (info->stream, "4*cr%d+", cr); local [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
StackAddrEscapeChecker.cpp | 54 if (const CompoundLiteralRegion* CR = dyn_cast<CompoundLiteralRegion>(R)) { 55 const CompoundLiteralExpr *CL = CR->getLiteralExpr();
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
StrictLineReader.java | 46 private static final byte CR = (byte) '\r'; 140 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i; 150 int length = (count > 0 && buf[count - 1] == CR) ? count - 1 : count;
|
/libcore/luni/src/main/java/libcore/io/ |
StrictLineReader.java | 46 private static final byte CR = (byte)'\r'; 166 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i; 177 int length = (count > 0 && buf[count - 1] == CR) ? count - 1 : count;
|
/external/chromium_org/tools/cr/cr/commands/ |
shell.py | 10 import cr namespace 13 class ShellCommand(cr.Command): 17 same environment that cr would use if it were running it. 30 in cr. 40 cr.Host.Shell(context, *context.remains) 47 ps1 = '[CR] ' + os.environ.get('PS1', '') 51 cr.Host.Execute(context, shell, '--rcfile', rcfile.name) 53 cr.Host.Execute(context, shell)
|
/external/guava/guava/src/com/google/common/base/ |
Ascii.java | 185 public static final byte CR = 13;
|
/external/llvm/lib/Analysis/ |
LazyValueInfo.cpp | 99 static LVILatticeVal getRange(ConstantRange CR) { 101 Res.markConstantRange(CR); [all...] |
/external/clang/test/SemaCXX/ |
addr-of-overloaded-function.cpp | 215 void CR() const __restrict {}; 227 X = &Qualifiers::CR; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() const restrict': different qualifiers (none vs const and restrict)}}
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
read.c | 33 #define CR 0x000D 183 if(c == CR || c == LF){ 196 if(c == CR || c == LF){ 197 if(isNLUnescaped == FALSE && prevC!=CR){
|
/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/icu4c/tools/genrb/ |
read.c | 34 #define CR 0x000D 185 if(c == CR || c == LF){ 198 if(c == CR || c == LF){ 199 if(isNLUnescaped == FALSE && prevC!=CR){
|
/external/v8/test/mjsunit/ |
newline-in-string.js | 38 // Allow CR+LF in multiline string literals. 42 // Allow LF+CR in multiline string literals.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
poplib.py | 31 CR = '\r' 33 CRLF = CR+LF 110 # server can send any combination of CR & LF 112 # so only possibilities are ...LF, ...CRLF, CR...LF 115 if line[0] == CR: 376 if line[0] == CR:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
poplib.py | 31 CR = '\r' 33 CRLF = CR+LF 110 # server can send any combination of CR & LF 112 # so only possibilities are ...LF, ...CRLF, CR...LF 115 if line[0] == CR: 376 if line[0] == CR:
|
/external/llvm/lib/Analysis/IPA/ |
CallGraph.cpp | 310 CallRecord &CR = *I; 311 if (CR.second == Callee && CR.first == 0) {
|