Searched refs:ce (Results 1 - 25 of 245) sorted by relevance

12345678910

/external/toolchain-utils/cros_utils/
H A Dmachines.py22 ce = command_executer.GetCommandExecuter(log_level=logging_level)
24 status = ce.RunCommand(cmd)
H A Dcommand_executer_unittest.py18 ce = command_executer.CommandExecuter(logging_level)
21 ce.RunCommand(command, command_timeout=timeout, terminated_timeout=timeout)
/external/toolchain-utils/binary_search_tool/test/
H A Dgen_init_list.py13 ce = command_executer.GetCommandExecuter()
14 _, l, _ = ce.RunCommandWOutput(
/external/guice/core/test/com/google/inject/
H A DRequireAtInjectOnConstructorsTest.java39 } 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
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DConnectionEventTest.java39 ConnectionEvent ce = new ConnectionEvent(ipc);
40 assertSame(ipc, ce.getSource());
41 assertNull(ce.getSQLException());
52 ConnectionEvent ce = new ConnectionEvent(ipc, null);
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
[all...]
/external/toolchain-utils/
H A Dremote_test.py46 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)
H A Dcommand_executer_timeout_test.py27 ce = command_executer.GetCommandExecuter()
28 ce.RunCommand(command, command_timeout=1)
H A Dremote_gcc_build.py55 ce = command_executer.GetCommandExecuter()
57 _, branches, _ = ce.RunCommandWOutput(command, print_to_console=False)
92 ce = command_executer.GetCommandExecuter()
93 _, buildinfo, _ = ce.RunCommandWOutput(commands, print_to_console=False)
145 ce = command_executer.GetCommandExecuter()
147 _, out, _ = ce.RunCommandWOutput(ls_cmd, print_to_console=True)
156 if ce.RunCommand(cmd):
171 ce = command_executer.GetCommandExecuter()
172 return ce.RunCommand(commands)
177 ce
[all...]
H A Dremote_kill_test.py38 ce = command_executer.GetCommandExecuter()
39 ce.RunCommand('ls; sleep 10000', machine=os.uname()[1])
H A Dcros_login.py70 ce = command_executer.GetCommandExecuter()
73 ce.CrosRunCommand(command, machine=remote, chromeos_root=chromeos_root)
84 ce.CopyFiles(
91 ret = ce.CrosRunCommand(
/external/toolchain-utils/binary_search_tool/
H A Drun_bisect_test.py16 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
[all...]
/external/libcxx/test/std/strings/basic.string/string.iterators/
H A Dcend.pass.cpp23 typename S::const_iterator ce = s.cend(); local
24 assert(ce == s.end());
H A Dcrend.pass.cpp23 typename S::const_reverse_iterator ce = s.crend(); local
24 assert(ce == s.rend());
H A Dend.pass.cpp27 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());
H A Drend.pass.cpp27 typename S::const_reverse_iterator ce = cs.rend(); local
31 assert(ce == cs.rbegin());
34 assert(static_cast<std::size_t>(ce - cs.rbegin()) == cs.size());
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationCompare.java40 long ce = left.nextCE();
41 leftPrimary = ce >>> 32;
48 left.setCurrentCE(ce & 0xffffffff00000000L);
50 ce = left.nextCE();
51 leftPrimary = ce >>> 32;
64 long ce = right.nextCE();
65 rightPrimary = ce >>> 32;
72 right.setCurrentCE(ce & 0xffffffff00000000L);
74 ce = right.nextCE();
75 rightPrimary = ce >>> 3
[all...]
H A DCollationFastLatin.java689 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { argument
690 if(ce >= MIN_LONG || ce < CONTRACTION) {
691 return ce; // simple or special mini CE
692 } else if(ce >= EXPANSION) {
693 int index = NUM_FAST_CHARS + (ce & INDEX_MASK);
695 } else /* ce >= CONTRACTION */ {
698 int index = NUM_FAST_CHARS + (ce & INDEX_MASK);
734 ce = table[index + 1];
737 result = ce;
753 getSecondariesFromOneShortCE(int ce) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationcompare.cpp49 int64_t ce = left.nextCE(errorCode); local
50 leftPrimary = (uint32_t)(ce >> 32);
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);
82 right.setCurrentCE(ce & INT64_C(0xffffffff00000000));
84 ce = right.nextCE(errorCode);
85 rightPrimary = (uint32_t)(ce >> 3
197 int64_t ce; local
315 int64_t ce = left.getCE(leftIndex++); local
329 int64_t ce = right.getCE(rightIndex++); local
[all...]
H A Dcollationfastlatinbuilder.h58 void addUniqueCE(int64_t ce, UErrorCode &errorCode);
59 uint32_t getMiniCE(int64_t ce) const;
65 static UBool isContractionCharCE(int64_t ce) { argument
66 return (uint32_t)(ce >> 32) == Collation::NO_CE_PRIMARY && ce != Collation::NO_CE;
H A Ducoleitr.cpp47 uint32_t ce; member in struct:RCEI
65 void put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode);
88 void RCEBuffer::put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) argument
110 buffer[bufferIndex].ce = ce;
150 void PCEBuffer::put(uint64_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) argument
172 buffer[bufferIndex].ce = ce;
217 uint64_t UCollationPCE::processCE(uint32_t ce) argument
222 // We could apply the mask to ce an
345 int32_t ce = cei->next(*status); local
399 int32_t ce; local
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationCompare.java36 long ce = left.nextCE();
37 leftPrimary = ce >>> 32;
44 left.setCurrentCE(ce & 0xffffffff00000000L);
46 ce = left.nextCE();
47 leftPrimary = ce >>> 32;
60 long ce = right.nextCE();
61 rightPrimary = ce >>> 32;
68 right.setCurrentCE(ce & 0xffffffff00000000L);
70 ce = right.nextCE();
71 rightPrimary = ce >>> 3
[all...]
H A DCollationFastLatin.java685 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { argument
686 if(ce >= MIN_LONG || ce < CONTRACTION) {
687 return ce; // simple or special mini CE
688 } else if(ce >= EXPANSION) {
689 int index = NUM_FAST_CHARS + (ce & INDEX_MASK);
691 } else /* ce >= CONTRACTION */ {
694 int index = NUM_FAST_CHARS + (ce & INDEX_MASK);
730 ce = table[index + 1];
733 result = ce;
749 getSecondariesFromOneShortCE(int ce) argument
[all...]
/external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
H A Dcomparisons.pass.cpp31 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);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCollationElementIterator.java152 * @param ce the collation element
155 public final static int primaryOrder(int ce) { argument
156 return (ce >>> 16) & 0xffff;
162 * @param ce the collation element
165 public final static int secondaryOrder(int ce) { argument
166 return (ce >>> 8) & 0xff;
172 * @param ce the collation element
175 public final static int tertiaryOrder(int ce) { argument
176 return ce & 0xff;
188 private static final boolean ceNeedsTwoParts(long ce) { argument
576 handleCE(long ce) argument
625 getMaxExpansion(int ce) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DCollationElementIterator.java154 * @param ce the collation element
158 public final static int primaryOrder(int ce) { argument
159 return (ce >>> 16) & 0xffff;
165 * @param ce the collation element
169 public final static int secondaryOrder(int ce) { argument
170 return (ce >>> 8) & 0xff;
176 * @param ce the collation element
180 public final static int tertiaryOrder(int ce) { argument
181 return ce & 0xff;
193 private static final boolean ceNeedsTwoParts(long ce) { argument
593 handleCE(long ce) argument
643 getMaxExpansion(int ce) argument
[all...]

Completed in 1633 milliseconds

12345678910