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

1 2 3 4 5 6 7 8

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_empty.pass.cpp 12 // is_empty
19 static_assert( std::is_empty<T>::value, "");
20 static_assert( std::is_empty<const T>::value, "");
21 static_assert( std::is_empty<volatile T>::value, "");
22 static_assert( std::is_empty<const volatile T>::value, "");
28 static_assert(!std::is_empty<T>::value, "");
29 static_assert(!std::is_empty<const T>::value, "");
30 static_assert(!std::is_empty<volatile T>::value, "");
31 static_assert(!std::is_empty<const volatile T>::value, "");
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.is_empty/
is_empty.pass.cpp 14 // bool is_empty(path const& p);
15 // bool is_empty(path const& p, std::error_code& ec) noexcept;
33 ASSERT_NOEXCEPT(is_empty(p, ec));
34 ASSERT_NOT_NOEXCEPT(is_empty(p));
41 TEST_CHECK(is_empty(p, ec) == false);
43 TEST_CHECK_THROW(filesystem_error, is_empty(p));
48 TEST_CHECK(!is_empty(StaticEnv::Dir));
49 TEST_CHECK(!is_empty(StaticEnv::SymlinkToDir));
55 TEST_CHECK(is_empty(env.test_root));
57 TEST_CHECK(!is_empty(env.test_root))
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_empty.pass.cpp 12 // is_empty
28 static_assert( std::is_empty<T>::value, "");
29 static_assert( std::is_empty<const T>::value, "");
30 static_assert( std::is_empty<volatile T>::value, "");
31 static_assert( std::is_empty<const volatile T>::value, "");
43 static_assert(!std::is_empty<T>::value, "");
44 static_assert(!std::is_empty<const T>::value, "");
45 static_assert(!std::is_empty<volatile T>::value, "");
46 static_assert(!std::is_empty<const volatile T>::value, "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_empty.pass.cpp 12 // is_empty
20 static_assert( std::is_empty<T>::value, "");
21 static_assert( std::is_empty<const T>::value, "");
22 static_assert( std::is_empty<volatile T>::value, "");
23 static_assert( std::is_empty<const volatile T>::value, "");
35 static_assert(!std::is_empty<T>::value, "");
36 static_assert(!std::is_empty<const T>::value, "");
37 static_assert(!std::is_empty<volatile T>::value, "");
38 static_assert(!std::is_empty<const volatile T>::value, "");
  /external/mesa3d/src/compiler/glsl/
opt_flatten_nested_if_blocks.cpp 90 if (ir->then_instructions.is_empty() || !ir->else_instructions.is_empty())
95 !inner->else_instructions.is_empty())
opt_conditional_discard.cpp 67 if (ir->then_instructions.is_empty() ||
70 !ir->else_instructions.is_empty())
opt_if_simplification.cpp 75 if (ir->then_instructions.is_empty() &&
76 ir->else_instructions.is_empty()) {
118 if (ir->then_instructions.is_empty()) {
opt_dead_code.cpp 92 if (!entry->assign_list.is_empty()) {
101 while (!entry->assign_list.is_empty()) {
120 if (entry->assign_list.is_empty()) {
opt_redundant_jumps.cpp 92 if (ir->then_instructions.is_empty() && ir->else_instructions.is_empty())
ir_function_detect_recursion.cpp 255 if (f->callers.is_empty() || f->callees.is_empty()) {
256 while (!f->callers.is_empty()) {
261 while (!f->callees.is_empty()) {
  /external/libcxx/test/std/experimental/optional/optional.inplace/
in_place_t.pass.cpp 33 static_assert((std::is_empty<in_place_t>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 38 static_assert((std::is_empty<in_place_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.inplace/
in_place_t.pass.cpp 38 static_assert((std::is_empty<in_place_t>::value), "");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/
5-1.c 28 int is_empty(sigset_t * set) function
76 if (is_empty(&mask) != 1) {
  /external/clang/test/Lexer/
has_feature_type_traits.cpp 68 #if __has_feature(is_empty)
69 int is_empty();
71 // CHECK: int is_empty();
  /external/libcxx/test/std/experimental/optional/optional.nullopt/
nullopt_t.pass.cpp 33 static_assert((std::is_empty<nullopt_t>::value), "");
  /external/libcxx/test/std/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 38 static_assert(( std::is_empty<nullopt_t>::value), "");
  /external/v8/src/parsing/
func-name-inferrer.h 52 bool IsOpen() const { return !entries_stack_.is_empty(); }
70 if (IsOpen() && !funcs_to_infer_.is_empty()) {
80 if (!funcs_to_infer_.is_empty()) {
102 if (entries_stack_.is_empty()) funcs_to_infer_.Clear();
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 37 static_assert((std::is_empty<nullopt_t>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/optional/optional.nullopt/
nullopt_t.pass.cpp 37 static_assert((std::is_empty<nullopt_t>::value), "");
  /external/libmojo/base/android/
jni_weak_ref.h 28 bool is_empty() const { return obj_ == NULL; } function in class:JavaObjectWeakGlobalRef
  /external/mesa3d/src/compiler/glsl/tests/
opt_add_neg_to_sub_test.cpp 81 ASSERT_FALSE(instructions.is_empty());
85 EXPECT_TRUE(instructions.is_empty());
114 ASSERT_FALSE(instructions.is_empty());
118 EXPECT_TRUE(instructions.is_empty());
147 ASSERT_FALSE(instructions.is_empty());
151 EXPECT_TRUE(instructions.is_empty());
180 ASSERT_FALSE(instructions.is_empty());
184 EXPECT_TRUE(instructions.is_empty());
  /external/v8/src/crankshaft/
hydrogen-dce.cc 19 while (!worklist->is_empty()) {
63 DCHECK(worklist.is_empty()); // Should have processed everything.
95 while (!worklist.is_empty()) {
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.cc 32 if (is_empty()) {
  /system/extras/ext4_utils/
ext4_crypt.cpp 81 static bool is_dir_empty(const char *dirname, bool *is_empty)
102 *is_empty = false;
107 *is_empty = true;
252 bool is_empty; local
253 if (!is_dir_empty(directory, &is_empty)) return -1;
254 if (is_empty) {

Completed in 1166 milliseconds

1 2 3 4 5 6 7 8