HomeSort by relevance Sort by last modified time
    Searched defs:ec (Results 76 - 100 of 542) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/Support/
FileOutputBuffer.cpp 29 std::error_code ec; local
32 ec = llvm::sys::fs::resize_file(pFileHandle.handler(), pSize);
33 if (ec)
34 return ec;
38 llvm::sys::fs::mapped_file_region::readwrite, pSize, 0, ec));
39 if (ec)
40 return ec;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 40 std::error_code ec; local
41 ec = two;
42 assert(ec.value() == 2);
43 assert(ec.category() == std::generic_category());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
increment.pass.cpp 17 // directory_iterator& increment(error_code& ec) noexcept;
37 std::error_code ec; ((void)ec); local
42 ASSERT_SAME_TYPE(decltype(d.increment(ec)), directory_iterator&);
43 ASSERT_NOEXCEPT(d.increment(ec));
53 std::error_code ec; local
54 directory_iterator it(testDir, ec);
55 TEST_REQUIRE(!ec);
76 std::error_code ec; local
77 directory_iterator it(testDir, ec);
100 std::error_code ec; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.filesystem_error/
filesystem_error.members.pass.cpp 16 // filesystem_error(const string& what_arg, error_code ec);
17 // filesystem_error(const string& what_arg, const path& p1, error_code ec);
18 // filesystem_error(const string& what_arg, const path& p1, const path& p2, error_code ec);
44 std::error_code ec = std::make_error_code(std::errc::file_exists); local
48 // filesystem_error(const string& what_arg, error_code ec);
50 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, ec));
51 filesystem_error e(what_arg, ec);
53 assert(e.code() == ec);
56 // filesystem_error(const string& what_arg, const path&, error_code ec);
58 ASSERT_NOT_NOEXCEPT(filesystem_error(what_arg, p1, ec));
80 std::error_code ec; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
ctor.pass.cpp 19 // recursive_directory_iterator(const path& p, error_code& ec) noexcept;
20 // recursive_directory_iterator(const path& p, directory_options options, error_code& ec) noexcept;
60 std::error_code ec; local
68 RDI it(testPath, ec);
69 TEST_CHECK(ec);
73 RDI it(testPath, opts, ec);
74 TEST_CHECK(ec);
105 std::error_code ec; local
106 RDI it(testDir, ec);
107 TEST_REQUIRE(ec);
113 std::error_code ec; local
134 std::error_code ec; local
142 std::error_code ec; local
157 std::error_code ec; local
176 std::error_code ec; local
194 std::error_code ec; local
210 std::error_code ec; local
221 std::error_code ec; local
    [all...]
depth.pass.cpp 38 std::error_code ec; local
39 recursive_directory_iterator it(testDir, ec);
40 TEST_REQUIRE(!ec);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.create_directory_symlink/
create_directory_symlink.pass.cpp 16 // error_code& ec) noexcept;
33 std::error_code ec; ((void)ec); local
35 ASSERT_NOEXCEPT(fs::create_directory_symlink(p, p, ec));
45 std::error_code ec; local
46 fs::create_directory_symlink(sym, file2, ec);
47 TEST_REQUIRE(ec);
58 std::error_code ec; local
59 fs::create_directory_symlink(dir_sym, dest, ec);
60 TEST_REQUIRE(!ec);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.create_hard_link/
create_hard_link.pass.cpp 16 // error_code& ec) noexcept;
32 std::error_code ec; ((void)ec); local
34 ASSERT_NOEXCEPT(fs::create_hard_link(p, p, ec));
44 std::error_code ec; local
45 fs::create_hard_link(sym, file2, ec);
46 TEST_REQUIRE(ec);
55 std::error_code ec; local
57 fs::create_hard_link(file, dest, ec);
58 TEST_REQUIRE(!ec);
69 std::error_code ec; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.current_path/
current_path.pass.cpp 15 // path current_path(error_code& ec);
17 // void current_path(path const&, std::error_code& ec) noexcept;
34 std::error_code ec; ((void)ec); local
36 ASSERT_NOT_NOEXCEPT(current_path(ec));
38 ASSERT_NOEXCEPT(current_path(p, ec));
43 std::error_code ec; local
44 const path p = current_path(ec);
45 TEST_REQUIRE(!ec);
63 std::error_code ec; local
75 std::error_code ec; local
86 std::error_code ec; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_empty/
is_empty.pass.cpp 15 // bool is_empty(path const& p, std::error_code& ec) noexcept;
32 std::error_code ec; ((void)ec); local
33 ASSERT_NOEXCEPT(is_empty(p, ec));
40 std::error_code ec; local
41 TEST_CHECK(is_empty(p, ec) == false);
42 TEST_CHECK(ec);
73 std::error_code ec; local
74 TEST_CHECK(is_empty(dir2, ec) == false);
75 TEST_CHECK(ec);
87 std::error_code ec = GetTestEC(); local
101 std::error_code ec = GetTestEC(); local
    [all...]
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
EventIdsTest.java 33 EventCounter ec = new EventCounter(); local
34 observableInLibrary.addOnPropertyChangedCallback(ec);
35 ec.assertProperty(BR.libField1, 0);
36 ec.assertProperty(BR.libField2, 0);
37 ec.assertProperty(BR.sharedField, 0);
40 ec.assertProperty(BR.libField1, 1);
41 ec.assertProperty(BR.libField2, 0);
42 ec.assertProperty(BR.sharedField, 0);
45 ec.assertProperty(BR.libField1, 1);
46 ec.assertProperty(BR.libField2, 1)
57 EventCounter ec = new EventCounter(); local
81 EventCounter ec = new EventCounter(); local
    [all...]
  /bootable/recovery/
