Searched defs:ec (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
H A Ddefault.pass.cpp21 std::error_code ec; local
22 assert(ec.value() == 0);
23 assert(ec.category() == std::system_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
H A Dassign.pass.cpp22 std::error_code ec; local
23 ec.assign(6, std::system_category());
24 assert(ec.value() == 6);
25 assert(ec.category() == std::system_category());
28 std::error_code ec; local
29 ec.assign(8, std::generic_category());
30 assert(ec.value() == 8);
31 assert(ec.category() == std::generic_category());
H A Dclear.pass.cpp22 std::error_code ec; local
23 ec.assign(6, std::generic_category());
24 assert(ec.value() == 6);
25 assert(ec.category() == std::generic_category());
26 ec.clear();
27 assert(ec.value() == 0);
28 assert(ec.category() == std::system_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
H A Dmake_error_code.pass.cpp22 std::error_code ec = make_error_code(std::errc::operation_canceled); local
23 assert(ec.value() == static_cast<int>(std::errc::operation_canceled));
24 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
H A Ddefault.pass.cpp21 std::error_condition ec; local
22 assert(ec.value() == 0);
23 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
H A DErrorConditionEnum.pass.cpp22 std::error_condition ec; local
23 ec = std::errc::not_enough_memory;
24 assert(ec.value() == static_cast<int>(std::errc::not_enough_memory));
25 assert(ec.category() == std::generic_category());
H A Dassign.pass.cpp22 std::error_condition ec; local
23 ec.assign(6, std::system_category());
24 assert(ec.value() == 6);
25 assert(ec.category() == std::system_category());
28 std::error_condition ec; local
29 ec.assign(8, std::generic_category());
30 assert(ec.value() == 8);
31 assert(ec.category() == std::generic_category());
H A Dclear.pass.cpp22 std::error_condition ec; local
23 ec.assign(6, std::system_category());
24 assert(ec.value() == 6);
25 assert(ec.category() == std::system_category());
26 ec.clear();
27 assert(ec.value() == 0);
28 assert(ec.category() == std::generic_category());
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/error.reporting/
H A Dmake_error_code.pass.cpp20 std::error_code ec = make_error_code(std::io_errc::stream); local
21 assert(ec.value() == static_cast<int>(std::io_errc::stream));
22 assert(ec.category() == std::iostream_category());
/external/libcxx/test/thread/futures/futures.errors/
H A Dfuture_category.pass.cpp20 const std::error_category& ec = std::future_category(); local
21 assert(std::strcmp(ec.name(), "future") == 0);
H A Dmake_error_code.pass.cpp22 std::error_code ec = make_error_code(std::future_errc::broken_promise); local
23 assert(ec.value() == static_cast<int>(std::future_errc::broken_promise));
24 assert(ec.category() == std::future_category());
/external/libcxx/test/thread/futures/futures.future_error/
H A Dcode.pass.cpp22 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); local
23 std::future_error f(ec);
24 assert(f.code() == ec);
27 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); local
28 std::future_error f(ec);
29 assert(f.code() == ec);
32 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); local
33 std::future_error f(ec);
34 assert(f.code() == ec);
37 std::error_code ec local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DPreCompInfo.java1 package org.bouncycastle.math.ec;
H A DWTauNafPreCompInfo.java1 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()
H A DZTauElement.java1 package org.bouncycastle.math.ec;
H A DAbstractECMultiplier.java1 package org.bouncycastle.math.ec;
H A DECConstants.java1 package org.bouncycastle.math.ec;
H A DECMultiplier.java1 package org.bouncycastle.math.ec;
H A DWNafL2RMultiplier.java1 package org.bouncycastle.math.ec;
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DStorageErrorCallback.cpp39 StorageErrorCallback::CallbackTask::CallbackTask(StorageErrorCallback* callback, ExceptionCode ec) argument
41 , m_ec(ec)
/external/chromium_org/third_party/icu/source/i18n/
H A Dmeasfmt.cpp25 UErrorCode& ec) {
27 if (U_SUCCESS(ec)) {
28 fmt = new CurrencyFormat(locale, ec);
29 if (U_FAILURE(ec)) {
37 MeasureFormat* U_EXPORT2 MeasureFormat::createCurrencyFormat(UErrorCode& ec) { argument
38 if (U_FAILURE(ec)) {
41 return MeasureFormat::createCurrencyFormat(Locale::getDefault(), ec);
24 createCurrencyFormat(const Locale& locale, UErrorCode& ec) argument
H A Dcurramt.cpp21 UErrorCode& ec) :
22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
26 UErrorCode& ec) :
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
20 CurrencyAmount(const Formattable& amount, const UChar* isoCode, UErrorCode& ec) argument
25 CurrencyAmount(double amount, const UChar* isoCode, UErrorCode& ec) argument
/external/chromium_org/extensions/renderer/
H A Ddocument_custom_bindings.cc35 blink::WebExceptionCode ec = 0; local
38 blink::WebString::fromUTF8(element_name), options, ec);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8ThrowException.h36 static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate) argument
38 return createDOMException(ec, message, String(), creationContext, isolate);
42 static v8::Handle<v8::Value> throwDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate) argument
44 return throwDOMException(ec, message, String(), creationContext, isolate);
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.h57 String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec) argument
59 return readAsText(executionContext, blob, "", ec);

Completed in 374 milliseconds

1234567891011>>