HomeSort by relevance Sort by last modified time
    Searched refs:se (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code.pass.cpp 24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_int_error_category.pass.cpp 24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_error_code_string.pass.cpp 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg);
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_error_code_const_char_pointer.pass.cpp 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str());
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_int_error_category_const_char_pointer.pass.cpp 25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
27 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
28 std::string what_message(se.what());
ctor_int_error_category_string.pass.cpp 25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
27 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
28 std::string what_message(se.what());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code.pass.cpp 24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_int_error_category.pass.cpp 24 std::system_error se(static_cast<int>(std::errc::not_a_directory),
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_error_code_string.pass.cpp 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg);
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_error_code_const_char_pointer.pass.cpp 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str());
26 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
27 std::string what_message(se.what());
ctor_int_error_category_const_char_pointer.pass.cpp 25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
27 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
28 std::string what_message(se.what());
ctor_int_error_category_string.pass.cpp 25 std::system_error se(static_cast<int>(std::errc::not_a_directory),
27 assert(se.code() == std::make_error_code(std::errc::not_a_directory));
28 std::string what_message(se.what());
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoa.h 144 #define __strtopd(s,se,x) strtord(s,se,1,x)
145 #define __strtopdd(s,se,x) strtordd(s,se,1,x)
146 #define __strtopf(s,se,x) strtorf(s,se,1,x)
147 #define __strtopQ(s,se,x) strtorQ(s,se,1,x)
148 #define __strtopx(s,se,x) strtorx(s,se,1,x
    [all...]
  /ndk/sources/android/support/src/musl-math/
frexpl.c 12 int ee = u.i.se & 0x7fff;
25 u.i.se &= 0x8000;
26 u.i.se |= 0x3ffe;
  /external/chromium_org/base/third_party/dmg_fp/
dmg_fp.h 14 double strtod(const char* s00, char** se);
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/
ctor_char_pointer_error_code.pass.cpp 24 std::ios_base::failure se(what_arg.c_str(), make_error_code(std::errc::is_a_directory));
25 assert(se.code() == std::make_error_code(std::errc::is_a_directory));
26 std::string what_message(se.what());
32 std::ios_base::failure se(what_arg.c_str());
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
34 std::string what_message(se.what());
ctor_string_error_code.pass.cpp 24 std::ios_base::failure se(what_arg, make_error_code(std::errc::is_a_directory));
25 assert(se.code() == std::make_error_code(std::errc::is_a_directory));
26 std::string what_message(se.what());
32 std::ios_base::failure se(what_arg);
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
34 std::string what_message(se.what());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/
ctor_char_pointer_error_code.pass.cpp 24 std::ios_base::failure se(what_arg.c_str(), make_error_code(std::errc::is_a_directory));
25 assert(se.code() == std::make_error_code(std::errc::is_a_directory));
26 std::string what_message(se.what());
32 std::ios_base::failure se(what_arg.c_str());
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
34 std::string what_message(se.what());
ctor_string_error_code.pass.cpp 24 std::ios_base::failure se(what_arg, make_error_code(std::errc::is_a_directory));
25 assert(se.code() == std::make_error_code(std::errc::is_a_directory));
26 std::string what_message(se.what());
32 std::ios_base::failure se(what_arg);
33 assert(se.code() == std::make_error_code(std::io_errc::stream));
34 std::string what_message(se.what());
  /packages/apps/Nfc/nci/jni/
IntervalTimer.cpp 83 struct sigevent se; local
90 se.sigev_notify = SIGEV_THREAD;
91 se.sigev_value.sival_ptr = &mTimerId;
92 se.sigev_notify_function = cb;
93 se.sigev_notify_attributes = NULL;
95 stat = timer_create(CLOCK_MONOTONIC, &se, &mTimerId);
  /bionic/tests/
time_test.cpp 149 sigevent_t se; local
150 memset(&se, 0, sizeof(se));
151 se.sigev_notify = SIGEV_THREAD;
152 se.sigev_notify_function = NoOpNotifyFunction;
154 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id));
181 sigevent_t se; local
182 memset(&se, 0, sizeof(se));
183 se.sigev_notify = SIGEV_SIGNAL
207 sigevent_t se; member in struct:Counter
296 sigevent_t se; local
311 sigevent_t se; local
357 sigevent_t se; local
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
ContactsProviderTest.java 47 } catch (SecurityException se) {
65 } catch (SecurityException se) {
83 } catch (SecurityException se) {
103 } catch (SecurityException se) {
121 } catch (SecurityException se) {
AccountManagerTest.java 50 } catch (SecurityException se) {
65 } catch (SecurityException se) {
81 } catch (SecurityException se) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
SessionExpiresParser.java 37 SessionExpires se = new SessionExpires(); local
47 se.setExpires(delta);
55 super.parse(se);
56 return se;
  /external/qemu/
savevm.c 1698 SaveStateEntry *se; local
1712 SaveStateEntry *se; local
1738 SaveStateEntry *se; local
1796 SaveStateEntry *se, *new_se; local
1826 SaveStateEntry *se; local
1869 SaveStateEntry *se, *new_se; local
2048 SaveStateEntry *se; local
2061 SaveStateEntry *se; local
2099 SaveStateEntry *se; local
2132 SaveStateEntry *se; local
2220 SaveStateEntry *se; local
2313 SaveStateEntry *se; member in struct:LoadStateEntry
2346 SaveStateEntry *se; local
    [all...]

Completed in 183 milliseconds

1 2 3 4 5 6 7 8 91011>>