verifier.h 53 ec(std::move(ec_)) {}
59 std::unique_ptr<EC_KEY, ECKEYDeleter> ec; member in struct:Certificate
  /development/vndk/tools/header-checker/header-abi-util/src/
collect_exported_headers.cpp 50 std::error_code ec; local
51 llvm::sys::fs::recursive_directory_iterator walker(dir_name, ec);
55 for ( ; walker != end; walker.increment(ec)) {
56 if (ec) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
cmd_load_symbols.py 84 ec = debugger.getExecutionContext(0) variable
85 ec.getExecutionService().stop()
86 ec.getExecutionService().waitForStop()
88 ec = debugger.getExecutionContext(0) variable
91 armplatform_debugger = edk2_debugger.ArmPlatformDebugger(ec, report_file, regions, verbose)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECConstants.java 1 package org.bouncycastle.math.ec;
FixedPointPreCompInfo.java 1 package org.bouncycastle.math.ec;
GLVMultiplier.java 1 package org.bouncycastle.math.ec;
5 import org.bouncycastle.math.ec.endo.GLVEndomorphism;
WNafPreCompInfo.java 1 package org.bouncycastle.math.ec;
  /external/google-benchmark/src/
re.h 102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB); local
103 if (ec != 0) {
105 size_t needed = regerror(ec, &re_, nullptr, 0);
107 regerror(ec, &re_, errbuf, needed);
  /external/icu/icu4c/source/test/cintltst/
cposxtst.c 41 UErrorCode ec = U_ZERO_ERROR; local
60 const char *path = loadTestData(&ec);
62 if (U_FAILURE(ec)) {
63 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec));
67 catd = u_catopen(path, "mc", &ec);
68 if (U_FAILURE(ec)) {
69 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec));
84 ec = U_ZERO_ERROR;
85 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec);
87 err = u_errorName(ec);
    [all...]
  /external/libcxx/src/
condition_variable.cpp 44 int ec = __libcpp_condvar_wait(&__cv_, lk.mutex()->native_handle()); variable
45 if (ec)
46 __throw_system_error(ec, "condition_variable wait failed");
74 int ec = __libcpp_condvar_timedwait(&__cv_, lk.mutex()->native_handle(), &ts); variable
75 if (ec != 0 && ec != ETIMEDOUT)
76 __throw_system_error(ec, "condition_variable timed_wait failed");
  /external/libcxx/test/libcxx/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 40 int ec; local
46 ec = sigaction(SIGALRM, &action, nullptr);
47 assert(!ec);
55 ec = setitimer(ITIMER_REAL, &it, nullptr);
56 assert(!ec);
  /external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
ctor.pass.cpp 18 // directory_iterator(const path& p, error_code& ec);
19 // directory_iterator(const path& p, directory_options options, error_code& ec);
63 std::error_code ec; local
71 directory_iterator it(testPath, ec);
72 TEST_CHECK(ec);
76 directory_iterator it(testPath, opts, ec);
77 TEST_CHECK(ec);
107 std::error_code ec; local
108 directory_iterator it(testDir, ec);
109 TEST_REQUIRE(ec);
115 std::error_code ec; local
136 std::error_code ec; local
144 std::error_code ec; local
159 std::error_code ec; local
178 std::error_code ec; local
196 std::error_code ec; local
211 std::error_code ec; local
221 std::error_code ec; local
236 std::error_code ec; local
244 std::error_code ec; local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.canonical/
canonical.pass.cpp 15 // path canonical(const path& p, error_code& ec);
16 // path canonical(const path& p, const path& base, error_code& ec);
33 std::error_code ec; ((void)ec); local
36 ASSERT_NOT_NOEXCEPT(canonical(p, ec));
37 ASSERT_NOT_NOEXCEPT(canonical(p, p, ec));
68 std::error_code ec; local
69 const path ret = canonical(TC.p, TC.base, ec);
70 TEST_REQUIRE(!ec);
80 std::error_code ec; local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.copy_symlink/
copy_symlink.pass.cpp 16 // error_code& ec) noexcept;
34 std::error_code ec; ((void)ec); local
36 ASSERT_NOEXCEPT(fs::copy_symlink(p, p, ec));
42 auto checkThrow = [](path const& f, path const& t, const std::error_code& ec)
50 && err.code() == ec;
53 ((void)f); ((void)t); ((void)ec);
65 std::error_code ec; local
66 fs::copy_symlink(file, dne, ec);
67 TEST_REQUIRE(ec);
71 std::error_code ec; local
77 std::error_code ec; local
92 std::error_code ec; local
100 std::error_code ec; local
    [all...]

Completed in 403 milliseconds

1 2 34 5 6 7 8 91011>>