HomeSort by relevance Sort by last modified time
    Searched refs:is_transparent (Results 1 - 13 of 13) sorted by null

  /external/libcxx/test/utilities/function.objects/arithmetic.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::plus<int>>::value, "" );
29 static_assert ( !is_transparent<std::plus<std::string>>::value, "" );
30 static_assert ( is_transparent<std::plus<void>>::value, "" );
31 static_assert ( is_transparent<std::plus<>>::value, "" );
33 static_assert ( !is_transparent<std::minus<int>>::value, "" );
34 static_assert ( !is_transparent<std::minus<std::string>>::value, "" );
35 static_assert ( is_transparent<std::minus<void>>::value, "" );
36 static_assert ( is_transparent<std::minus<>>::value, "" )
    [all...]
  /external/libcxx/test/utilities/function.objects/comparisons/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::less<int>>::value, "" );
29 static_assert ( !is_transparent<std::less<std::string>>::value, "" );
30 static_assert ( is_transparent<std::less<void>>::value, "" );
31 static_assert ( is_transparent<std::less<>>::value, "" );
33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" );
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" );
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" );
36 static_assert ( is_transparent<std::less_equal<>>::value, "" )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::plus<int>>::value, "" );
29 static_assert ( !is_transparent<std::plus<std::string>>::value, "" );
30 static_assert ( is_transparent<std::plus<void>>::value, "" );
31 static_assert ( is_transparent<std::plus<>>::value, "" );
33 static_assert ( !is_transparent<std::minus<int>>::value, "" );
34 static_assert ( !is_transparent<std::minus<std::string>>::value, "" );
35 static_assert ( is_transparent<std::minus<void>>::value, "" );
36 static_assert ( is_transparent<std::minus<>>::value, "" )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/comparisons/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::less<int>>::value, "" );
29 static_assert ( !is_transparent<std::less<std::string>>::value, "" );
30 static_assert ( is_transparent<std::less<void>>::value, "" );
31 static_assert ( is_transparent<std::less<>>::value, "" );
33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" );
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" );
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" );
36 static_assert ( is_transparent<std::less_equal<>>::value, "" )
    [all...]
  /external/libcxx/test/utilities/function.objects/bitwise.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::bit_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::bit_and<void>>::value, "" );
31 static_assert ( is_transparent<std::bit_and<>>::value, "" );
33 static_assert ( !is_transparent<std::bit_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::bit_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::bit_or<void>>::value, "" );
36 static_assert ( is_transparent<std::bit_or<>>::value, "" )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bitwise.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::bit_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::bit_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::bit_and<void>>::value, "" );
31 static_assert ( is_transparent<std::bit_and<>>::value, "" );
33 static_assert ( !is_transparent<std::bit_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::bit_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::bit_or<void>>::value, "" );
36 static_assert ( is_transparent<std::bit_or<>>::value, "" )
    [all...]
  /external/libcxx/test/utilities/function.objects/logical.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::logical_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::logical_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::logical_and<void>>::value, "" );
31 static_assert ( is_transparent<std::logical_and<>>::value, "" );
33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::logical_or<void>>::value, "" );
36 static_assert ( is_transparent<std::logical_or<>>::value, "" )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/logical.operations/
transparent.pass.cpp 14 struct is_transparent struct
19 template <class _Up> static char __test(typename _Up::is_transparent* = 0);
28 static_assert ( !is_transparent<std::logical_and<int>>::value, "" );
29 static_assert ( !is_transparent<std::logical_and<std::string>>::value, "" );
30 static_assert ( is_transparent<std::logical_and<void>>::value, "" );
31 static_assert ( is_transparent<std::logical_and<>>::value, "" );
33 static_assert ( !is_transparent<std::logical_or<int>>::value, "" );
34 static_assert ( !is_transparent<std::logical_or<std::string>>::value, "" );
35 static_assert ( is_transparent<std::logical_or<void>>::value, "" );
36 static_assert ( is_transparent<std::logical_or<>>::value, "" )
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_function.h 230 typedef __is_transparent is_transparent; typedef in struct:plus
244 typedef __is_transparent is_transparent; typedef in struct:minus
258 typedef __is_transparent is_transparent; typedef in struct:multiplies
272 typedef __is_transparent is_transparent; typedef in struct:divides
286 typedef __is_transparent is_transparent; typedef in struct:modulus
300 typedef __is_transparent is_transparent; typedef in struct:negate
400 typedef __is_transparent is_transparent; typedef in struct:equal_to
414 typedef __is_transparent is_transparent;
428 typedef __is_transparent is_transparent; typedef in struct:greater
442 typedef __is_transparent is_transparent; typedef in struct:less
534 typedef __is_transparent is_transparent; typedef in struct:logical_and
548 typedef __is_transparent is_transparent; typedef in struct:logical_or
562 typedef __is_transparent is_transparent; typedef in struct:logical_not
626 typedef __is_transparent is_transparent; typedef in struct:bit_and
639 typedef __is_transparent is_transparent; typedef in struct:bit_or
652 typedef __is_transparent is_transparent; typedef in struct:bit_xor
665 typedef __is_transparent is_transparent; typedef in struct:bit_not
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
coverage_html.js 175 coverage.is_transparent = function (color) {
191 if (!c.is_transparent(color)) {
221 while (probe > 0 && c.is_transparent(color)) {
311 if (!c.is_transparent(the_color)) {
  /external/chromium_org/cc/output/
renderer_pixeltest.cc 391 bool is_transparent,
425 shared_state, video_frame, is_transparent, tex_coord_rect, render_pass);
430 bool is_transparent,
458 shared_state, video_frame, is_transparent, tex_coord_rect, render_pass);
464 bool is_transparent,
477 is_transparent ? 0 : 128,
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 4258 int is_transparent; \/* Transparency information was present. *\/ member in struct:standard_display
    [all...]
  /external/pixman/pixman/
pixman-sse2.c 188 is_transparent (__m128i x) function
547 if (is_transparent (xmm_msk_lo))
    [all...]

Completed in 186 milliseconds