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

1 2 3

  /external/icu4c/data/brkitr/
char.txt 15 $CR = [\p{Grapheme_Cluster_Break = CR}];
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 15 $CR = [\p{Grapheme_Cluster_Break = CR}];
36 $CR $LF;
42 [^$Control $CR $LF] $Extend;
47 $LF $CR;
52 $Extend [^$Control $CR $LF];
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}];
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 27 $CR = [\p{Word_Break = CR}];
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 27 $CR = [\p{Word_Break = CR}];
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/llvm/lib/Support/
ConstantRange.cpp 52 const ConstantRange &CR) {
53 if (CR.isEmptySet())
54 return CR;
56 uint32_t W = CR.getBitWidth();
60 return CR;
62 if (CR.isSingleElement())
63 return ConstantRange(CR.getUpper(), CR.getLower());
66 APInt UMax(CR.getUnsignedMax());
72 APInt SMax(CR.getSignedMax())
    [all...]
  /external/llvm/include/llvm/Support/
ConstantRange.h 106 bool contains(const ConstantRange &CR) const;
147 bool operator==(const ConstantRange &CR) const {
148 return Lower == CR.Lower && Upper == CR.Upper;
150 bool operator!=(const ConstantRange &CR) const {
151 return !operator==(CR);
165 ConstantRange intersectWith(const ConstantRange &CR) const;
173 ConstantRange unionWith(const ConstantRange &CR) const;
258 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) {
259 CR.print(OS)
    [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 52 if (const CompoundLiteralRegion* CR = dyn_cast<CompoundLiteralRegion>(R)) {
53 const CompoundLiteralExpr *CL = CR->getLiteralExpr();
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 94 static LVILatticeVal getRange(ConstantRange CR) {
96 Res.markConstantRange(CR);
    [all...]
  /external/icu4c/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/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/Analysis/IPA/
CallGraph.cpp 312 CallRecord &CR = *I;
313 if (CR.second == Callee && CR.first == 0) {
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 272 ConstraintRangeTy CR = state->get<ConstraintRange>();
275 for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) {
278 CR = CRFactory.remove(CR, sym);
281 return state->set<ConstraintRange>(CR);
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 373 const ConstantRange &CR) {
375 UnsignedRanges.insert(std::make_pair(S, CR));
377 Pair.first->second = CR;
383 const ConstantRange &CR) {
385 SignedRanges.insert(std::make_pair(S, CR));
387 Pair.first->second = CR;
    [all...]
  /external/icu4c/test/intltest/
idnaconf.cpp 135 static const UChar CR = 0x0d;
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/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 211 int cr = in.read(); local
213 if ((cr != HTTP.CR) || (lf != HTTP.LF)) {
AbstractSessionInputBuffer.java 216 // discard CR if found
218 if (this.linebuffer.byteAt(l - 1) == HTTP.CR) {
244 if (pos > off && this.buffer[pos - 1] == HTTP.CR) {
245 // skip CR if found
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
jsref.js 11 var CR = "\n";
131 print( string + BR + CR );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
jsref.js 11 var CR = "\n";
129 print( string + BR + CR );
  /frameworks/base/include/utils/
List.h 271 template <class> class CR
274 _ListIterator<U, CL> first, _ListIterator<U, CR> last) const

Completed in 550 milliseconds

1 2 3