/external/guice/core/test/com/google/inject/ |
RequireAtInjectOnConstructorsTest.java | 39 } catch (CreationException ce) { 40 assertEquals(1, ce.getErrorMessages().size()); 41 Asserts.assertContains(ce.getMessage(), 58 } catch (ConfigurationException ce) { 59 Asserts.assertContains(ce.getMessage(), 76 } catch (CreationException ce) { 77 assertEquals(1, ce.getErrorMessages().size()); 78 Asserts.assertContains(ce.getMessage(), 100 } catch (CreationException ce) { 101 assertEquals(1, ce.getErrorMessages().size()) [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
ConnectionEventTest.java | 39 ConnectionEvent ce = new ConnectionEvent(ipc); local 40 assertSame(ipc, ce.getSource()); 41 assertNull(ce.getSQLException()); 52 ConnectionEvent ce = new ConnectionEvent(ipc, null); local 53 assertSame(ipc, ce.getSource()); 54 assertNull(ce.getSQLException()); 57 ce = new ConnectionEvent(ipc, e); 58 assertSame(ipc, ce.getSource()); 59 assertSame(e, ce.getSQLException()); 68 ConnectionEvent ce = new ConnectionEvent(ipc, e) local 86 ConnectionEvent ce = new ConnectionEvent(ipc, sqlException); local [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackGenerator.java | 24 void generate(ClassEmitter ce, Context context, List methods) throws Exception; 30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); 33 void emitCallback(CodeEmitter ce, int index);
|
/external/libcxx/test/std/strings/basic.string/string.iterators/ |
cend.pass.cpp | 23 typename S::const_iterator ce = s.cend(); local 24 assert(ce == s.end());
|
crend.pass.cpp | 23 typename S::const_reverse_iterator ce = s.crend(); local 24 assert(ce == s.rend());
|
end.pass.cpp | 26 typename S::const_iterator ce = cs.end(); local 30 assert(ce == cs.begin()); 33 assert(ce - cs.begin() == cs.size());
|
rend.pass.cpp | 26 typename S::const_reverse_iterator ce = cs.rend(); local 30 assert(ce == cs.rbegin()); 33 assert(ce - cs.rbegin() == cs.size());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.iterators/ |
cend.pass.cpp | 23 typename S::const_iterator ce = s.cend(); local 24 assert(ce == s.end());
|
crend.pass.cpp | 23 typename S::const_reverse_iterator ce = s.crend(); local 24 assert(ce == s.rend());
|
end.pass.cpp | 26 typename S::const_iterator ce = cs.end(); local 30 assert(ce == cs.begin()); 33 assert(ce - cs.begin() == cs.size());
|
rend.pass.cpp | 26 typename S::const_reverse_iterator ce = cs.rend(); local 30 assert(ce == cs.rbegin()); 33 assert(ce - cs.rbegin() == cs.size());
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug440_32.go | 18 func splitContractIndex(ce uint32) (index, n, offset int) { 19 h := uint16(ce) 20 return int(h >> 5), int(h & (1<<5 - 1)), int(ce>>16) & (1<<14 - 1)
|
bug440_64.go | 18 func splitContractIndex(ce uint64) (index uint32, offset uint64) { 19 h := uint32(ce) 20 return h >> 5, ce + 1
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug440_32.go | 18 func splitContractIndex(ce uint32) (index, n, offset int) { 19 h := uint16(ce) 20 return int(h >> 5), int(h & (1<<5 - 1)), int(ce>>16) & (1<<14 - 1)
|
bug440_64.go | 18 func splitContractIndex(ce uint64) (index uint32, offset uint64) { 19 h := uint32(ce) 20 return h >> 5, ce + 1
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationCompare.java | 38 long ce = left.nextCE(); local 39 leftPrimary = ce >>> 32; 41 // Variable CE, shift it to quaternary level. 45 // Store only the primary of the variable CE. 46 left.setCurrentCE(ce & 0xffffffff00000000L); 48 ce = left.nextCE(); 49 leftPrimary = ce >>> 32; 62 long ce = right.nextCE(); local 63 rightPrimary = ce >>> 32; 65 // Variable CE, shift it to quaternary level 189 long ce; local 313 long ce = left.getCE(leftIndex++); local 327 long ce = right.getCE(rightIndex++); local [all...] |
/external/icu/icu4c/source/i18n/ |
collationcompare.cpp | 47 int64_t ce = left.nextCE(errorCode); local 48 leftPrimary = (uint32_t)(ce >> 32); 50 // Variable CE, shift it to quaternary level. 54 // Store only the primary of the variable CE. 55 left.setCurrentCE(ce & INT64_C(0xffffffff00000000)); 57 ce = left.nextCE(errorCode); 58 leftPrimary = (uint32_t)(ce >> 32); 72 int64_t ce = right.nextCE(errorCode); local 73 rightPrimary = (uint32_t)(ce >> 32); 75 // Variable CE, shift it to quaternary level 195 int64_t ce; local 313 int64_t ce = left.getCE(leftIndex++); local 327 int64_t ce = right.getCE(rightIndex++); local [all...] |
ucoleitr.cpp | 45 uint32_t ce; member in struct:RCEI 63 void put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode); 86 void RCEBuffer::put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) 108 buffer[bufferIndex].ce = ce; 148 void PCEBuffer::put(uint64_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) 170 buffer[bufferIndex].ce = ce; 215 uint64_t UCollationPCE::processCE(uint32_t ce) 220 // We could apply the mask to ce and the 343 int32_t ce = cei->next(*status); local 397 int32_t ce; local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationCompare.java | 34 long ce = left.nextCE(); local 35 leftPrimary = ce >>> 32; 37 // Variable CE, shift it to quaternary level. 41 // Store only the primary of the variable CE. 42 left.setCurrentCE(ce & 0xffffffff00000000L); 44 ce = left.nextCE(); 45 leftPrimary = ce >>> 32; 58 long ce = right.nextCE(); local 59 rightPrimary = ce >>> 32; 61 // Variable CE, shift it to quaternary level 185 long ce; local 309 long ce = left.getCE(leftIndex++); local 323 long ce = right.getCE(rightIndex++); local [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/ |
parallel2.d | 62 d8: 83 ce 08 41 A0 = A0 >> 0x1f \|\| R0 = \[FP -0x20\] \|\| NOP; 64 e0: 83 ce f8 00 A0 = A0 << 0x1f \|\| R0 = \[FP -0x1c\] \|\| NOP; 66 e8: 83 ce 00 50 A1 = A1 >> 0x0 \|\| R0 = \[FP -0x18\] \|\| NOP; 68 f0: 83 ce 00 10 A1 = A1 << 0x0 \|\| R0 = \[FP -0x14\] \|\| NOP; 70 f8: 82 ce fd 4e R7 = R5 << 0x1f \(S\) \|\| R0 = \[FP -0x10\] \|\| NOP; 72 100: 82 ce 52 07 R3 = R2 >>> 0x16 \|\| R0 = \[FP -0xc\] \|\| NOP; 74 108: 80 ce 7a 52 R1.L = R2.H << 0xf \(S\) \|\| R0 = \[FP -0x8\] \|\| NOP; 76 110: 80 ce f2 2b R5.H = R2.L >>> 0x2 \|\| R0 = \[FP -0x4\] \|\| NOP; 78 118: 00 ce 14 16 R3.L = ASHIFT R4.H BY R2.L \|\| R0 = \[FP -0x64\] \|\| NOP; 80 120: 00 ce 07 6e R7.H = ASHIFT R7.L BY R0.L \(S\) \|\| R0 = \[FP -0x68\] \|\| NOP [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
avx-scalar.d | 107 [ ]*[a-f0-9]+: c5 ce 58 d4 vaddss %xmm4,%xmm6,%xmm2 108 [ ]*[a-f0-9]+: c5 ce 58 11 vaddss \(%ecx\),%xmm6,%xmm2 109 [ ]*[a-f0-9]+: c5 ce 5a d4 vcvtss2sd %xmm4,%xmm6,%xmm2 110 [ ]*[a-f0-9]+: c5 ce 5a 11 vcvtss2sd \(%ecx\),%xmm6,%xmm2 111 [ ]*[a-f0-9]+: c5 ce 5e d4 vdivss %xmm4,%xmm6,%xmm2 112 [ ]*[a-f0-9]+: c5 ce 5e 11 vdivss \(%ecx\),%xmm6,%xmm2 113 [ ]*[a-f0-9]+: c5 ce 5f d4 vmaxss %xmm4,%xmm6,%xmm2 114 [ ]*[a-f0-9]+: c5 ce 5f 11 vmaxss \(%ecx\),%xmm6,%xmm2 115 [ ]*[a-f0-9]+: c5 ce 5d d4 vminss %xmm4,%xmm6,%xmm2 116 [ ]*[a-f0-9]+: c5 ce 5d 11 vminss \(%ecx\),%xmm6,%xmm [all...] |
/libcore/luni/src/test/java/libcore/javax/sql/ |
OldConnectionEventTest.java | 32 ConnectionEvent ce = new ConnectionEvent(ipc); local 34 assertSame(ce2.getSource(),ce.getSource()); 39 ConnectionEvent ce = new ConnectionEvent(ipc); local 42 assertNull(ce.getSQLException()); 43 assertEquals(ce2.getSQLException(), ce.getSQLException());
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/ |
vle-reloc-2.d | 13 18000a4: 70 80 c1 ce e_or2i r4,462 19 18000bc: 70 80 c9 ce e_and2i. r4,462 25 18000d4: 70 80 d1 ce e_or2is r4,462 31 18000ec: 70 80 e1 ce e_lis r4,462 37 1800104: 70 80 e9 ce e_and2is. r4,462 43 180011c: 70 04 99 ce e_cmp16i r4,462 49 1800134: 70 04 a9 ce e_cmpl16i r4,462 55 180014c: 70 04 b1 ce e_cmph16i r4,462 61 1800164: 70 04 b9 ce e_cmphl16i r4,462 67 180017c: 70 04 89 ce e_add2i. r4,46 [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
CollationElementIterator.java | 28 * each iteration is a 32-bit collation element (CE) that defines the 35 * "ca" -> the first collation element is CE('c') and the second 36 * collation element is CE('a'). 37 * "cha" -> the first collation element is CE('ch') and the second 38 * collation element is CE('a'). 150 * @param ce the collation element 153 public final static int primaryOrder(int ce) { 154 return (ce >>> 16) & 0xffff; 160 * @param ce the collation element 163 public final static int secondaryOrder(int ce) { 330 long ce = iter_.nextCE(); local 389 long ce = iter_.previousCE(offsets_); local 609 long ce = ces[start + length - 1]; local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
CollationElementIterator.java | 27 * each iteration is a 32-bit collation element (CE) that defines the 34 * "ca" -> the first collation element is CE('c') and the second 35 * collation element is CE('a'). 36 * "cha" -> the first collation element is CE('ch') and the second 37 * collation element is CE('a'). 152 * @param ce the collation element 156 public final static int primaryOrder(int ce) { 157 return (ce >>> 16) & 0xffff; 163 * @param ce the collation element 167 public final static int secondaryOrder(int ce) { 340 long ce = iter_.nextCE(); local 400 long ce = iter_.previousCE(offsets_); local 626 long ce = ces[start + length - 1]; local [all...] |