Searched defs:CR (Results 1 - 25 of 63) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dpointer-signext.c10 #define CR(Record, TYPE, Field) \ macro
30 Entry = CR (Link, MEMORY_MAP, Link);
/external/llvm/include/llvm/IR/
H A DConstantRange.h109 bool contains(const ConstantRange &CR) const;
150 bool operator==(const ConstantRange &CR) const {
151 return Lower == CR.Lower && Upper == CR.Upper;
153 bool operator!=(const ConstantRange &CR) const {
154 return !operator==(CR);
163 ConstantRange difference(const ConstantRange &CR) const;
172 ConstantRange intersectWith(const ConstantRange &CR) const;
180 ConstantRange unionWith(const ConstantRange &CR) const;
265 inline raw_ostream &operator<<(raw_ostream &OS, const ConstantRange &CR) { argument
[all...]
/external/llvm/lib/Support/
H A DConvertUTFWrapper.cpp68 ConversionResult CR = ConvertUTF32toUTF8(&SourceStart, SourceEnd, local
71 if (CR != conversionOK)
117 ConversionResult CR = local
119 assert(CR != targetExhausted);
121 if (CR != conversionOK) {
/external/apache-http/src/org/apache/http/protocol/
H A DHTTP.java50 public static final int CR = 13; // <US-ASCII CR, carriage return (13)> field in class:HTTP
98 return ch == SP || ch == HT || ch == CR || ch == LF;
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp212 CallRecord &CR = *I; local
213 if (CR.second == Callee && CR.first == nullptr) {
/external/chromium_org/third_party/icu/source/test/intltest/
H A Didnaconf.cpp135 static const UChar CR = 0x0d; local
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/chromium_org/third_party/icu/source/tools/genrb/
H A Dread.c34 #define CR 0x000D macro
185 if(c == CR || c == LF){
198 if(c == CR || c == LF){
199 if(isNLUnescaped == FALSE && prevC!=CR){
H A Dparse.cpp41 #define CR 0x000D macro
371 while(c != CR && c != LF) {
387 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
H A Dwrtxml.cpp282 /* Disallow C0 controls except TAB, CR, LF*/
355 #define CR 0x000A macro
373 case CR:
/external/chromium_org/third_party/pexpect/
H A Dscreen.py35 CR = 13 # Move cursor to left margin or newline. variable
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py6 # Input characters are sent directly (only LF -> CR/LF/CRLF translation is
85 CR = serial.to_bytes([13]) variable
112 if z == CR:
163 NEWLINE_CONVERISON_MAP = (LF, CR, CRLF)
164 LF_MODES = ('LF', 'CR', 'CR/LF')
540 help = "do not send CR+LF, send CR only",
547 help = "do not send CR+LF, send LF only",
/external/guava/guava/src/com/google/common/base/
H A DAscii.java185 public static final byte CR = 13; field in class:Ascii
/external/icu/icu4c/source/test/intltest/
H A Didnaconf.cpp134 static const UChar CR = 0x0d; local
136 // CR LF
137 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
141 // CR or LF
142 if ( c == CR || c == LF) {
/external/icu/icu4c/source/tools/genrb/
H A Dread.c34 #define CR 0x000D macro
185 if(c == CR || c == LF){
198 if(c == CR || c == LF){
199 if(isNLUnescaped == FALSE && prevC!=CR){
/external/lldb/test/pexpect-2.4/
H A Dscreen.py19 CR = 13 # Move cursor to left margin or newline. variable
/external/llvm/lib/IR/
H A DConstantRange.cpp53 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
52 makeICmpRegion(unsigned Pred, const ConstantRange &CR) argument
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dgetonescriptspan.cc61 #define CR 16 // <cr> or <lf> macro
68 NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,CR,NL, NL,CR,NL,NL,
105 #undef CR macro
126 // < > ! - " ' / S C R I P T Y L E CR NL PL xx
141 // < > ! - " ' / S C R I P T Y L E CR NL PL xx
158 // < > ! - " ' / S C R I P T Y L E CR NL PL xx
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp1047 // CR (Carriage return, '\r', 0x0D, 13 in decimal) individually, or CR followed by LF (CR+LF, 0x0D 0x0A)...
1049 // * CR+LF: DEC RT-11 and most other early non-Unix, non-IBM OSes, CP/M, MP/M, DOS, OS/2, Microsoft Windows, Symbian OS
1050 // * CR: Commodore 8-bit machines, Apple II family, Mac OS up to version 9 and OS-9
1054 const char CR = 0x0d; local
1063 if ( *p == CR ) {
1066 if ( *p == LF ) { // check for CR+LF (and skip LF)
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp372 ConstraintRangeTy CR = state->get<ConstraintRange>(); local
375 for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) {
378 CR = CRFactory.remove(CR, sym);
381 return state->set<ConstraintRange>(CR);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c938 int CR, CB; local
1009 CB = CR = (i-128);
1010 Cr_r_tab[i] = (int) ( (0.419/0.299) * CR);
1011 Cr_g_tab[i] = (int) (-(0.299/0.419) * CR);
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp1047 // CR (Carriage return, '\r', 0x0D, 13 in decimal) individually, or CR followed by LF (CR+LF, 0x0D 0x0A)...
1049 // * CR+LF: DEC RT-11 and most other early non-Unix, non-IBM OSes, CP/M, MP/M, DOS, OS/2, Microsoft Windows, Symbian OS
1050 // * CR: Commodore 8-bit machines, Apple II family, Mac OS up to version 9 and OS-9
1054 const char CR = 0x0d; local
1063 if ( *p == CR ) {
1066 if ( *p == LF ) { // check for CR+LF (and skip LF)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialutil.py83 CR = to_bytes([13]) variable
/external/llvm/include/llvm/Analysis/
H A DScalarEvolution.h400 const ConstantRange &CR) {
402 UnsignedRanges.insert(std::make_pair(S, CR));
404 Pair.first->second = CR;
410 const ConstantRange &CR) {
412 SignedRanges.insert(std::make_pair(S, CR));
414 Pair.first->second = CR;
399 setUnsignedRange(const SCEV *S, const ConstantRange &CR) argument
409 setSignedRange(const SCEV *S, const ConstantRange &CR) argument
/external/chromium_org/third_party/icu/source/common/
H A Duprops.h307 CR =0x000d, enumerator in enum:__anon12060
/external/icu/icu4c/source/common/
H A Duprops.h307 CR =0x000d, enumerator in enum:__anon21849

Completed in 3812 milliseconds

123