HomeSort by relevance Sort by last modified time
    Searched refs:ex (Results 26 - 50 of 5305) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/
tuple_size_v_3.fail.cpp 20 namespace ex = std::experimental;
24 auto x = ex::tuple_size_v<std::tuple<>*>;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/z80/
misc.s 4 ex af,af'
6 ex de,hl
7 ex (sp),hl
8 ex (sp),ix
9 ex (sp),iy
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/meta/meta.type.synop/
meta.unary.cat.pass.cpp 15 namespace ex = std::experimental;
25 static_assert(ex::is_void_v<T>, "");
26 static_assert(std::is_same<decltype(ex::is_void_v<T>), const bool>::value, "");
27 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
31 static_assert(!ex::is_void_v<T>, "");
32 static_assert(ex::is_void_v<T> == std::is_void<T>::value, "");
36 static_assert(ex::is_null_pointer_v<T>, "");
37 static_assert(std::is_same<decltype(ex::is_null_pointer_v<T>), const bool>::value, "");
38 static_assert(ex::is_null_pointer_v<T> == std::is_null_pointer<T>::value, "");
42 static_assert(!ex::is_null_pointer_v<T>, "")
    [all...]
meta.unary.prop.query.pass.cpp 15 namespace ex = std::experimental;
21 static_assert(ex::alignment_of_v<T> == 1, "");
22 static_assert(std::is_same<decltype(ex::alignment_of_v<T>), const std::size_t>::value, "");
23 static_assert(ex::alignment_of_v<T> == std::alignment_of<T>::value, "");
27 static_assert(ex::rank_v<T> == 3, "");
28 static_assert(std::is_same<decltype(ex::rank_v<T>), const std::size_t>::value, "");
29 static_assert(ex::rank_v<T> == std::rank<T>::value, "");
33 static_assert(ex::rank_v<T> == 0, "");
34 static_assert(ex::rank_v<T> == std::rank<T>::value, "");
38 static_assert(ex::extent_v<T> == 2, "")
    [all...]
