Searched refs:ce1 (Results 1 - 20 of 20) sorted by relevance

/external/libcxx/test/std/strings/string.view/string.view.iterators/
H A Drend.pass.cpp26 typename S::const_reverse_iterator ce1 = cs.rend(); local
32 assert(ce1 == cs.rbegin());
38 assert(ce1 != cs.rbegin());
43 assert(static_cast<std::size_t>(ce1 - cs.rbegin()) == cs.size());
46 assert( e == ce1);
48 assert(ce1 == ce2);
H A Dend.pass.cpp26 typename S::const_iterator ce1 = cs.end(); local
32 assert(ce1 == cs.begin());
38 assert(ce1 != cs.begin());
43 assert(static_cast<std::size_t>(ce1 - cs.begin()) == cs.size());
46 assert( e == ce1);
48 assert(ce1 == ce2);
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationFastLatinBuilder.java69 ce1 = 0;
212 charCEs[i][1] = ce1;
214 addUniqueCE(ce1);
218 charCEs[i][1] = ce1 = 0;
224 addContractionEntry(CollationFastLatin.CONTR_CHAR_MASK, ce0, ce1);
235 ce1 = 0;
242 ce1 = Collation.latinCE1FromCE32(ce32);
250 ce1 = Collation.ceFromCE32(data.ce32s[index + 1]);
263 ce1 = data.ces[index + 1];
287 if(ce0 == 0) { return ce1
684 private long ce0, ce1; field in class:CollationFastLatinBuilder
[all...]
H A DCollationDataBuilder.java147 long ce1 = ces[1];
150 (ce1 & 0xffffffff00ffffffL) == Collation.COMMON_TERTIARY_CE &&
156 (((int)ce1 >> 16) & 0xff00) |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatinBuilder.java68 ce1 = 0;
211 charCEs[i][1] = ce1;
213 addUniqueCE(ce1);
217 charCEs[i][1] = ce1 = 0;
223 addContractionEntry(CollationFastLatin.CONTR_CHAR_MASK, ce0, ce1);
234 ce1 = 0;
241 ce1 = Collation.latinCE1FromCE32(ce32);
249 ce1 = Collation.ceFromCE32(data.ce32s[index + 1]);
262 ce1 = data.ces[index + 1];
286 if(ce0 == 0) { return ce1
683 private long ce0, ce1; field in class:CollationFastLatinBuilder
[all...]
H A DCollationDataBuilder.java146 long ce1 = ces[1];
149 (ce1 & 0xffffffff00ffffffL) == Collation.COMMON_TERTIARY_CE &&
155 (((int)ce1 >> 16) & 0xff00) |
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp58 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}} local
107 Agg<float> ce1 = { Convert<double>(1e300) }; // expected-error {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{silence}} local
128 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-error {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{silence}} local
172 Agg<short> ce1 = { Convert<int>(100000) }; // expected-error {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{silence}} expected-warning {{changes value from 100000 to -31072}} local
H A Dp7-cxx11-nowarn.cpp59 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}} local
105 Agg<float> ce1 = { Convert<double>(1e300) }; // expected-warning {{constant expression evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{silence}} local
126 Agg<float> ce1 = { Convert<int>(123456789) }; // expected-warning {{constant expression evaluates to 123456789 which cannot be narrowed to type 'float'}} expected-note {{silence}} local
170 Agg<short> ce1 = { Convert<int>(100000) }; // expected-warning {{constant expression evaluates to 100000 which cannot be narrowed to type 'short'}} expected-note {{silence}} expected-warning {{changes value from 100000 to -31072}} local
/external/clang/test/CXX/special/class.copy/
H A Dp13-0x.cpp13 Constexpr1 ce1; member in struct:Constexpr2
15 constexpr Constexpr2(const Constexpr2 &o) : ce1(o.ce1) {}
/external/icu/icu4c/source/i18n/
H A Dcollationfastlatinbuilder.cpp90 : ce0(0), ce1(0),
224 charCEs[i][1] = ce1;
226 addUniqueCE(ce1, errorCode);
230 charCEs[i][1] = ce1 = 0;
236 addContractionEntry(CollationFastLatin::CONTR_CHAR_MASK, ce0, ce1, errorCode);
250 ce1 = 0;
257 ce1 = Collation::latinCE1FromCE32(ce32);
265 ce1 = Collation::ceFromCE32(ce32s[1]);
278 ce1 = ces[1];
302 if(ce0 == 0) { return ce1
[all...]
H A Dcollationfastlatinbuilder.h72 int64_t ce0, ce1; member in class:CollationFastLatinBuilder
H A Drulebasedcollator.cpp580 int64_t ce1, ce2; local
583 ce1 = ci.nextCE(errorCode);
587 ce1 = ci.nextCE(errorCode);
590 if(ce1 == Collation::NO_CE || ce2 != Collation::NO_CE) {
594 setVariableTop((uint32_t)(ce1 >> 32), errorCode);
H A Dcollationdatabuilder.cpp676 int64_t ce1 = ces[1]; local
679 (ce1 & INT64_C(0xffffffff00ffffff)) == Collation::COMMON_TERTIARY_CE &&
685 (uint32_t)(ce1 >> 16) |
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRuleBasedCollator.java786 long ce1, ce2;
789 ce1 = ci.nextCE();
793 ce1 = ci.nextCE();
796 if(ce1 == Collation.NO_CE || ce2 != Collation.NO_CE) {
799 internalSetVariableTop(ce1 >>> 32);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DRuleBasedCollator.java808 long ce1, ce2;
811 ce1 = ci.nextCE();
815 ce1 = ci.nextCE();
818 if(ce1 == Collation.NO_CE || ce2 != Collation.NO_CE) {
821 internalSetVariableTop(ce1 >>> 32);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationMiscTest.java1188 int ce1 = CollationElementIterator.IGNORABLE;
1192 while (ce1 != CollationElementIterator.NULLORDER
1194 ce1 = iter1.next();
1196 if ((ce1 & mask) != (ce2 & mask)) {
3051 int ce1, ce2;
3052 while((ce1 = iter1.next()) != CollationElementIterator.NULLORDER &&
3054 if (ce1 > ce2) {
H A DCollationTest.java354 long ce1 = ci1.nextCE();
357 if (ce1 != ce2) {
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationMiscTest.java1185 int ce1 = CollationElementIterator.IGNORABLE;
1189 while (ce1 != CollationElementIterator.NULLORDER
1191 ce1 = iter1.next();
1193 if ((ce1 & mask) != (ce2 & mask)) {
3048 int ce1, ce2;
3049 while((ce1 = iter1.next()) != CollationElementIterator.NULLORDER &&
3051 if (ce1 > ce2) {
H A DCollationTest.java351 long ce1 = ci1.nextCE();
354 if (ce1 != ce2) {
/external/icu/icu4c/source/test/intltest/
H A Dcollationtest.cpp273 int64_t ce1 = ci1.nextCE(errorCode); local
278 if(ce1 != ce2) {
282 if(ce1 == Collation::NO_CE) { break; }

Completed in 874 milliseconds