Home
last modified time | relevance | path

Searched full:empty (Results 1 – 25 of 22691) sorted by relevance

12345678910>>...908

/external/llvm/test/DebugInfo/PDB/
Dpdbdump-headers.test5 ; RUN: -tpi-hash -fpo %p/Inputs/empty.pdb | FileCheck -check-prefix=EMPTY %s
6 ; RUN: llvm-pdbdump raw -all %p/Inputs/empty.pdb | FileCheck -check-prefix=ALL %s
11 ; EMPTY: FileHeaders {
12 ; EMPTY-NEXT: BlockSize: 4096
13 ; EMPTY-NEXT: Unknown0: 2
14 ; EMPTY-NEXT: NumBlocks: 25
15 ; EMPTY-NEXT: NumDirectoryBytes: 136
16 ; EMPTY-NEXT: Unknown1: 0
17 ; EMPTY-NEXT: BlockMapAddr: 24
18 ; EMPTY-NEXT: NumDirectoryBlocks: 1
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/
DConfigManager.cpp17 if (!Common.SplitDWO.empty() || !Common.SymbolsPrefix.empty() || in getCOFFConfig()
18 !Common.AllocSectionsPrefix.empty() || !Common.DumpSection.empty() || in getCOFFConfig()
19 !Common.KeepSection.empty() || !Common.SymbolsToGlobalize.empty() || in getCOFFConfig()
20 !Common.SymbolsToKeep.empty() || !Common.SymbolsToLocalize.empty() || in getCOFFConfig()
21 !Common.SymbolsToWeaken.empty() || !Common.SymbolsToKeepGlobal.empty() || in getCOFFConfig()
22 !Common.SectionsToRename.empty() || !Common.SetSectionAlignment.empty() || in getCOFFConfig()
23 !Common.SetSectionType.empty() || Common.ExtractDWO || in getCOFFConfig()
26 Common.DiscardMode == DiscardType::Locals || !Common.SymbolsToAdd.empty()) in getCOFFConfig()
34 if (!Common.SplitDWO.empty() || !Common.SymbolsPrefix.empty() || in getMachOConfig()
35 !Common.AllocSectionsPrefix.empty() || !Common.KeepSection.empty() || in getMachOConfig()
[all …]
/external/brotli/csharp/org/brotli/dec/
DTransform.cs34 …i.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, string.Empty), new Org.Br…
35 …, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.OmitFirst1, st…
36 …(string.Empty, Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform…
37Empty), new Org.Brotli.Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Or…
38Empty), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " an…
39Empty, Org.Brotli.Dec.WordTransformType.OmitLast1, string.Empty), new Org.Brotli.Dec.Transform(", …
40 …otli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " in "), new Org.Brotl…
41 …rotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, "\""), new Org.Brotli…
42 …rotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, "\">"), new Org.Brotl…
43Empty, Org.Brotli.Dec.WordTransformType.OmitLast3, string.Empty), new Org.Brotli.Dec.Transform(str…
[all …]
/external/sdk-platform-java/gapic-generator-java/src/test/java/com/google/api/generator/gapic/composer/grpc/goldens/
DGrpcRoutingHeadersStub.golden15 import com.google.protobuf.Empty;
32 private static final MethodDescriptor<Request, Empty> example1TestMethodDescriptor =
33 MethodDescriptor.<Request, Empty>newBuilder()
38 .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
41 private static final MethodDescriptor<Request, Empty> example2TestMethodDescriptor =
42 MethodDescriptor.<Request, Empty>newBuilder()
47 .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
50 private static final MethodDescriptor<Request, Empty> example3TestMethodDescriptor =
51 MethodDescriptor.<Request, Empty>newBuilder()
56 .setResponseMarshaller(ProtoUtils.marshaller(Empty.getDefaultInstance()))
[all …]
/external/cronet/third_party/libc++/src/test/std/algorithms/algorithms.results/
Dno_unique_address.compile.pass.cpp23 struct Empty {}; struct
26 static_assert(sizeof(std::ranges::in_fun_result<Empty, int>) == sizeof(int));
27 static_assert(sizeof(std::ranges::in_fun_result<int, Empty>) == sizeof(int));
28 static_assert(sizeof(std::ranges::in_fun_result<Empty, Empty>) == 2);
30 static_assert(sizeof(std::ranges::in_in_result<Empty, int>) == sizeof(int));
31 static_assert(sizeof(std::ranges::in_in_result<int, Empty>) == sizeof(int));
32 static_assert(sizeof(std::ranges::in_in_result<Empty, Empty>) == 2);
34 static_assert(sizeof(std::ranges::in_out_result<Empty, int>) == sizeof(int));
35 static_assert(sizeof(std::ranges::in_out_result<int, Empty>) == sizeof(int));
36 static_assert(sizeof(std::ranges::in_out_result<Empty, Empty2>) == sizeof(char));
[all …]
/external/llvm/unittests/IR/
DConstantRangeTest.cpp22 static ConstantRange Empty; member in __anon46248a030111::ConstantRangeTest
29 ConstantRange ConstantRangeTest::Empty(16, false); member in __anon46248a030111::ConstantRangeTest
45 EXPECT_FALSE(Empty.isFullSet()); in TEST_F()
46 EXPECT_TRUE(Empty.isEmptySet()); in TEST_F()
47 EXPECT_TRUE(Empty.inverse().isFullSet()); in TEST_F()
48 EXPECT_FALSE(Empty.isWrappedSet()); in TEST_F()
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0))); in TEST_F()
50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9))); in TEST_F()
51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa))); in TEST_F()
52 EXPECT_FALSE(Empty.contains(APInt(16, 0xaa9))); in TEST_F()
[all …]
/external/clang/test/SemaCXX/
Dempty-class-layout.cpp24 struct Empty { Empty(); }; struct
26 struct I : Empty {
27 Empty e;
31 struct J : Empty {
32 Empty e[2];
36 template<int N> struct Derived : Empty, Derived<N - 1> {
38 template<> struct Derived<0> : Empty { };
41 Empty e;
46 Empty e[2];
51 Empty e;
[all …]
/external/jackson-annotations/src/test/java/com/fasterxml/jackson/annotation/
DJsonIgnorePropertiesTest.java15 private final JsonIgnoreProperties.Value EMPTY = JsonIgnoreProperties.Value.empty(); field in JsonIgnorePropertiesTest
18 // ok to try to create from null; gives empty in testEmpty()
19 assertSame(EMPTY, JsonIgnoreProperties.Value.from(null)); in testEmpty()
21 assertEquals(0, EMPTY.getIgnored().size()); in testEmpty()
22 assertFalse(EMPTY.getAllowGetters()); in testEmpty()
23 assertFalse(EMPTY.getAllowSetters()); in testEmpty()
27 assertEquals(EMPTY, EMPTY); in testEquality()
29 // empty has "merge" set to 'true' so: in testEquality()
30 assertSame(EMPTY, EMPTY.withMerge()); in testEquality()
32 JsonIgnoreProperties.Value v = EMPTY.withoutMerge(); in testEquality()
[all …]
DFormatTest.java12 private final JsonFormat.Value EMPTY = JsonFormat.Value.empty(); field in FormatTest
18 JsonFormat.Value empty = JsonFormat.Value.empty(); in testEmptyInstanceDefaults() local
20 assertNull(empty.getFeature(f)); in testEmptyInstanceDefaults()
22 assertFalse(empty.hasLocale()); in testEmptyInstanceDefaults()
23 assertFalse(empty.hasPattern()); in testEmptyInstanceDefaults()
24 assertFalse(empty.hasShape()); in testEmptyInstanceDefaults()
25 assertFalse(empty.hasTimeZone()); in testEmptyInstanceDefaults()
26 assertFalse(empty.hasLenient()); in testEmptyInstanceDefaults()
28 assertFalse(empty.isLenient()); in testEmptyInstanceDefaults()
32 assertTrue(EMPTY.equals(EMPTY)); in testEquality()
[all …]
/external/sdv/vsomeip/third_party/boost/function/test/
Dfunction_test.cpp60 BOOST_CHECK(v1.empty()); in test_zero_args()
62 // Assignment to an empty function in test_zero_args()
75 // Assignment to an empty function in test_zero_args()
77 BOOST_CHECK(!v1.empty()); in test_zero_args()
85 // Assignment to a non-empty function in test_zero_args()
98 // Assignment to an empty function from a free function in test_zero_args()
107 // Assignment to a non-empty function from a free function in test_zero_args()
109 BOOST_CHECK(!v1.empty()); in test_zero_args()
118 BOOST_CHECK(!v1.empty()); in test_zero_args()
125 // Assignment to a non-empty function from a free function in test_zero_args()
[all …]
Dfunction_n_test.cpp61 BOOST_CHECK(v1.empty()); in test_zero_args()
63 // Assignment to an empty function in test_zero_args()
65 BOOST_CHECK(!v1.empty()); in test_zero_args()
76 // Assignment to an empty function in test_zero_args()
78 BOOST_CHECK(!v1.empty()); in test_zero_args()
86 // Assignment to a non-empty function in test_zero_args()
97 BOOST_CHECK(v1.empty()); in test_zero_args()
99 // Assignment to an empty function from a free function in test_zero_args()
101 BOOST_CHECK(!v1.empty()); in test_zero_args()
108 // Assignment to a non-empty function from a free function in test_zero_args()
[all …]
/external/libcxx/test/std/containers/views/span.obs/
Dempty.pass.cpp14 // constexpr bool empty() const noexcept;
30 static_assert( noexcept(std::span<int> ().empty()), ""); in main()
31 static_assert( noexcept(std::span<int, 0>().empty()), ""); in main()
34 static_assert( std::span<int>().empty(), ""); in main()
35 static_assert( std::span<long>().empty(), ""); in main()
36 static_assert( std::span<double>().empty(), ""); in main()
37 static_assert( std::span<A>().empty(), ""); in main()
38 static_assert( std::span<std::string>().empty(), ""); in main()
40 static_assert( std::span<int, 0>().empty(), ""); in main()
41 static_assert( std::span<long, 0>().empty(), ""); in main()
[all …]
/external/cronet/third_party/libc++/src/test/std/containers/views/views.span/span.obs/
Dempty.pass.cpp12 // [[nodiscard]] constexpr bool empty() const noexcept;
28 static_assert( noexcept(std::span<int> ().empty()), ""); in main()
29 static_assert( noexcept(std::span<int, 0>().empty()), ""); in main()
32 static_assert( std::span<int>().empty(), ""); in main()
33 static_assert( std::span<long>().empty(), ""); in main()
34 static_assert( std::span<double>().empty(), ""); in main()
35 static_assert( std::span<A>().empty(), ""); in main()
36 static_assert( std::span<std::string>().empty(), ""); in main()
38 static_assert( std::span<int, 0>().empty(), ""); in main()
39 static_assert( std::span<long, 0>().empty(), ""); in main()
[all …]
/external/cronet/third_party/libc++/src/test/std/ranges/range.factories/range.repeat.view/
Dctor.value.bound.pass.cpp21 struct Empty {}; struct
24 static_assert(std::is_constructible_v<std::ranges::repeat_view<Empty>, const Empty&>);
25 static_assert(std::is_constructible_v<std::ranges::repeat_view<Empty>, Empty&&>);
26 static_assert(std::is_constructible_v<std::ranges::repeat_view<Empty, int>, const Empty&>);
27 static_assert(std::is_constructible_v<std::ranges::repeat_view<Empty, int>, Empty&&>);
29 static_assert(!std::is_convertible_v<const Empty&, std::ranges::repeat_view<Empty>>);
30 static_assert(!std::is_convertible_v<Empty&&, std::ranges::repeat_view<Empty>>);
31 static_assert(!std::is_convertible_v<const Empty&, std::ranges::repeat_view<Empty, int>>);
32 static_assert(!std::is_convertible_v<Empty&&, std::ranges::repeat_view<Empty, int>>);
40 std::ranges::repeat_view<Empty> rv(Empty{}); in test()
[all …]
/external/clang/test/Layout/
Dms-x86-empty-virtual-base.cpp34 // CHECK-NEXT: 8 | struct B0 (virtual base) (empty)
42 // CHECK-X64-NEXT: 16 | struct B0 (virtual base) (empty)
55 // CHECK-NEXT: 8 | struct B0 b0 (empty)
57 // CHECK-NEXT: 24 | struct B0 (virtual base) (empty)
63 // CHECK-X64-NEXT: 8 | struct B0 b0 (empty)
65 // CHECK-X64-NEXT: 24 | struct B0 (virtual base) (empty)
82 // CHECK-NEXT: 8 | struct B0 (virtual base) (empty)
83 // CHECK-NEXT: 16 | struct B1 (virtual base) (empty)
84 // CHECK-NEXT: 24 | struct B2 (virtual base) (empty)
85 // CHECK-NEXT: 32 | struct B3 (virtual base) (empty)
[all …]
Dms-x86-lazy-empty-nonvirtual-base.cpp41 // CHECK-NEXT: 13 | struct B1 (base) (empty)
44 // CHECK-NEXT: 20 | struct B0 (virtual base) (empty)
54 // CHECK-X64-NEXT: 17 | struct B1 (base) (empty)
57 // CHECK-X64-NEXT: 24 | struct B0 (virtual base) (empty)
70 // CHECK-NEXT: 13 | struct B1 (base) (empty)
73 // CHECK-NEXT: 16 | struct B0 (virtual base) (empty)
80 // CHECK-X64-NEXT: 17 | struct B1 (base) (empty)
83 // CHECK-X64-NEXT: 24 | struct B0 (virtual base) (empty)
96 // CHECK-NEXT: 12 | struct B1 (base) (empty)
99 // CHECK-NEXT: 16 | struct B0 (virtual base) (empty)
[all …]
/external/llvm/test/CodeGen/PowerPC/
Demptystruct.ll3 ; This tests correct handling of empty aggregate parameters and return values.
4 ; An empty parameter passed by value does not consume a protocol register or
5 ; a parameter save area doubleword. An empty parameter passed by reference
6 ; is treated as any other pointer parameter. An empty aggregate return value
15 %struct.empty = type {}
17 define void @callee(%struct.empty* noalias sret %agg.result, %struct.empty* byval %a1, %struct.empt…
19 %a2.addr = alloca %struct.empty*, align 8
20 store %struct.empty* %a2, %struct.empty** %a2.addr, align 8
21 %0 = load %struct.empty*, %struct.empty** %a2.addr, align 8
22 %1 = bitcast %struct.empty* %agg.result to i8*
[all …]
/external/mockito/src/main/java/org/mockito/internal/util/
DJavaEightUtil.java28 * Creates an empty Optional using reflection to stay backwards-compatible with older JDKs.
30 * @return an empty Optional.
38 return emptyOptional = invokeNullaryFactoryMethod("java.util.Optional", "empty"); in emptyOptional()
43 … * Creates an empty OptionalDouble using reflection to stay backwards-compatible with older JDKs.
45 * @return an empty OptionalDouble.
53 … return emptyOptionalDouble = invokeNullaryFactoryMethod("java.util.OptionalDouble", "empty"); in emptyOptionalDouble()
57 * Creates an empty OptionalInt using reflection to stay backwards-compatible with older JDKs.
59 * @return an empty OptionalInt.
67 return emptyOptionalInt = invokeNullaryFactoryMethod("java.util.OptionalInt", "empty"); in emptyOptionalInt()
71 * Creates an empty OptionalLong using reflection to stay backwards-compatible with older JDKs.
[all …]
/external/sdv/vsomeip/third_party/boost/thread/test/sync/mutual_exclusion/sync_bounded_queue/
Dsingle_thread_pass.cpp45 BOOST_TEST(q.empty()); in main()
53 // empty queue try_pull fails in main()
57 BOOST_TEST(q.empty()); in main()
63 // empty queue try_pull fails in main()
66 BOOST_TEST(q.empty()); in main()
72 // empty queue push rvalue succeeds in main()
75 BOOST_TEST(! q.empty()); in main()
81 // empty queue push rvalue succeeds in main()
85 BOOST_TEST(! q.empty()); in main()
91 // empty queue push rvalue succeeds in main()
[all …]
/external/s2-geometry-library-java/tests/com/google/common/geometry/
DS1IntervalTest.java75 S1Interval empty = S1Interval.empty(); in testBasic() local
76 assertTrue(empty.isValid() && empty.isEmpty() && !empty.isFull()); in testBasic()
77 assertTrue(empty.isInverted()); in testBasic()
100 assertTrue(empty.getLength() < 0); in testBasic()
104 assertTrue(empty.complement().isFull()); in testBasic()
116 assertTrue(!empty.contains(0) && !empty.contains(S2.M_PI) && !empty.contains(-S2.M_PI)); in testBasic()
117 assertTrue(!empty.interiorContains(S2.M_PI) && !empty.interiorContains(-S2.M_PI)); in testBasic()
142 testIntervalOps(empty, empty, "TTFF", empty, empty); in testBasic()
143 testIntervalOps(empty, full, "FFFF", full, empty); in testBasic()
144 testIntervalOps(empty, zero, "FFFF", zero, empty); in testBasic()
[all …]
/external/rust/crates/anes/tests/parser/
Dkey.rs9 Sequence::Key(KeyCode::F(1), KeyModifiers::empty()), in esc_o_f_keys()
11 Sequence::Key(KeyCode::F(2), KeyModifiers::empty()), in esc_o_f_keys()
13 Sequence::Key(KeyCode::F(3), KeyModifiers::empty()), in esc_o_f_keys()
15 Sequence::Key(KeyCode::F(4), KeyModifiers::empty()), in esc_o_f_keys()
23 Sequence::Key(KeyCode::Up, KeyModifiers::empty()), in csi_key_codes()
25 Sequence::Key(KeyCode::Down, KeyModifiers::empty()), in csi_key_codes()
27 Sequence::Key(KeyCode::Right, KeyModifiers::empty()), in csi_key_codes()
29 Sequence::Key(KeyCode::Left, KeyModifiers::empty()), in csi_key_codes()
31 Sequence::Key(KeyCode::Home, KeyModifiers::empty()), in csi_key_codes()
33 Sequence::Key(KeyCode::End, KeyModifiers::empty()), in csi_key_codes()
[all …]
/external/clang/test/Preprocessor/
Dsysroot-prefix.c1 // RUN: %clang_cc1 -v -isysroot /var/empty -I /var/empty/include -E %s -o /dev/null 2>&1 | FileChec…
2 // RUN: %clang_cc1 -v -isysroot /var/empty -I =/var/empty/include -E %s -o /dev/null 2>&1 | FileChe…
3 // RUN: %clang_cc1 -v -I =/var/empty/include -E %s -o /dev/null 2>&1 | FileCheck -check-prefix CHEC…
4 // RUN: %clang_cc1 -v -isysroot /var/empty -I =null -E %s -o /dev/null 2>&1 | FileCheck -check-pref…
5 // RUN: %clang_cc1 -v -isysroot /var/empty -isysroot /var/empty/root -I =null -E %s -o /dev/null 2>…
6 // RUN: %clang_cc1 -v -isysroot /var/empty/root -isysroot /var/empty -I =null -E %s -o /dev/null 2>…
8 // CHECK-ISYSROOT_NO_SYSROOT: ignoring nonexistent directory "/var/empty/include"
9 // CHECK-ISYSROOT_NO_SYSROOT-NOT: ignoring nonexistent directory "/var/empty/var/empty/include"
11 // CHECK-ISYSROOT_SYSROOT_DEV_NULL: ignoring nonexistent directory "/var/empty/var/empty/include"
12 // CHECK-ISYSROOT_SYSROOT_DEV_NULL-NOT: ignoring nonexistent directory "/var/empty"
[all …]
/external/cronet/third_party/protobuf/src/google/protobuf/
Dempty.pb.h2 // source: google/protobuf/empty.proto
49 class Empty; variable
54 …e<> PROTOBUF_EXPORT ::PROTOBUF_NAMESPACE_ID::Empty* Arena::CreateMaybeMessage<::PROTOBUF_NAMESPACE…
60 class PROTOBUF_EXPORT Empty final :
61 …::internal::ZeroFieldsBase /* @@protoc_insertion_point(class_definition:google.protobuf.Empty) */ {
63 inline Empty() : Empty(nullptr) {} in Empty() function
64 explicit PROTOBUF_CONSTEXPR Empty(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
66 Empty(const Empty& from);
67 Empty(Empty&& from) noexcept in Empty() function
68 : Empty() { in Empty()
[all …]
/external/grpc-grpc-java/android-interop-testing/src/generated/release/grpc/io/grpc/testing/integration/
DXdsUpdateHealthServiceGrpc.java21 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
22 io.grpc.testing.integration.EmptyProtos.Empty> getSetServingMethod;
26 requestType = io.grpc.testing.integration.EmptyProtos.Empty.class,
27 responseType = io.grpc.testing.integration.EmptyProtos.Empty.class,
29 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
30 io.grpc.testing.integration.EmptyProtos.Empty> getSetServingMethod() { in getSetServingMethod()
31 …escriptor<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integration.EmptyProtos.E… in getSetServingMethod()
36 …scriptor.<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integration.EmptyProtos.E… in getSetServingMethod()
41 io.grpc.testing.integration.EmptyProtos.Empty.getDefaultInstance())) in getSetServingMethod()
43 io.grpc.testing.integration.EmptyProtos.Empty.getDefaultInstance())) in getSetServingMethod()
[all …]
/external/grpc-grpc-java/android-interop-testing/src/generated/debug/grpc/io/grpc/testing/integration/
DXdsUpdateHealthServiceGrpc.java21 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
22 io.grpc.testing.integration.EmptyProtos.Empty> getSetServingMethod;
26 requestType = io.grpc.testing.integration.EmptyProtos.Empty.class,
27 responseType = io.grpc.testing.integration.EmptyProtos.Empty.class,
29 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
30 io.grpc.testing.integration.EmptyProtos.Empty> getSetServingMethod() { in getSetServingMethod()
31 …escriptor<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integration.EmptyProtos.E… in getSetServingMethod()
36 …scriptor.<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integration.EmptyProtos.E… in getSetServingMethod()
41 io.grpc.testing.integration.EmptyProtos.Empty.getDefaultInstance())) in getSetServingMethod()
43 io.grpc.testing.integration.EmptyProtos.Empty.getDefaultInstance())) in getSetServingMethod()
[all …]

12345678910>>...908