HomeSort by relevance Sort by last modified time
    Searched refs:ec (Results 176 - 200 of 698) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/Support/
Path.cpp 643 error_code EC = status(Path, Status);
644 if (EC)
645 return EC;
721 if (error_code ec = current_path(current_dir)) return ec;
764 if (error_code ec = fs::exists(parent, parent_exists)) return ec;
767 if (error_code ec = create_directories(parent, existed)) return ec;
787 if (error_code ec = status(path, st)
    [all...]
  /external/icu4c/i18n/
ucal.cpp 32 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) {
34 if (ec!=NULL && U_SUCCESS(*ec)) {
43 *ec = U_MEMORY_ALLOCATION_ERROR;
51 const int32_t* rawOffset, UErrorCode* ec) {
53 zoneType, region, rawOffset, *ec), ec);
57 ucal_openTimeZones(UErrorCode* ec) {
58 return uenum_openFromStringEnumeration(TimeZone::createEnumeration(), ec);
62 ucal_openCountryTimeZones(const char* country, UErrorCode* ec) {
    [all...]
msgfmt.cpp 199 void formatAndAppend(const Format* formatter, const Formattable& arg, UErrorCode& ec) {
201 formatter->format(arg, s, ec);
202 if (U_SUCCESS(ec)) {
303 UErrorCode ec = U_ZERO_ERROR; local
304 copyObjects(that, ec);
305 if (U_FAILURE(ec)) {
368 UErrorCode ec = U_ZERO_ERROR; local
369 copyObjects(that, ec);
370 if (U_FAILURE(ec)) {
399 UErrorCode ec = U_ZERO_ERROR local
1379 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
ucurr.cpp 152 _findMetaData(const UChar* currency, UErrorCode& ec) {
155 if (U_SUCCESS(ec)) {
156 ec = U_ILLEGAL_ARGUMENT_ERROR;
164 UResourceBundle* currencyData = ures_openDirect(U_ICUDATA_CURR, CURRENCY_DATA, &ec);
165 UResourceBundle* currencyMeta = ures_getByKey(currencyData, CURRENCY_META, currencyData, &ec);
167 if (U_FAILURE(ec)) {
179 rb = ures_getByKey(currencyMeta,DEFAULT_META, NULL, &ec);
180 if (U_FAILURE(ec)) {
189 const int32_t *data = ures_getIntVector(rb, &len, &ec);
190 if (U_FAILURE(ec) || len != 2)
802 UErrorCode ec = U_ZERO_ERROR; local
1431 ChoiceFormat f(UnicodeString(TRUE, currname, len), ec); local
    [all...]
transreg.h 95 UParseError& pe, UErrorCode& ec) const;
206 UErrorCode& ec);
217 UErrorCode& ec);
229 UErrorCode& ec);
240 UErrorCode& ec);
  /external/chromium_org/third_party/icu/source/test/intltest/
calregts.cpp 2206 UErrorCode ec = U_ZERO_ERROR; local
2308 UErrorCode ec = U_ZERO_ERROR; local
2421 UErrorCode ec = U_ZERO_ERROR; local
2494 UErrorCode ec = U_ZERO_ERROR; local
2508 UErrorCode ec = U_ZERO_ERROR; local
2586 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/icu4c/test/cintltst/
cdattst.c 801 UErrorCode ec = U_ZERO_ERROR; local
894 UErrorCode ec = U_ZERO_ERROR; local
1205 UErrorCode ec; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
ECKeyPairGenerator.java 13 import org.bouncycastle.math.ec.ECConstants;
14 import org.bouncycastle.math.ec.ECPoint;
32 * Given the domain parameters this routine generates an EC key
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECParameterSpec.java 3 import org.bouncycastle.math.ec.ECCurve;
4 import org.bouncycastle.math.ec.ECPoint;
  /external/chromium_org/third_party/icu/source/config/
mh-aix-va 104 @$(SHELL) -ec "echo '#! $*.a($*.so)' | cat - $< > $@"
120 @$(SHELL) -ec 'cat $< \
126 @$(SHELL) -ec '$(GEN_DEPS.c) $< > /dev/null'
130 @$(SHELL) -ec '$(GEN_DEPS.cc) $< > /dev/null'
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
d2i_pu.c 72 #include <openssl/ec.h>
120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
  /external/llvm/lib/AsmParser/
Parser.cpp 46 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Filename, File)) {
48 "Could not open input file: " + ec.message());
  /external/llvm/lib/MC/
MCObjectSymbolizer.cpp 67 error_code ec; local
71 SI.increment(ec)) {
72 if (ec) break;
87 RI.increment(ec)) {
88 if (ec) break;
135 error_code ec; local
139 SI.increment(ec)) {
140 if (ec) break;
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, In)) {
50 << InputFilename << "': " << ec.message() << '\n';
  /external/openssl/crypto/asn1/
d2i_pu.c 72 #include <openssl/ec.h>
120 if (!o2i_ECPublicKey(&(ret->pkey.ec),
  /external/wpa_supplicant_8/src/common/
sae.c 30 tmp->ec = crypto_ec_init(group);
31 if (tmp->ec) {
33 tmp->prime_len = crypto_ec_prime_len(tmp->ec);
34 tmp->prime = crypto_ec_get_prime(tmp->ec);
35 tmp->order = crypto_ec_get_order(tmp->ec);
79 crypto_ec_deinit(tmp->ec);
186 bits = crypto_ec_prime_len_bits(sae->tmp->ec);
202 if (crypto_ec_point_solve_y_coord(sae->tmp->ec, pwe, x, y_bit) < 0) {
300 sae->tmp->pwe_ecc = crypto_ec_point_init(sae->tmp->ec);
304 pwe_tmp = crypto_ec_point_init(sae->tmp->ec);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
transreg.h 95 UParseError& pe, UErrorCode& ec) const;
206 UErrorCode& ec);
217 UErrorCode& ec);
229 UErrorCode& ec);
240 UErrorCode& ec);
ucal.cpp 31 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) {
33 if (ec!=NULL && U_SUCCESS(*ec)) {
42 *ec = U_MEMORY_ALLOCATION_ERROR;
49 ucal_openTimeZones(UErrorCode* ec) {
50 return uenum_openFromStringEnumeration(TimeZone::createEnumeration(), ec);
54 ucal_openCountryTimeZones(const char* country, UErrorCode* ec) {
55 return uenum_openFromStringEnumeration(TimeZone::createEnumeration(country), ec);
59 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec) {
61 if (ec!=NULL && U_SUCCESS(*ec))
    [all...]
transreg.cpp 100 UErrorCode& ec) {
101 if (U_FAILURE(ec)) {
107 t = Transliterator::createInstance(aliasesOrRules, UTRANS_FORWARD, pe, ec);
108 if(U_FAILURE(ec)){
135 UVector transliterators(ec);
142 transliterators.addElement(Transliterator::createInstance(idBlock, UTRANS_FORWARD, pe, ec), ec); local
144 transliterators.addElement(transes->orphanElementAt(0), ec);
148 transliterators.addElement(Transliterator::createInstance(aliasesOrRules, UTRANS_FORWARD, pe, ec), ec); local
350 UErrorCode ec = U_ZERO_ERROR; local
374 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/valgrind/main/coregrind/
m_execontext.c 171 void VG_(pp_ExeContext) ( ExeContext* ec )
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
459 ExeContext* ec; local
463 for (ec = ec_htab[i]; ec; ec = ec->chain) {
464 if (ec->ecu == ecu)
465 return ec;
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdattst.c 774 UErrorCode ec = U_ZERO_ERROR; local
776 ctest_setTimeZone(NULL, &ec);
779 date = udat_open(UDAT_NONE, UDAT_SHORT, "en_US", NULL, 0, NULL, 0, &ec);
780 if (U_FAILURE(ec)) {
782 u_errorName(ec));
787 time = udat_open(UDAT_SHORT, UDAT_NONE, "en_US", NULL, 0, NULL, 0, &ec);
788 if (U_FAILURE(ec)) {
790 u_errorName(ec));
795 full = udat_open(UDAT_FULL, UDAT_FULL, "en_US", NULL, 0, NULL, 0, &ec);
796 if (U_FAILURE(ec)) {
1079 UErrorCode ec; local
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 539 error_code EC = status(Path, Status);
540 if (EC)
541 return EC;
733 /// \param ec This is set to errc::success if the map was constructed
739 error_code &ec);
749 error_code &ec);
859 explicit directory_iterator(const Twine &path, error_code &ec) {
862 ec = detail::directory_iterator_construct(*State,
866 explicit directory_iterator(const directory_entry &de, error_code &ec) {
868 ec = detail::directory_iterator_construct(*State, de.path())
971 error_code ec; local
    [all...]
  /external/icu4c/common/
uvector.h 107 void assign(const UVector& other, UElementAssigner *assign, UErrorCode &ec);
222 void sortedInsert(void* obj, UElementComparator *compare, UErrorCode& ec);
229 void sortedInsert(int32_t obj, UElementComparator *compare, UErrorCode& ec);
235 void sorti(UErrorCode &ec);
243 void sort(UElementComparator *compare, UErrorCode &ec);
251 void sortWithUComparator(UComparator *compare, const void *context, UErrorCode &ec);
268 void sortedInsert(UElement e, UElementComparator *compare, UErrorCode& ec);
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 144 bool llvm::error(error_code ec) {
145 if (!ec) return false;
147 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
365 error_code ec; local
368 i != e; i.increment(ec)) {
369 if (error(ec)) break;
381 si != se; si.increment(ec)) {
403 ri != re; ri.increment(ec)) {
404 if (error(ec)) break;
517 error_code ec; local
549 error_code ec; local
573 error_code ec; local
668 error_code ec; local
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 133 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
135 return Error("unable to read input: '" + ec.message() + "'");
149 error_code ec; local
152 I != E && !ec;
153 I.increment(ec)) {
193 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
195 return Error("unable to read input: '" + ec.message() + "'");

Completed in 1891 milliseconds

1 2 3 4 5 6 78 91011>>