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

1 2 3 4 5 6 7 8 91011>>

  /external/toolchain-utils/cros_utils/
machines.py 22 ce = command_executer.GetCommandExecuter(log_level=logging_level)
24 status = ce.RunCommand(cmd)
command_executer_unittest.py 18 ce = command_executer.CommandExecuter(logging_level)
21 ce.RunCommand(command, command_timeout=timeout, terminated_timeout=timeout)
  /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/toolchain-utils/binary_search_tool/
run_bisect_test.py 16 def populate_good_files(top_dir, ce, bisect_dir=DEFAULT_BISECT_DIR):
20 status = ce.RunCommand(cmd)
27 status = ce.RunCommand(script)
41 status = ce.RunCommand(cmd)
45 def populate_bad_files(top_dir, ce, bisect_dir=DEFAULT_BISECT_DIR):
49 status = ce.RunCommand(cmd)
56 status = ce.RunCommand(script)
70 status = ce.RunCommand(cmd)
74 def run_main_bisection_test(top_dir, ce):
76 status = ce.RunCommand(test_script
    [all...]
  /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 27 typename S::const_iterator ce = cs.end(); local
31 assert(ce == cs.begin());
34 assert(static_cast<std::size_t>(ce - cs.begin()) == cs.size());
  /external/toolchain-utils/binary_search_tool/test/
gen_init_list.py 13 ce = command_executer.GetCommandExecuter()
14 _, l, _ = ce.RunCommandWOutput(
  /external/toolchain-utils/
command_executer_timeout_test.py 27 ce = command_executer.GetCommandExecuter()
28 ce.RunCommand(command, command_timeout=1)
remote_test.py 46 ce = command_executer.GetCommandExecuter()
47 ce.CrosRunCommand(
54 ce.CopyFiles(
60 ce.CopyFiles(
66 ce.CopyFiles(
73 ce.CopyFiles(
82 ce.CopyFiles(
89 ce.CopyFiles(
96 board = ce.CrosLearnBoard(options.chromeos_root, options.remote)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /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 40 long ce = left.nextCE(); local
41 leftPrimary = ce >>> 32;
43 // Variable CE, shift it to quaternary level.
47 // Store only the primary of the variable CE.
48 left.setCurrentCE(ce & 0xffffffff00000000L);
50 ce = left.nextCE();
51 leftPrimary = ce >>> 32;
64 long ce = right.nextCE(); local
65 rightPrimary = ce >>> 32;
67 // Variable CE, shift it to quaternary level
191 long ce; local
315 long ce = left.getCE(leftIndex++); local
329 long ce = right.getCE(rightIndex++); local
    [all...]
  /external/icu/icu4c/source/i18n/
collationcompare.cpp 49 int64_t ce = left.nextCE(errorCode); local
50 leftPrimary = (uint32_t)(ce >> 32);
52 // Variable CE, shift it to quaternary level.
56 // Store only the primary of the variable CE.
57 left.setCurrentCE(ce & INT64_C(0xffffffff00000000));
59 ce = left.nextCE(errorCode);
60 leftPrimary = (uint32_t)(ce >> 32);
74 int64_t ce = right.nextCE(errorCode); local
75 rightPrimary = (uint32_t)(ce >> 32);
77 // Variable CE, shift it to quaternary level
197 int64_t ce; local
315 int64_t ce = left.getCE(leftIndex++); local
329 int64_t ce = right.getCE(rightIndex++); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 36 long ce = left.nextCE(); local
37 leftPrimary = ce >>> 32;
39 // Variable CE, shift it to quaternary level.
43 // Store only the primary of the variable CE.
44 left.setCurrentCE(ce & 0xffffffff00000000L);
46 ce = left.nextCE();
47 leftPrimary = ce >>> 32;
60 long ce = right.nextCE(); local
61 rightPrimary = ce >>> 32;
63 // Variable CE, shift it to quaternary level
187 long ce; local
311 long ce = left.getCE(leftIndex++); local
325 long ce = right.getCE(rightIndex++); local
    [all...]
  /toolchain/binutils/binutils-2.27/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.27/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...]
  /external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
comparisons.pass.cpp 31 static_assert(std::is_same<decltype(ce. operator Op (ce)), bool>::value, ""); \
32 static_assert(noexcept(ce.operator Op (ce)), "Operation must be noexcept" )
39 directory_entry const ce(p);
  /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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
comparisons.pass.cpp 31 static_assert(std::is_same<decltype(ce. operator Op (ce)), bool>::value, ""); \
32 static_assert(noexcept(ce.operator Op (ce)), "Operation must be noexcept" )
39 directory_entry const ce(p);

Completed in 418 milliseconds

1 2 3 4 5 6 7 8 91011>>