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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/i18n/
ucurrimp.h 27 U_NAMESPACE_QUALIFIER UnicodeString& result, UErrorCode& ec);
55 UErrorCode& ec);
anytrans.cpp 125 UErrorCode ec = U_ZERO_ERROR; local
139 s = uscript_getScript(ch, &ec);
151 s = uscript_getScript(ch, &ec);
181 UErrorCode& ec) :
185 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
186 if (U_FAILURE(ec)) {
210 UErrorCode ec = U_ZERO_ERROR; local
211 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
212 if (U_FAILURE(ec)) {
280 UErrorCode ec = U_ZERO_ERROR local
313 UErrorCode ec = U_ZERO_ERROR; local
335 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
measfmt.h 49 * @param ec input-output error code
54 UErrorCode& ec);
59 * @param ec input-output error code
63 static MeasureFormat* U_EXPORT2 createCurrencyFormat(UErrorCode& ec);
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.cpp 25 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) {
26 if (done || U_FAILURE(ec)) {
32 if (!reader->readLineSkippingComments(line, ec)) {
40 if (!nextToken(token, ec)) {
42 if (U_FAILURE(ec)) return FALSE;
60 * @param ec input-output error code
64 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) {
87 ec = U_MALFORMED_UNICODE_ESCAPE;
103 ec = U_UNTERMINATED_QUOTE;
dtifmtts.cpp 936 UErrorCode ec = U_ZERO_ERROR; local
1058 UErrorCode ec = U_ZERO_ERROR; local
1213 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
tokiter.h 43 UBool next(UnicodeString& token, UErrorCode& ec);
61 UBool nextToken(UnicodeString& token, UErrorCode& ec);
  /external/icu4c/i18n/
ucurrimp.h 27 icu::UnicodeString& result, UErrorCode& ec);
55 UErrorCode& ec);
anytrans.cpp 125 UErrorCode ec = U_ZERO_ERROR; local
139 s = uscript_getScript(ch, &ec);
151 s = uscript_getScript(ch, &ec);
181 UErrorCode& ec) :
185 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
186 if (U_FAILURE(ec)) {
210 UErrorCode ec = U_ZERO_ERROR; local
211 cache = uhash_open(uhash_hashLong, uhash_compareLong, NULL, &ec);
212 if (U_FAILURE(ec)) {
280 UErrorCode ec = U_ZERO_ERROR local
313 UErrorCode ec = U_ZERO_ERROR; local
335 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/icu4c/i18n/unicode/
measfmt.h 53 * @param ec input-output error code
58 UErrorCode& ec);
63 * @param ec input-output error code
67 static MeasureFormat* U_EXPORT2 createCurrencyFormat(UErrorCode& ec);
  /external/icu4c/test/intltest/
tokiter.cpp 26 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) {
27 if (done || U_FAILURE(ec)) {
33 if (!reader->readLineSkippingComments(line, ec)) {
41 if (!nextToken(token, ec)) {
43 if (U_FAILURE(ec)) return FALSE;
61 * @param ec input-output error code
65 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) {
88 ec = U_MALFORMED_UNICODE_ESCAPE;
104 ec = U_UNTERMINATED_QUOTE;
dtifmtts.cpp 1060 UErrorCode ec = U_ZERO_ERROR; local
1179 UErrorCode ec = U_ZERO_ERROR; local
1213 UErrorCode ec = U_ZERO_ERROR; local
1368 UErrorCode ec = U_ZERO_ERROR; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uset_props.cpp 32 UErrorCode* ec)
35 UnicodeSet* set = new UnicodeSet(pat, *ec);
38 *ec = U_MEMORY_ALLOCATION_ERROR;
42 if (U_FAILURE(*ec)) {
52 UErrorCode* ec)
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec);
58 *ec = U_MEMORY_ALLOCATION_ERROR;
62 if (U_FAILURE(*ec)) {
101 UProperty prop, int32_t value, UErrorCode* ec) {
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
    [all...]
ucat.c 38 u_catopen(const char* name, const char* locale, UErrorCode* ec) {
39 return (u_nl_catd) ures_open(name, locale, ec);
50 int32_t* len, UErrorCode* ec) {
55 if (ec == NULL || U_FAILURE(*ec)) {
61 len, ec);
62 if (U_FAILURE(*ec)) {
  /external/icu4c/common/
uset_props.cpp 32 UErrorCode* ec)
35 UnicodeSet* set = new UnicodeSet(pat, *ec);
38 *ec = U_MEMORY_ALLOCATION_ERROR;
42 if (U_FAILURE(*ec)) {
52 UErrorCode* ec)
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec);
58 *ec = U_MEMORY_ALLOCATION_ERROR;
62 if (U_FAILURE(*ec)) {
101 UProperty prop, int32_t value, UErrorCode* ec) {
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
    [all...]
ucat.c 38 u_catopen(const char* name, const char* locale, UErrorCode* ec) {
39 return (u_nl_catd) ures_open(name, locale, ec);
50 int32_t* len, UErrorCode* ec) {
55 if (ec == NULL || U_FAILURE(*ec)) {
61 len, ec);
62 if (U_FAILURE(*ec)) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMError.h 49 static PassRefPtr<DOMError> create(ExceptionCode ec)
51 return adoptRef(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
54 static PassRefPtr<DOMError> create(ExceptionCode ec, const String& message)
56 return adoptRef(new DOMError(DOMException::getErrorName(ec), message));
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 44 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, buf)) {
45 errs() << "Error: '" << ec.message() << "' opening file '" << InputFilename
48 ec = coff2yaml(outs(), buf.take());
49 if (ec)
50 errs() << "Error: " << ec.message() << " dumping COFF file\n";
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
condition_variable.cpp 40 int ec = pthread_cond_wait(&__cv_, lk.mutex()->native_handle()); local
41 if (ec)
42 __throw_system_error(ec, "condition_variable wait failed");
70 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); local
71 if (ec != 0 && ec != ETIMEDOUT)
72 __throw_system_error(ec, "condition_variable timed_wait failed");
mutex.cpp 30 int ec = pthread_mutex_lock(&__m_); local
31 if (ec)
32 __throw_system_error(ec, "mutex lock failed");
44 int ec = pthread_mutex_unlock(&__m_); variable
45 assert(ec == 0);
53 int ec = pthread_mutexattr_init(&attr); local
54 if (ec)
56 ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
57 if (ec)
62 ec = pthread_mutex_init(&__m_, &attr)
88 int ec = pthread_mutex_lock(&__m_); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECPublicKey.java 5 import org.bouncycastle.math.ec.ECPoint;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECMultiplier.java 1 package org.bouncycastle.math.ec;
WTauNafPreCompInfo.java 1 package org.bouncycastle.math.ec;
12 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
21 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
32 * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageErrorCallback.h 51 static PassOwnPtr<CallbackTask> create(PassRefPtr<StorageErrorCallback> callback, ExceptionCode ec)
53 return adoptPtr(new CallbackTask(callback, ec));
  /external/chromium_org/third_party/icu/source/common/unicode/
ucat.h 89 * @param ec input/output error code. Upon output,
97 * u_catgets(). If the ec parameter indicates success, then the caller
99 * catalog. If the ec parameter indicates failure, then NULL will be
105 u_catopen(const char* name, const char* locale, UErrorCode* ec);
136 * @param ec input/output error code. May be U_USING_FALLBACK_WARNING
145 * which ec indicates a failing error code upon entry to this
153 int32_t* len, UErrorCode* ec);
  /external/icu4c/common/unicode/
ucat.h 89 * @param ec input/output error code. Upon output,
97 * u_catgets(). If the ec parameter indicates success, then the caller
99 * catalog. If the ec parameter indicates failure, then NULL will be
105 u_catopen(const char* name, const char* locale, UErrorCode* ec);
136 * @param ec input/output error code. May be U_USING_FALLBACK_WARNING
145 * which ec indicates a failing error code upon entry to this
153 int32_t* len, UErrorCode* ec);

Completed in 531 milliseconds

1 23 4 5 6 7 8 91011>>