meta.unary.comp.pass.cpp 15 namespace ex = std::experimental;
23 static_assert(ex::is_reference_v<T>, "");
24 static_assert(std::is_same<decltype(ex::is_reference_v<T>), const bool>::value, "");
25 static_assert(ex::is_reference_v<T> == std::is_reference<T>::value, "");
29 static_assert(!ex::is_reference_v<T>, "");
30 static_assert(ex::is_reference_v<T> == std::is_reference<T>::value, "");
34 static_assert(ex::is_arithmetic_v<T>, "");
35 static_assert(std::is_same<decltype(ex::is_arithmetic_v<T>), const bool>::value, "");
36 static_assert(ex::is_arithmetic_v<T> == std::is_arithmetic<T>::value, "");
40 static_assert(!ex::is_arithmetic_v<T>, "")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
IllegalCharsetNameExceptionTest.java 33 IllegalCharsetNameException ex = new IllegalCharsetNameException( local
35 assertTrue(ex instanceof IllegalArgumentException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getCharsetName(), "impossible");
38 assertTrue(ex.getMessage().indexOf("impossible") != -1);
40 ex = new IllegalCharsetNameException("ascii");
41 assertNull(ex.getCause());
42 assertEquals(ex.getCharsetName(), "ascii");
43 assertTrue(ex.getMessage().indexOf("ascii") != -1);
45 ex = new IllegalCharsetNameException("")
    [all...]
UnsupportedCharsetExceptionTest.java 33 UnsupportedCharsetException ex = new UnsupportedCharsetException( local
35 assertTrue(ex instanceof IllegalArgumentException);
36 assertNull(ex.getCause());
37 assertEquals(ex.getCharsetName(), "impossible");
38 assertTrue(ex.getMessage().indexOf("impossible") != -1);
40 ex = new UnsupportedCharsetException("ascii");
41 assertNull(ex.getCause());
42 assertEquals(ex.getCharsetName(), "ascii");
43 assertTrue(ex.getMessage().indexOf("ascii") != -1);
45 ex = new UnsupportedCharsetException("")
    [all...]
  /dalvik/dx/tests/046-dex-exceptions/
Blort.java 31 } catch (RuntimeException ex) {
40 } catch (RuntimeException ex) {
48 } catch (RuntimeException ex) {
54 } catch (RuntimeException ex) {
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/
bad_function_call_ctor.pass.cpp 19 std::bad_function_call ex; local
  /external/libcxx/test/std/utilities/optional/optional.bad_optional_access/
default.pass.cpp 29 bad_optional_access ex;
  /external/webrtc/webrtc/base/
gunit.h 22 // Wait until "ex" is true, or "timeout" expires.
23 #define WAIT(ex, timeout) \
24 for (uint32_t start = rtc::Time(); !(ex) && rtc::Time() < start + timeout;) \
30 #define WAIT_(ex, timeout, res) \
33 res = (ex); \
36 res = (ex); \
41 #define EXPECT_TRUE_WAIT(ex, timeout) \
44 WAIT_(ex, timeout, res); \
45 if (!res) EXPECT_TRUE(ex); \
55 #define ASSERT_TRUE_WAIT(ex, timeout)
    [all...]
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
StateChangeListener.java 17 package com.android.ex.camera2.utils;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/
bad_function_call_ctor.pass.cpp 19 std::bad_function_call ex; local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/optional/optional.bad_optional_access/
default.pass.cpp 29 bad_optional_access ex;
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
resource.pass.cpp 24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
32 std::is_same<decltype(a.resource()), ex::memory_resource*>::value
37 ex::memory_resource * mptr = (ex::memory_resource*)42;
48 assert(a.resource() == ex::get_default_resource());
51 ex::memory_resource * mptr = (ex::memory_resource*)42;
52 ex::set_default_resource(mptr);
55 assert(a.resource() == ex::get_default_resource())
    [all...]
select_on_container_copy_construction.pass.cpp 24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
36 ex::memory_resource * mptr = (ex::memory_resource*)42;
40 assert(other.resource() == ex::get_default_resource());
44 ex::memory_resource * mptr = (ex::memory_resource*)42;
45 ex::set_default_resource(mptr);
49 assert(other.resource() == ex::get_default_resource());
  /libcore/luni/src/test/java/libcore/java/time/format/
DateTimeParseExceptionTest.java 31 DateTimeParseException ex = local
33 assertEquals("message", ex.getMessage());
34 assertEquals("parsedData", ex.getParsedString());
35 assertEquals(42, ex.getErrorIndex());
36 assertNull(ex.getCause());
42 DateTimeParseException ex = local
44 assertEquals("message", ex.getMessage());
45 assertEquals("parsedData", ex.getParsedString());
46 assertEquals(42, ex.getErrorIndex());
47 assertSame(cause, ex.getCause())
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
resource.pass.cpp 24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
32 std::is_same<decltype(a.resource()), ex::memory_resource*>::value
37 ex::memory_resource * mptr = (ex::memory_resource*)42;
48 assert(a.resource() == ex::get_default_resource());
51 ex::memory_resource * mptr = (ex::memory_resource*)42;
52 ex::set_default_resource(mptr);
55 assert(a.resource() == ex::get_default_resource())
    [all...]
select_on_container_copy_construction.pass.cpp 24 namespace ex = std::experimental::pmr;
28 typedef ex::polymorphic_allocator<void> A;
36 ex::memory_resource * mptr = (ex::memory_resource*)42;
40 assert(other.resource() == ex::get_default_resource());
44 ex::memory_resource * mptr = (ex::memory_resource*)42;
45 ex::set_default_resource(mptr);
49 assert(other.resource() == ex::get_default_resource());
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
put2.pass.cpp 49 std::string ex(str, iter.base());
50 assert(ex == "Saturday");
54 std::string ex(str, iter.base());
55 assert(ex == "Sat");
59 std::string ex(str, iter.base());
60 assert(ex == "May");
64 std::string ex(str, iter.base());
65 assert(ex == "May");
69 std::string ex(str, iter.base());
70 assert(ex == "20")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
put2.pass.cpp 49 std::string ex(str, iter.base());
50 assert(ex == "Saturday");
54 std::string ex(str, iter.base());
55 assert(ex == "Sat");
59 std::string ex(str, iter.base());
60 assert(ex == "May");
64 std::string ex(str, iter.base());
65 assert(ex == "May");
69 std::string ex(str, iter.base());
70 assert(ex == "20")
    [all...]
  /dalvik/dx/tests/067-dex-switch-and-try/
Blort.java 36 } catch (RuntimeException ex) {
57 } catch (RuntimeException ex) {
73 } catch (RuntimeException ex) {
98 } catch (RuntimeException ex) {
108 } catch (RuntimeException ex) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 41 } catch (InterruptedException ex) {
43 ex);
44 } catch (Exception ex) {
46 "Object.wait() with good arguments", ex);
56 } catch (InterruptedException ex) {
57 throw new RuntimeException("bad Object.wait() interrupted", ex);
58 } catch (IllegalArgumentException ex) {
60 } catch (Exception ex) {
62 "Object.wait() with bad arguments", ex);
74 } catch (InterruptedException ex) {
    [all...]
  /external/libcxx/test/std/experimental/memory/memory.resource.global/
null_memory_resource.pass.cpp 25 namespace ex = std::experimental::pmr;
27 struct assert_on_compare : public ex::memory_resource
36 virtual bool do_is_equal(ex::memory_resource const &) const noexcept
44 decltype(ex::null_memory_resource()), ex::memory_resource*
49 assert(ex::null_memory_resource());
53 assert(ex::null_memory_resource() == ex::null_memory_resource());
61 ex::memory_resource & r1 = *ex::null_memory_resource()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.global/
null_memory_resource.pass.cpp 25 namespace ex = std::experimental::pmr;
27 struct assert_on_compare : public ex::memory_resource
36 virtual bool do_is_equal(ex::memory_resource const &) const noexcept
44 decltype(ex::null_memory_resource()), ex::memory_resource*
49 assert(ex::null_memory_resource());
53 assert(ex::null_memory_resource() == ex::null_memory_resource());
61 ex::memory_resource & r1 = *ex::null_memory_resource()
    [all...]

Completed in 823 milliseconds

12 3 4 5 6 7 8 91011>>