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

1 2 3 4 5

  /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...]
ConvertUTFWrapper.cpp 65 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd,
68 if (CR != conversionOK)
  /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 $dictionaryCJK]? ($Extend | $Format)+;
167 $LF $CR;
170 ($Format | $Extend)* [^$CR $LF $Newline $dictionaryCJK]?;
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/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);
160 ConstantRange difference(const ConstantRange &CR) const;
169 ConstantRange intersectWith(const ConstantRange &CR) const;
177 ConstantRange unionWith(const ConstantRange &CR) const;
262 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 49 private static final byte CR = (byte) '\r';
164 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i;
175 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/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 188 void CR() const __restrict {};
200 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/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.
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 310 CallRecord &CR = *I;
311 if (CR.second == Callee && CR.first == 0) {
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 370 ConstraintRangeTy CR = state->get<ConstraintRange>();
373 for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) {
376 CR = CRFactory.remove(CR, sym);
379 return state->set<ConstraintRange>(CR);
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 384 const ConstantRange &CR) {
386 UnsignedRanges.insert(std::make_pair(S, CR));
388 Pair.first->second = CR;
394 const ConstantRange &CR) {
396 SignedRanges.insert(std::make_pair(S, CR));
398 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)) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyDialog.java 102 if (e.stateMask == SWT.CTRL && e.keyCode == SWT.CR) {

Completed in 339 milliseconds

1 2 3 4 5