HomeSort by relevance Sort by last modified time
    Searched defs:Empty (Results 176 - 200 of 385) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/lang/invoke/
DeserializeMethodTest.java 51 static class Empty {}
54 assertDeserializeMethod(Empty.class, false);
  /prebuilts/go/darwin-x86/src/image/
geom.go 129 // of r's dimensions is less than 2*n then an empty rectangle near the center
172 if r.Empty() {
175 if s.Empty() {
193 // Empty reports whether the rectangle contains no points.
194 func (r Rectangle) Empty() bool {
198 // Eq reports whether r and s contain the same set of points. All empty
201 return r == s || r.Empty() && s.Empty()
204 // Overlaps reports whether r and s have a non-empty intersection.
206 return !r.Empty() && !s.Empty() &
    [all...]
  /prebuilts/go/darwin-x86/test/
nilcheck.go 24 type Empty struct {
28 Empty
38 emptyp *Empty
62 emptyp *Empty
  /prebuilts/go/linux-x86/src/image/
geom.go 129 // of r's dimensions is less than 2*n then an empty rectangle near the center
172 if r.Empty() {
175 if s.Empty() {
193 // Empty reports whether the rectangle contains no points.
194 func (r Rectangle) Empty() bool {
198 // Eq reports whether r and s contain the same set of points. All empty
201 return r == s || r.Empty() && s.Empty()
204 // Overlaps reports whether r and s have a non-empty intersection.
206 return !r.Empty() && !s.Empty() &
    [all...]
  /prebuilts/go/linux-x86/test/
nilcheck.go 24 type Empty struct {
28 Empty
38 emptyp *Empty
62 emptyp *Empty
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_destructible.pass.cpp 60 class Empty
98 test_is_nothrow_destructible<Empty>();
  /external/protobuf/src/google/protobuf/
empty.pb.cc 2 // source: google/protobuf/empty.proto
5 #include <google/protobuf/empty.pb.h>
36 "google/protobuf/empty.proto");
44 Empty::default_instance_,
49 sizeof(Empty),
50 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _internal_metadata_),
51 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _is_default_instance_));
65 Empty_descriptor_, &Empty::default_instance());
71 delete Empty::default_instance_;
82 "\n\033google/protobuf/empty.proto\022\017google.pr
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-single-inheritance.cpp 141 struct Empty { };
143 struct I : Empty {
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 31 expectFailure("", "Empty database");
37 expectFailure("[{}]", "Empty entry");
151 if (Commands.empty())
219 EXPECT_TRUE(find("//net/aa/file.cc").empty());
231 EXPECT_TRUE(find("//net/some/path").empty());
255 EXPECT_TRUE(NotFound.CommandLine.empty()) << ErrorMessage;
256 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage;
284 EXPECT_TRUE(NotFound.Directory.empty()) << ErrorMessage;
285 EXPECT_TRUE(NotFound.CommandLine.empty()) << ErrorMessage;
347 EXPECT_TRUE(ErrorMessage.empty()) << ErrorMessage
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
RunQueue.h 27 // (potential consumption of the last element and take up of the last empty
29 // empty, busy (in process of insertion of removal) and ready. Threads claim
30 // elements (empty->busy and ready->busy transitions) by means of a CAS
31 // operation. The finishing transition (busy->empty and busy->ready) are done
68 // If the queue was empty returns default-constructed Work.
103 if (Empty()) return Work();
121 if (Empty()) return 0;
157 // effort to not produce false positives (claim non-empty queue as empty).
176 // Empty tests whether container is empty
    [all...]
  /external/google-breakpad/src/processor/
synth_minidump.h 232 // Add an empty context to the dump.
299 // Return true if this List is empty, false otherwise.
300 bool Empty() { return count_ == 0; }
  /external/gptfdisk/
mbrpart.cc 133 // Empty the partition (zero out all values).
134 void MBRPart::Empty(void) {
146 } // MBRPart::Empty()
258 // empty partition), 0 if the value is outside that range, and -1 if chs is
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_destructible.pass.cpp 53 class Empty {};
106 test_is_destructible<Empty>();
is_trivially_destructible.pass.cpp 65 class Empty
101 test_is_trivially_destructible<Empty>();
  /external/llvm/lib/CodeGen/
RegisterPressure.cpp 58 bool Empty = true;
62 Empty = false;
65 if (Empty)
284 assert(P.LiveInRegs.empty() && "inconsistent max pressure result");
296 assert(P.LiveOutRegs.empty() && "inconsistent max pressure result");
542 for (auto RI = Defs.begin(); RI != Defs.end(); /*empty*/) {
931 if (!LiveThruPressureVec.empty())
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonRegisterInfo.cpp 95 static const MCPhysReg Empty[] = { 0 };
100 return Empty;
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 22 static ConstantRange Empty;
29 ConstantRange ConstantRangeTest::Empty(16, false);
45 EXPECT_FALSE(Empty.isFullSet());
46 EXPECT_TRUE(Empty.isEmptySet());
47 EXPECT_TRUE(Empty.inverse().isFullSet());
48 EXPECT_FALSE(Empty.isWrappedSet());
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0)));
50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9)));
51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa)));
52 EXPECT_FALSE(Empty.contains(APInt(16, 0xaa9)))
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/
ByteString.cs 46 private static readonly ByteString empty = new ByteString(new byte[0]); field in class:Google.Protobuf.ByteString
92 /// Returns an empty ByteString.
94 public static ByteString Empty
96 get { return empty; }
108 /// Returns <c>true</c> if this byte string is empty, <c>false</c> otherwise.
139 // By handling the empty string explicitly, we not only optimize but we fix a
141 return bytes == "" ? Empty : new ByteString(Convert.FromBase64String(bytes));
  /external/skia/src/gpu/
GrProcessorSet.h 22 // Arbitrary constructor arg for empty set and analysis
23 enum class Empty { kEmpty };
87 constexpr Analysis(Empty)
139 static constexpr const Analysis EmptySetAnalysis() { return Analysis(Empty::kEmpty); }
144 GrProcessorSet(Empty) : fXP((const GrXferProcessor*)nullptr), fFlags(kFinalized_Flag) {}
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FormatVariadic.h 45 enum class ReplacementType { Empty, Format, Literal };
56 ReplacementType Type = ReplacementType::Empty;
99 if (R.Type == ReplacementType::Empty)
  /external/v8/src/compiler/
memory-optimizer.h 67 static AllocationState const* Empty(Zone* zone) {
redundancy-elimination.cc 68 RedundancyElimination::EffectPathChecks::Empty(Zone* zone) {
251 return UpdateChecks(node, EffectPathChecks::Empty(zone()));
  /external/webrtc/webrtc/modules/audio_coding/neteq/
decoder_database.cc 31 bool DecoderDatabase::Empty() const { return decoders_.empty(); }
packet_buffer.cc 53 bool PacketBuffer::Empty() const {
54 return buffer_.empty();
112 while (!packet_list->empty()) {
148 if (Empty()) {
160 if (Empty()) {
178 if (Empty()) {
185 if (Empty()) {
186 // Buffer is empty.
199 while (!Empty() &&
216 if (Empty()) {
    [all...]
  /frameworks/base/libs/hwui/
Outline.h 31 Empty = 1,
80 mType = Type::Empty;
92 return mType == Type::Empty;
127 if (mType == Type::None || mType == Type::Empty) return nullptr;

Completed in 2906 milliseconds

1 2 3 4 5 6 78 91011>>