HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 151 - 175 of 339) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4c/source/test/intltest/
dtfmtrtts.cpp 503 UErrorCode ec = U_ZERO_ERROR; local
505 dateFormat = new SimpleDateFormat((UnicodeString)"EEE MMM dd HH:mm:ss.SSS zzz yyyy G", ec);
506 if (U_FAILURE(ec) || dateFormat == 0) {
dtifmtts.cpp 1046 UErrorCode ec = U_ZERO_ERROR; local
1165 UErrorCode ec = U_ZERO_ERROR; local
1268 UErrorCode ec = U_ZERO_ERROR; local
1423 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
strtest.cpp 527 UErrorCode ec = U_ZERO_ERROR; local
529 chStr.appendInvariantChars(UnicodeString("The '@' character is not invariant."), ec);
530 if (ec != U_INVARIANT_CONVERSION_ERROR) {
531 errln("%s:%d expected U_INVARIANT_CONVERSION_ERROR, got %s", __FILE__, __LINE__, u_errorName(ec));
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/test/letest/
gendata.cpp 198 int32_t ec = 0; local
230 while((element = testCase->nextChildElement(ec)) != NULL) {
xmlreader.cpp 175 int32_t ec = 0; local
199 while((element = testCase->nextChildElement(ec)) != NULL) {
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 175 int32_t ec = 0; local
199 while((element = testCase->nextChildElement(ec)) != NULL) {
  /external/libunwind/tests/
Gia64-test-nat.c 424 unw_word_t r[4], nat[4], ec, expected; local
489 if ((unw_get_reg (c, UNW_IA64_AR_EC, &ec)) < 0)
490 panic ("%s: failed to read register ar.ec, error=%d\n", __FUNCTION__, ret);
493 if (ec != expected)
494 panic ("%s: ar.ec=%016lx instead of %016lx!\n",
495 __FUNCTION__, ec, expected);
  /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/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417.cpp 444 CFX_WideString ec = CBC_PDF417ErrorCorrection::generateErrorCorrection( local
447 CFX_WideString fullCodewords = dataCodewords + ec;
    [all...]
  /external/valgrind/coregrind/
m_execontext.c 162 ExeContext* ec; local
169 for (ec = ec_htab[i]; ec; ec = ec->chain) {
171 ec->ecu, ec->n_ips);
172 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
182 for (ec = ec_htab[i]; ec; ec = ec->chain
491 ExeContext* ec; local
    [all...]
  /external/wpa_supplicant_8/src/common/
sae.h 34 struct crypto_ec *ec; member in struct:sae_temporary_data
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 357 std::error_code ec = moduleOrError.getError(); local
358 if (!ec) {
360 ec = module->materializeAll();
363 if (ec) {
364 errmsg = ec.message();
375 new llvm::tool_output_file(outFile.c_str(), ec,
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 276 std::error_code ec = module.materializeAll(); local
277 if (ec) {
279 module.getModuleIdentifier().c_str(), ec.message().c_str());
452 std::error_code ec = module.materializeAll(); local
453 if (ec) {
455 module.getModuleIdentifier().c_str(), ec.message().c_str());
  /libcore/luni/src/test/java/tests/security/spec/
EllipticCurveTest.java 440 EllipticCurve ec = new EllipticCurve(new testECField(), BigInteger local
442 assertEquals("incorrect a", ec.getA(), BigInteger.valueOf(4L));
443 assertEquals("incorrect b", ec.getB(), BigInteger.ONE);
444 assertEquals("incorrect size", ec.getField().getFieldSize(), 2);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 96 CharsetDecoder ec = new MockCharsetDecoder(cs, 1, MAX_BYTES); local
97 assertSame(ec.charset(), cs);
98 assertEquals(1.0, ec.averageCharsPerByte(), 0.0);
99 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
105 ec = new MockCharsetDecoder(null, 1, MAX_BYTES);
106 assertNull(ec.charset());
107 assertEquals(1.0, ec.averageCharsPerByte(), 0.0);
108 assertTrue(ec.maxCharsPerByte() == MAX_BYTES);
110 ec = new MockCharsetDecoder(new CharsetEncoderTest.MockCharset("mock",
115 // ec = new MockCharsetDecoder(cs, MAX_BYTES, 1)
    [all...]
CharsetEncoderTest.java 121 CharsetEncoder ec = new MockCharsetEncoder(cs, 1, MAX_BYTES); local
122 assertSame(ec.charset(), cs);
123 assertEquals(1.0, ec.averageBytesPerChar(), 0);
124 assertTrue(ec.maxBytesPerChar() == MAX_BYTES);
131 ec = new MockCharsetEncoder(null, 1, MAX_BYTES);
136 ec = new MockCharsetEncoder(new MockCharset("mock", new String[0]), 1,
141 // ec = new MockCharsetEncoder(cs, MAX_BYTES, 1);
142 // assertTrue(ec.averageBytesPerChar() == MAX_BYTES);
143 // assertTrue(ec.maxBytesPerChar() == 1);
147 ec = new MockCharsetEncoder(cs, 0, MAX_BYTES)
177 CharsetEncoder ec = new MockCharsetEncoder(cs, 1, MAX_BYTES, ba); local
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 627 int ec[PC_NUM_HEIGHT_LAYER] = {0}; local
654 int h, elIdx = ec[heightLayer], chIdx = cc[heightLayer];
695 ec[heightLayer] += 1;
708 int h, elIdx = ec[heightLayer], chIdx = cc[heightLayer];
749 ec[heightLayer] += 1;
762 int h, elIdx = ec[heightLayer], chIdx = cc[heightLayer];
803 ec[heightLayer] += 1;
820 ec[heightLayer] += 1;
826 ec[heightLayer] += 1;
832 ec[heightLayer] += 1
    [all...]
  /external/avahi/avahi-utils/
avahi-browse.c 786 char *ec; local
796 if ((ec = getenv("COLUMNS")))
797 n_columns = atoi(ec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafUtil.java 1 package org.bouncycastle.math.ec;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192R1Point.java 1 package org.bouncycastle.math.ec.custom.sec;
3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECFieldElement;
5 import org.bouncycastle.math.ec.ECPoint;
SecP224R1FieldElement.java 1 package org.bouncycastle.math.ec.custom.sec;
5 import org.bouncycastle.math.ec.ECFieldElement;
SecP224R1Point.java 1 package org.bouncycastle.math.ec.custom.sec;
3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECFieldElement;
5 import org.bouncycastle.math.ec.ECPoint;
SecP256R1Point.java 1 package org.bouncycastle.math.ec.custom.sec;
3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECFieldElement;
5 import org.bouncycastle.math.ec.ECPoint;
SecP384R1Point.java 1 package org.bouncycastle.math.ec.custom.sec;
3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECFieldElement;
5 import org.bouncycastle.math.ec.ECPoint;

Completed in 1353 milliseconds

1 2 3 4 5 67 8 91011>>