HomeSort by relevance Sort by last modified time
    Searched defs:empty (Results 351 - 375 of 3009) sorted by null

<<11121314151617181920>>

  /external/webrtc/talk/app/webrtc/
sctputils_unittest.cc 176 rtc::ByteBuffer empty; local
177 EXPECT_FALSE(webrtc::IsOpenMessage(empty));
  /external/webrtc/webrtc/base/
array_view.h 74 // Construct an empty ArrayView.
103 bool empty() const { return size_ == 0; } function in class:rtc::final
callback.h 26 // object. Default-constructed callbacks are "empty," and executing an empty
27 // callback does nothing. A callback can be made empty by assigning it from
50 // cout << my_callback.empty() << endl; // true
53 // cout << my_callback.empty() << endl; // false
60 // cout << my_callback.empty() << endl; // true
78 if (empty())
82 bool empty() const { return !helper_; } function in class:rtc::Callback0
108 if (empty())
112 bool empty() const { return !helper_; function in class:rtc::Callback1
143 bool empty() const { return !helper_; } function in class:rtc::Callback2
175 bool empty() const { return !helper_; } function in class:rtc::Callback3
208 bool empty() const { return !helper_; } function in class:rtc::Callback4
242 bool empty() const { return !helper_; } function in class:rtc::Callback5
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
compound_packet_unittest.cc 50 CompoundPacket empty; local
53 empty.Append(&rr);
55 rtc::scoped_ptr<RawPacket> packet(empty.Build());
  /external/webrtc/webrtc/video/
report_block_stats_unittest.cc 83 std::vector<RTCPReportBlock> empty; local
84 RTCPReportBlock aggregated = stats.AggregateAndStore(empty);
  /frameworks/base/lowpan/tests/
Android.mk 39 empty:= macro
40 space:= $(empty) $(empty)
  /frameworks/base/wifi/tests/
Android.mk 39 empty:= macro
40 space:= $(empty) $(empty)
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 93 bool empty() const { return m_Table.empty(); } function in class:mcld::NamePool
  /frameworks/compile/mclinker/include/mcld/Support/
TargetRegistry.h 43 static bool empty() { return s_TargetList.empty(); } function in class:mcld::TargetRegistry
99 /// and a triple. If the architecture name is not empty, then the
  /frameworks/compile/mclinker/include/mcld/Target/
GOT.h 67 bool empty() const { return m_SectionData->empty(); } function in class:mcld::GOT
  /frameworks/opt/net/wifi/tests/wifitests/
Android.mk 40 empty:= macro
41 space:= $(empty) $(empty)
  /libcore/ojluni/src/main/java/java/util/
OptionalDouble.java 47 * Common instance for {@code empty()}.
49 private static final OptionalDouble EMPTY = new OptionalDouble();
58 * Construct an empty instance.
60 * @implNote generally only one empty instance, {@link OptionalDouble#EMPTY},
69 * Returns an empty {@code OptionalDouble} instance. No value is present for this
73 * is empty by comparing with {@code ==} against instances returned by
74 * {@code Option.empty()}. There is no guarantee that it is a singleton.
77 * @return an empty {@code OptionalDouble}.
79 public static OptionalDouble empty() { method in class:OptionalDouble
    [all...]
OptionalInt.java 47 * Common instance for {@code empty()}.
49 private static final OptionalInt EMPTY = new OptionalInt();
58 * Construct an empty instance.
60 * @implNote Generally only one empty instance, {@link OptionalInt#EMPTY},
69 * Returns an empty {@code OptionalInt} instance. No value is present for this
73 * is empty by comparing with {@code ==} against instances returned by
74 * {@code Option.empty()}. There is no guarantee that it is a singleton.
77 * @return an empty {@code OptionalInt}
79 public static OptionalInt empty() { method in class:OptionalInt
    [all...]
OptionalLong.java 47 * Common instance for {@code empty()}.
49 private static final OptionalLong EMPTY = new OptionalLong();
58 * Construct an empty instance.
60 * @implNote generally only one empty instance, {@link OptionalLong#EMPTY},
69 * Returns an empty {@code OptionalLong} instance. No value is present for this
73 * is empty by comparing with {@code ==} against instances returned by
74 * {@code Option.empty()}. There is no guarantee that it is a singleton.
77 * @return an empty {@code OptionalLong}.
79 public static OptionalLong empty() { method in class:OptionalLong
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
CollectionUtilsTests.java 70 final ArrayList<String> empty = new ArrayList<>(); local
71 assertEquals(empty, CollectionUtils.arrayAsList(new String[] {}, 0, 0));
73 assertEquals(empty, CollectionUtils.arrayAsList(array, 0, 0));
74 assertEquals(empty, CollectionUtils.arrayAsList(array, 1, 1));
75 assertEquals(empty, CollectionUtils.arrayAsList(array, array.length, array.length));
89 assertFalse(CollectionUtils.isNullOrEmpty(Collections.singletonList("Not empty")));
90 assertFalse(CollectionUtils.isNullOrEmpty(Collections.singletonMap("Not", "empty")));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 90 bool empty() const { return begin() == end(); } function in class:clang::PostOrderCFGView
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
UniqueVector.h 93 /// empty - Returns true if the vector is empty.
95 bool empty() const { return Vector.empty(); } function in class:llvm::UniqueVector
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
TypeFinder.h 56 bool empty() const { return StructTypes.empty(); } function in class:llvm::TypeFinder
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamReader.h 210 bool empty() const { return bytesRemaining() == 0; } function in class:llvm::BinaryStreamReader
223 /// stream's offset. If the stream is empty the behavior is undefined.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Analyses/
PostOrderCFGView.h 90 bool empty() const { return begin() == end(); } function in class:clang::PostOrderCFGView
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
SparseSet.h 156 // It's not hard to resize the universe on a non-empty set, but it doesn't
158 assert(empty() && "Can only resize universe on an empty map");
179 /// empty - Returns true if the set is empty.
181 /// This is not the same as BitVector::empty().
183 bool empty() const { return Dense.empty(); } function in class:llvm::SparseSet
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
StringPool.h 69 /// empty - Checks whether the pool is empty. Returns true if so.
71 inline bool empty() const { return InternTable.empty(); } function in class:llvm::StringPool
117 assert(*this && "Attempt to dereference empty PooledStringPtr!");
122 assert(*this && "Attempt to dereference empty PooledStringPtr!");
127 assert(*this && "Attempt to dereference empty PooledStringPtr!");
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Analyses/
PostOrderCFGView.h 90 bool empty() const { return begin() == end(); } function in class:clang::PostOrderCFGView
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
SparseSet.h 156 // It's not hard to resize the universe on a non-empty set, but it doesn't
158 assert(empty() && "Can only resize universe on an empty map");
179 /// empty - Returns true if the set is empty.
181 /// This is not the same as BitVector::empty().
183 bool empty() const { return Dense.empty(); } function in class:llvm::SparseSet
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
StringPool.h 69 /// empty - Checks whether the pool is empty. Returns true if so.
71 inline bool empty() const { return InternTable.empty(); } function in class:llvm::StringPool
117 assert(*this && "Attempt to dereference empty PooledStringPtr!");
122 assert(*this && "Attempt to dereference empty PooledStringPtr!");
127 assert(*this && "Attempt to dereference empty PooledStringPtr!");

Completed in 483 milliseconds

<<11121314151617181920>>