HomeSort by relevance Sort by last modified time
    Searched refs:ec (Results 201 - 225 of 1226) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/icu4c/source/i18n/
translit.cpp 975 UErrorCode ec = U_ZERO_ERROR; local
1214 UErrorCode ec = U_ZERO_ERROR; local
1225 UErrorCode ec = U_ZERO_ERROR; local
1253 UErrorCode ec = U_ZERO_ERROR; local
1260 UErrorCode ec = U_ZERO_ERROR; local
1267 UErrorCode ec = U_ZERO_ERROR; local
1275 UErrorCode ec = U_ZERO_ERROR; local
1289 UErrorCode ec = U_ZERO_ERROR; local
1304 UErrorCode ec = U_ZERO_ERROR; local
1320 UErrorCode ec = U_ZERO_ERROR; local
1345 UErrorCode ec = U_ZERO_ERROR; local
1352 UErrorCode ec = U_ZERO_ERROR; local
1361 UErrorCode ec = U_ZERO_ERROR; local
1369 UErrorCode ec = U_ZERO_ERROR; local
1379 UErrorCode ec = U_ZERO_ERROR; local
1388 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
tridpars.cpp 84 UErrorCode ec = U_ZERO_ERROR; local
85 UnicodeSet *set = new UnicodeSet(filter, ec);
86 if (U_FAILURE(ec)) {
277 UErrorCode ec = U_ZERO_ERROR; local
278 filter = new UnicodeSet(id, ppos, USET_IGNORE_SPACE, NULL, ec);
284 if (U_FAILURE(ec)) {
359 UErrorCode ec = U_ZERO_ERROR; local
387 SingleID* single = parseSingleID(id, pos, dir, ec);
392 list.addElement(single, ec);
394 list.insertElementAt(single, 0, ec);
727 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
msgfmt.cpp 201 void formatAndAppend(const Format* formatter, const Formattable& arg, UErrorCode& ec) {
203 formatter->format(arg, s, ec);
204 if (U_SUCCESS(ec)) {
209 const UnicodeString &argString, UErrorCode& ec) {
211 if (U_SUCCESS(ec)) {
215 formatAndAppend(formatter, arg, ec);
315 UErrorCode ec = U_ZERO_ERROR; local
316 copyObjects(that, ec);
317 if (U_FAILURE(ec)) {
380 UErrorCode ec = U_ZERO_ERROR local
411 UErrorCode ec = U_ZERO_ERROR; local
1498 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
olsontz.h 122 * @param ec input-output error code
127 UErrorCode& ec);
169 int32_t millis, UErrorCode& ec) const;
177 UErrorCode& ec) const;
183 int32_t& dstOffset, UErrorCode& ec) const;
189 int32_t& rawoff, int32_t& dstoff, UErrorCode& ec) const;
217 virtual UBool inDaylightTime(UDate date, UErrorCode& ec) const;
ucurr.cpp 310 _findMetaData(const UChar* currency, UErrorCode& ec) {
313 if (U_SUCCESS(ec)) {
314 ec = U_ILLEGAL_ARGUMENT_ERROR;
322 UResourceBundle* currencyData = ures_openDirect(U_ICUDATA_CURR, CURRENCY_DATA, &ec);
323 UResourceBundle* currencyMeta = ures_getByKey(currencyData, CURRENCY_META, currencyData, &ec);
325 if (U_FAILURE(ec)) {
337 rb = ures_getByKey(currencyMeta,DEFAULT_META, NULL, &ec);
338 if (U_FAILURE(ec)) {
347 const int32_t *data = ures_getIntVector(rb, &len, &ec);
348 if (U_FAILURE(ec) || len != 4)
965 UErrorCode ec = U_ZERO_ERROR; local
1624 ChoiceFormat f(UnicodeString(TRUE, currname, len), ec); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usettest.c 29 UErrorCode* ec);
83 UErrorCode ec; local
105 ec = U_ZERO_ERROR;
106 set = uset_openPattern(PAT, PAT_LEN, &ec);
107 if(U_FAILURE(ec)) {
108 log_err("uset_openPattern([a-c{ab}]) failed - %s\n", u_errorName(ec));
114 expect(set, "abc{ab}", "def{bc}", &ec);
162 uset_applyIntPropertyValue(set, UCHAR_ASCII_HEX_DIGIT, 1, &ec);
163 if(U_FAILURE(ec)) {
164 log_err("uset_applyIntPropertyValue([UCHAR_ASCII_HEX_DIGIT]) failed - %s\n", u_errorName(ec));
258 UErrorCode ec; local
360 UErrorCode ec; local
519 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /system/update_engine/update_manager/
policy.h 235 EvaluationContext* ec, State* state, std::string* error,
245 EvaluationContext* ec,
258 EvaluationContext* ec,
266 EvaluationContext* ec, State* state, std::string* error,
275 EvaluationContext* ec, State* state, std::string* error,
  /device/google/dragon/recovery/updater/
update_fw.cpp 83 static int update_recovery_fw(struct flash_device *spi, struct flash_device *ec,
99 } else { /* Update both RO & RW on SPI + EC */
103 // TODO Update EC with ec_file
104 (void)ec;
172 struct flash_device *img, *spi, *ec; local
202 ec = flash_open("ec", NULL);
203 if (!ec)
213 res = update_recovery_fw(spi, ec, img, ec_file);
222 flash_close(ec);
    [all...]
fwtool.cpp 35 static void *ec; variable
47 if (!ec)
48 ec = flash_open("ec", NULL);
50 return ec;
106 char *ec = fdt_read_string("active-ec-firmware"); local
111 printf("EC: %s\n", ec);
117 free(ec);
    [all...]
  /external/icu/icu4c/source/test/intltest/
thcoll.cpp 83 UErrorCode ec = U_ZERO_ERROR; local
84 TextFile names("TestNames_Thai.txt", "UTF16LE", ec);
85 if (U_FAILURE(ec)) {
87 u_errorName(ec));
98 while (names.readLineSkippingComments(word, ec, FALSE) && U_SUCCESS(ec)) {
114 assertSuccess("readLine", ec);
130 UErrorCode ec = U_ZERO_ERROR; local
131 TextFile riwords("riwords.txt", "UTF8", ec);
132 if (U_FAILURE(ec)) {
    [all...]
  /external/icu/icu4c/source/common/
uvector.cpp 96 void UVector::assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec) {
97 if (ensureCapacity(other.count, ec)) {
98 setSize(other.count, ec);
99 if (U_SUCCESS(ec)) {
440 void UVector::sortedInsert(void* obj, UElementComparator *compare, UErrorCode& ec) {
443 sortedInsert(e, compare, ec);
451 void UVector::sortedInsert(int32_t obj, UElementComparator *compare, UErrorCode& ec) {
454 sortedInsert(e, compare, ec);
458 void UVector::sortedInsert(UElement e, UElementComparator *compare, UErrorCode& ec) {
475 if (ensureCapacity(count + 1, ec)) {
    [all...]
  /external/llvm/lib/ExecutionEngine/
SectionMemoryManager.cpp 86 std::error_code ec; local
91 ec);
92 if (ec) {
128 std::error_code ec; local
131 ec = applyMemoryGroupPermissions(CodeMem,
133 if (ec) {
135 *ErrMsg = ec.message();
144 ec = applyMemoryGroupPermissions(RODataMem,
146 if (ec) {
148 *ErrMsg = ec.message()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/
CustomNamedCurves.java 1 package org.bouncycastle.crypto.ec;
13 import org.bouncycastle.math.ec.ECCurve;
14 import org.bouncycastle.math.ec.ECPoint;
16 // import org.bouncycastle.math.ec.custom.djb.Curve25519;
17 // import org.bouncycastle.math.ec.custom.sec.SecP128R1Curve;
18 // import org.bouncycastle.math.ec.custom.sec.SecP160K1Curve;
19 // import org.bouncycastle.math.ec.custom.sec.SecP160R1Curve;
20 // import org.bouncycastle.math.ec.custom.sec.SecP160R2Curve;
22 import org.bouncycastle.math.ec.custom.sec.SecP192K1Curve;
23 import org.bouncycastle.math.ec.custom.sec.SecP192R1Curve
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 225 /// @return If ec == errc::success, The absolute path to the program. Otherwise
228 std::error_code &ec) {
250 ec = windows_error(::GetLastError());
253 ec = windows_error(ERROR_BUFFER_OVERFLOW);
257 ec = std::error_code();
320 std::error_code ec; local
321 ProgramToRun = FindProgram(ProgramToRun, ec);
322 if (ec) {
324 << "': " << ec.message() << '\n';
393 ec = windows_error(::GetLastError())
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveSpec.java 10 import org.bouncycastle.math.ec.ECAlgorithms;
11 import org.bouncycastle.math.ec.ECCurve;
51 org.bouncycastle.math.ec.ECPoint g)
60 org.bouncycastle.math.ec.ECPoint g,
82 org.bouncycastle.math.ec.ECPoint g,
106 org.bouncycastle.math.ec.ECPoint g,
117 * return the name of the curve the EC domain parameters belong to.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m32r/
pic.d 11 4: ec 00 00 00 ld24 r12,0 <pic_gotpc>
27 24: 8c ec 00 00 or3 r12,r12,[#]0x0
42 3c: 8c ec 00 00 or3 r12,r12,[#]0x0
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
tlsmark.d 20 .*: (4b ff ff e8|e8 ff ff 4b) b 100000ec <_start\+0x4>
31 .*: (4b ff ff ec|ec ff ff 4b) b 1000011c <_start\+0x34>
  /external/autotest/server/site_tests/firmware_ECBootTime/
firmware_ECBootTime.py 13 Servo based EC boot time test.
23 """Check EC and AP boot times"""
24 # Initialize a list of two strings, one printed by the EC when the AP
25 # is taken out of reset, and another one printed when the EC observes
30 # have the EC print the same fixed strings for these two events on all
41 # regular expression to say that EC is ready. For systems that
43 # asked to power cycle the EC to be 100% sure (I wish) that
46 # the EC booting the second time and the test sending the
53 reboot = self.ec.send_command_get_output(
55 power_press = self.ec.send_command_get_output
    [all...]
  /external/autotest/server/site_tests/firmware_FAFTSetup/
firmware_FAFTSetup.py 19 - No terminal opened on EC console
28 """Verify EC console is available if using Chrome EC."""
30 # Not Chrome EC. Nothing to check.
33 self.ec.send_command("chan 0")
38 self.ec.send_command_get_output("version",
40 self.ec.send_command("chan 0xffffffff")
43 logging.error("Cannot talk to EC console.")
45 "Please check there is no terminal opened on EC console.")
46 raise error.TestFail("Failed EC console check."
    [all...]
  /external/autotest/server/site_tests/firmware_SoftwareSync/
firmware_SoftwareSync.py 13 Servo based EC software sync test.
18 # This test tries to corrupt EC firmware. Should disable EC WP.
32 """Record current EC hash and corrupt EC firmware."""
33 self._ec_hash = self.faft_client.ec.get_firmware_sha()
34 logging.info("Stored EC hash: %s", self._ec_hash)
35 self.faft_client.ec.corrupt_body('rw')
38 """Check EC firmware is restored by software sync."""
39 ec_hash = self.faft_client.ec.get_firmware_sha(
    [all...]
  /external/curl/tests/
keywords.pl 66 my @ec = getpart("verify", "errorcode");
67 if($ec[0]) {
69 $errors{ 0 + $ec[0] } ++;
  /external/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 85 static bool error(std::error_code ec) {
86 if (!ec)
88 errs() << "LLVMSymbolizer: error reading file: " << ec.message() << ".\n";
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address.hpp 90 ASIO_DECL std::string to_string(asio::error_code& ec) const;
99 const char* str, asio::error_code& ec);
108 const std::string& str, asio::error_code& ec);
address_v6.hpp 92 ASIO_DECL std::string to_string(asio::error_code& ec) const;
99 const char* str, asio::error_code& ec);
106 const std::string& str, asio::error_code& ec);
  /external/autotest/server/site_tests/firmware_ECAdc/
firmware_ECAdc.py 13 Servo based EC ADC test.
21 """Read EC internal temperature by EC ADC.
26 t = int(self.ec.send_command_get_output("temps",
29 raise error.TestFail("Abnormal EC temperature %d K" % t)
34 logging.info("Reading EC internal temperature for %d times.",

Completed in 6322 milliseconds

1 2 3 4 5 6 7 891011>>