Home
last modified time | relevance | path

Searched refs:kValue (Results 1 – 11 of 11) sorted by relevance

/aosp12/system/chre/apps/test/chqts/src/shared/
H A Dnano_endian_test.cc75 static constexpr uint32_t kValue = UINT32_C(0x04030201); variable
84 EXPECT_EQ(kValue, value); in TEST()
88 uint32_t value = kValue; in TEST()
/aosp12/frameworks/native/libs/vr/libpdx/
H A Dservice_tests.cpp606 int32_t kValue = 12345; in TEST_F() local
607 LocalChannelHandle handle{nullptr, kValue}; in TEST_F()
619 int32_t kValue = 12345; in TEST_F() local
620 BorrowedChannelHandle handle{kValue}; in TEST_F()
633 int32_t kValue = 12345; in TEST_F() local
634 RemoteChannelHandle handle{kValue}; in TEST_F()
639 .WillOnce(Return(kValue)) in TEST_F()
720 int32_t kValue = 12; in TEST_F() local
727 EXPECT_EQ(kValue, status.get().value()); in TEST_F()
752 int32_t kValue = 12; in TEST_F() local
[all …]
/aosp12/art/runtime/
H A Dart_method.h210 static constexpr uint32_t kValue = kAccCopied | kAccAbstract; in IsMiranda() local
211 return (GetAccessFlags() & kMask) == kValue; in IsMiranda()
221 static constexpr uint32_t kValue = kAccCopied | kAccAbstract | kAccDefault; in IsDefaultConflicting() local
222 return (GetAccessFlags() & kMask) == kValue; in IsDefaultConflicting()
240 static constexpr uint32_t kValue = kAccCompileDontBother | kAccPreCompiled; in IsPreCompiled() local
241 return (GetAccessFlags() & kMask) == kValue; in IsPreCompiled()
/aosp12/system/update_engine/common/
H A Dprefs_unittest.cc237 const char kValue[] = "some test value\non 2 lines"; in TEST_F() local
238 EXPECT_TRUE(prefs_.SetString(kKey, kValue)); in TEST_F()
241 EXPECT_EQ(kValue, value); in TEST_F()
251 const char kValue[] = "test value"; in TEST_F() local
254 EXPECT_TRUE(prefs_.SetString(kKey, kValue)); in TEST_F()
257 EXPECT_EQ(kValue, value); in TEST_F()
H A Dutils_unittest.cc140 const int kValue = 50; in TEST() local
142 uint32_t value = utils::FuzzInt(kValue, range); in TEST()
143 EXPECT_GE(value, kValue - range / 2); in TEST()
144 EXPECT_LE(value, kValue + range - range / 2); in TEST()
/aosp12/frameworks/native/libs/binder/ndk/
H A Dibinder.cpp46 static void* kValue = static_cast<void*>(new bool{true}); variable
50 binder->attachObject(kId, kValue, nullptr /*cookie*/, clean); in attach()
53 return binder != nullptr && binder->findObject(kId) == kValue; in has()
/aosp12/system/tools/hidl/test/hidl_test/
H A Dhidl_test_client.cpp896 const uint8_t kValue = 0xCA; in TEST_F() local
915 memoryTest->fillMemory(mem, kValue); in TEST_F()
919 EXPECT_EQ(kValue, data[i]); in TEST_F()
934 EXPECT_EQ(kValue, data[i]); in TEST_F()
953 EXPECT_EQ(kValue, data[i]); in TEST_F()
959 const uint8_t kValue = 0xCA; in TEST_F() local
979 memset(data, kValue, memory->getSize()); in TEST_F()
997 EXPECT_EQ(kValue, data[i]); in TEST_F()
1004 const uint8_t kValue = 0xCA; in TEST_F() local
1033 memoryTest->fillMemory(mem, kValue); in TEST_F()
[all …]
/aosp12/art/compiler/optimizing/
H A Dstack_map_stream.cc124 entry[RegisterMask::kValue] = register_mask >> shift; in BeginStackMapEntry()
H A Dload_store_elimination_test.cc302 enum class Target : uint8_t { kNull, kValue, kSelf }; enumerator
365 EXPECT_EQ(kind.target_, Target::kValue); in CheckFinalInstruction()
448 case PartialComparisonKind::Target::kValue: { in GetComparisonInstructions()
5333 PartialComparisonKind::Target::kValue,
5336 PartialComparisonKind::Target::kValue,
5351 PartialComparisonKind::Target::kValue,
5354 PartialComparisonKind::Target::kValue,
/aosp12/system/incremental_delivery/incfs/
H A Dincfs.cpp139 static const ab::NoDestructor<std::string> kValue{ in incFsPropertyValue() local
141 LOG(INFO) << "ro.incremental.enable: " << *kValue; in incFsPropertyValue()
142 return *kValue; in incFsPropertyValue()
/aosp12/packages/modules/StatsD/statsd/tests/
H A Dstatsd_test_util.cpp1259 case StateValue::ContentsCase::kValue: in ValidateStateValue()