HomeSort by relevance Sort by last modified time
    Searched refs:empty (Results 176 - 200 of 8383) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
info_fn_imps.hpp 44 empty() const function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.size/
size.pass.cpp 29 assert(!c.empty());
37 assert(c.empty());
46 static_assert(!c.empty(), "");
54 static_assert(c.empty(), "");
  /system/bt/service/
settings.cc 41 if (path.empty() || path.EndsWithSeparator()) {
51 if (suffix.empty()) {
67 if (!android_ipc_socket_suffix_.empty() && !create_ipc_socket_path_.empty()) {
settings.h 59 return !android_ipc_socket_suffix().empty() ||
60 !create_ipc_socket_path().empty();
  /system/chre/core/include/chre/core/
event_ref_queue.h 37 bool empty() const;
50 * reaches 0 as a result of this function call. The queue must be non-empty as
  /libcore/luni/src/test/java/libcore/java/util/
OptionalDoubleTest.java 33 assertSame(OptionalDouble.empty(), OptionalDouble.empty());
40 OptionalDouble.empty().getAsDouble();
48 assertFalse(OptionalDouble.empty().isPresent());
53 OptionalDouble.empty().ifPresent(alwaysFails);
62 assertEquals(57.0, OptionalDouble.empty().orElse(57.0));
71 assertEquals(57.0, OptionalDouble.empty().orElseGet(supplies57));
81 OptionalDouble.empty().orElseThrow(barSupplier);
89 assertEquals(OptionalDouble.empty(), OptionalDouble.empty());
    [all...]
  /bionic/linker/
linker_dlwarning.cpp 38 if (!current_msg.empty()) {
52 if (current_msg.empty()) {
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
clear.pass.cpp 36 assert(p.empty());
43 assert(p2.empty());
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 42 bool empty() { return m_pRelocData->empty(); } function in class:mcld::OutputRelocSection
  /system/tools/aidl/
io_delegate_unittest.cpp 31 EXPECT_TRUE(absolute_path.empty());
37 ASSERT_FALSE(absolute_path.empty());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
attr-arch-opts-none-2.d 4 #source: empty.s
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
dynsym1.d 1 #source: empty.s
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
empty-address-1.d 1 #ld: -T empty-address-1.t
  /build/kati/testcase/
call.mk 2 empty := macro
3 space := $(empty) $(empty)
  /external/llvm/unittests/Support/
TargetParserTest.cpp 34 EXPECT_TRUE(AK == ARM::AK_LAST ? ARM::getArchName(AK).empty()
35 : !ARM::getArchName(AK).empty());
43 ? ARM::getCPUAttr(AK).empty()
44 : !ARM::getCPUAttr(AK).empty());
53 ? ARM::getSubArch(AK).empty()
54 : !ARM::getSubArch(AK).empty());
61 EXPECT_TRUE(FK == ARM::FK_LAST ? ARM::getFPUName(FK).empty()
62 : !ARM::getFPUName(FK).empty());
70 ? !AArch64::getArchName(AK).empty()
71 : AArch64::getArchName(AK).empty());
    [all...]
  /system/update_engine/payload_generator/
payload_generation_config.cc 32 return !run && path.empty() && filesystem_type.empty() && !optional;
36 TEST_AND_RETURN_FALSE(!path.empty());
46 if (path.empty())
59 if (!mapfile_path.empty()) {
76 return partitions.empty();
81 if (part.path.empty())
111 return image_info.board().empty()
112 && image_info.key().empty()
113 && image_info.channel().empty()
    [all...]
generate_delta_main.cc 82 bool empty = channel.empty(); local
84 CHECK_EQ(channel.empty(), empty);
85 CHECK_EQ(board.empty(), empty);
86 CHECK_EQ(version.empty(), empty);
87 CHECK_EQ(key.empty(), empty);
    [all...]
  /device/google/marlin/common/
utils.mk 2 empty := macro
3 space := $(empty) $(empty)
4 colon := $(empty):$(empty)
5 underscore := $(empty)_$(empty)
10 # if (w1-w2 not empty or w2-w1 not empty) then not_match else match
12 # returns true or empty
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 25 // and an object with all zero fields should represent a valid empty list.
37 bool empty() const { return size_ == 0; } function in struct:__sanitizer::IntrusiveList
41 if (empty()) {
54 if (empty()) {
66 CHECK(!empty());
80 if (l->empty())
82 if (empty()) {
84 } else if (!l->empty()) {
94 if (l->empty())
96 if (empty()) {
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
path.decompose.pass.cpp 29 // bool empty() const noexcept;
127 assert(p.has_root_path() != TC.root_path.empty());
130 assert(p.has_root_name() != TC.root_name.empty());
133 assert(p.has_root_directory() != TC.root_directory.empty());
136 assert(p.has_relative_path() != TC.relative_path.empty());
139 assert(p.has_parent_path() != TC.parent_path.empty());
142 assert(p.has_filename() != TC.filename.empty());
184 assert(p.has_filename() != TC.filename.empty());
187 assert(p.has_stem() != TC.stem.empty());
190 assert(p.has_extension() != TC.extension.empty());
    [all...]
  /external/llvm/tools/bugpoint/
FindBugs.cpp 42 if (ReferenceOutputFile.empty()) {
81 if (!Error.empty()) {
94 if (Error.empty() && Diff) {
97 if (Error.empty())
100 if (!Error.empty()) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBean.java 30 private List<File> empty = new ArrayList<File>(0); field in class:SkipBean
76 return empty;
79 public void setEmpty(List<File> empty) {
80 this.empty = empty;
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
FindBugs.cpp 41 if (ReferenceOutputFile.empty()) {
80 if (!Error.empty()) {
93 if (Error.empty() && Diff) {
96 if (Error.empty())
99 if (!Error.empty()) {
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_default.pass.cpp 29 assert(c.empty());
35 assert(c1.empty());
47 assert(c.empty());
63 assert(v.empty());
75 assert(v.empty());
  /external/google-breakpad/src/client/linux/handler/
minidump_descriptor.cc 51 assert(descriptor.path_.empty());
56 assert(descriptor.path_.empty());
72 assert(mode_ == kWriteMinidumpToFile && !directory_.empty());

Completed in 4272 milliseconds

1 2 3 4 5 6 78 91011>>