HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 1 - 25 of 357) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 21 std::error_code ec; local
22 assert(ec.value() == 0);
23 assert(ec.category() == std::system_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
assign.pass.cpp 22 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());
clear.pass.cpp 22 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());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
make_error_code.pass.cpp 22 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());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
default.pass.cpp 21 std::error_condition ec; local
22 assert(ec.value() == 0);
23 assert(ec.category() == std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
ErrorConditionEnum.pass.cpp 22 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());
assign.pass.cpp 22 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());
clear.pass.cpp 22 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());
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/std.ios.manip/error.reporting/
make_error_code.pass.cpp 20 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());
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.errors/
future_category.pass.cpp 20 const std::error_category& ec = std::future_category(); local
21 assert(std::strcmp(ec.name(), "future") == 0);
make_error_code.pass.cpp 22 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());
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.future_error/
code.pass.cpp 22 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 = std::make_error_code(std::future_errc::no_state) local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.cpp 47 ExceptionCode ec = 0; local
56 base->setOption(index, element, ec);
58 V8Proxy::setDOMException(ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebKitCSSMatrixConstructor.cpp 60 ExceptionCode ec = 0; local
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
62 if (ec)
63 throwError(ec);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
PreCompInfo.java 1 package 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()
ZTauElement.java 1 package org.bouncycastle.math.ec;
  /external/llvm/lib/Object/
ELFObjectFile.cpp 26 error_code ec; local
34 return new ELFObjectFile<ELFType<support::little, 4, false> >(Object, ec);
38 return new ELFObjectFile<ELFType<support::little, 2, false> >(Object, ec);
44 return new ELFObjectFile<ELFType<support::big, 4, false> >(Object, ec);
48 return new ELFObjectFile<ELFType<support::big, 2, false> >(Object, ec);
54 return new ELFObjectFile<ELFType<support::big, 8, true> >(Object, ec);
58 return new ELFObjectFile<ELFType<support::big, 2, true> >(Object, ec);
64 return new ELFObjectFile<ELFType<support::little, 8, true> >(Object, ec);
68 return new ELFObjectFile<ELFType<support::little, 2, true> >(Object, ec);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 53 ExceptionCode ec = 0; local
56 ec = TYPE_MISMATCH_ERR;
58 select->setOption(index, option, ec);
59 setDOMException(exec, ec);
JSSVGLengthCustom.cpp 36 ExceptionCode ec = 0; local
37 float value = podImp.value(impl()->contextElement(), ec);
38 if (ec) {
39 setDOMException(exec, ec);
60 ExceptionCode ec = 0; local
61 podImp.setValue(value.toFloat(exec), impl()->contextElement(), ec);
62 if (ec) {
63 setDOMException(exec, ec);
87 ExceptionCode ec = 0;
88 podImp.convertToSpecifiedUnits(unitType, impl()->contextElement(), ec);
    [all...]
JSSharedWorkerCustom.cpp 71 ExceptionCode ec = 0; local
72 RefPtr<SharedWorker> worker = SharedWorker::create(ustringToString(scriptURL), ustringToString(name), window->document(), ec);
73 if (ec) {
74 setDOMException(exec, ec);
JSWebKitCSSMatrixCustom.cpp 42 ExceptionCode ec = 0; local
43 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(s, ec);
44 setDOMException(exec, ec);
JSWebSocketCustom.cpp 62 ExceptionCode ec = 0; local
64 webSocket->connect(url, ec);
69 webSocket->connect(url, protocol, ec);
71 setDOMException(exec, ec);
JSWorkerCustom.cpp 61 ExceptionCode ec = 0; local
62 RefPtr<Worker> worker = Worker::create(ustringToString(scriptURL), window->document(), ec);
63 if (ec) {
64 setDOMException(exec, ec);

Completed in 143 milliseconds

1 2 3 4 5 6 7 8 91011>>