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

12

/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/Support/
H A DConstantRange.h114 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) { argument
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DStrictLineReader.java46 private static final byte CR = (byte) '\r'; field in class:StrictLineReader
140 int lineEnd = (i != pos && buf[i - 1] == CR) ? i - 1 : i;
150 int length = (count > 0 && buf[count - 1] == CR) ? count - 1 : count;
/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) {
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/apache-http/src/org/apache/http/protocol/
H A DHTTP.java45 public static final int CR = 13; // <US-ASCII CR, carriage return (13)> field in class:HTTP
93 return ch == SP || ch == HT || ch == CR || ch == LF;
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp310 CallRecord &CR = *I; local
311 if (CR.second == Callee && CR.first == 0) {
/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.c33 #define CR 0x000D macro
183 if(c == CR || c == LF){
196 if(c == CR || c == LF){
197 if(isNLUnescaped == FALSE && prevC!=CR){
H A Dparse.c43 #define CR 0x000D macro
374 while(c != CR && c != LF) {
390 else if (!quoted && (c == SPACE || c == TAB || c == CR || c == LF))
H A Dwrtxml.cpp280 /* Disallow C0 controls except TAB, CR, LF*/
353 #define CR 0x000A macro
371 case CR:
/external/chromium_org/third_party/pexpect/
H A Dscreen.py35 CR = 13 # Move cursor to left margin or newline. variable
/external/guava/guava/src/com/google/common/base/
H A DAscii.java185 public static final byte CR = 13; field in class:Ascii
/external/icu4c/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/icu4c/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/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.cpp370 ConstraintRangeTy CR = state->get<ConstraintRange>(); local
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);
H A DMemRegion.cpp526 os << "StaticGlobalsMemSpace{" << CR << '}'; local
679 const CodeTextRegion *CR) {
680 if (!CR) {
690 StaticGlobalSpaceRegion *&R = StaticsGlobalSpaceRegions[CR];
695 new (R) StaticGlobalSpaceRegion(this, CR);
678 getGlobalsRegion(MemRegion::Kind K, const CodeTextRegion *CR) argument
/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/llvm/include/llvm/Analysis/
H A DScalarEvolution.h388 const ConstantRange &CR) {
390 UnsignedRanges.insert(std::make_pair(S, CR));
392 Pair.first->second = CR;
398 const ConstantRange &CR) {
400 SignedRanges.insert(std::make_pair(S, CR));
402 Pair.first->second = CR;
387 setUnsignedRange(const SCEV *S, const ConstantRange &CR) argument
397 setSignedRange(const SCEV *S, const ConstantRange &CR) argument
/external/chromium_org/third_party/icu/source/common/
H A Dubidiimp.h126 #define CR 0x000D macro
H A Duprops.h285 CR =0x000d, enumerator in enum:__anon11679
/external/icu4c/common/
H A Dubidiimp.h126 #define CR 0x000D macro

Completed in 807 milliseconds

12