Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 21 of 21) sorted by relevance

/system/chre/util/tests/
Dpriority_queue_test.cc18 int getValue() const { in getValue() function in __anonea7190b50111::DummyElement
31 return left.getValue() > right.getValue(); in compareFunction()
37 return left.getValue() > right.getValue(); in operator ()()
171 return left.getValue() > right.getValue(); in TEST()
180 EXPECT_EQ(0, q.top().getValue()); in TEST()
184 EXPECT_EQ(1, q.top().getValue()); in TEST()
188 EXPECT_EQ(2, q.top().getValue()); in TEST()
202 EXPECT_EQ(0, q.top().getValue()); in TEST()
206 EXPECT_EQ(1, q.top().getValue()); in TEST()
210 EXPECT_EQ(2, q.top().getValue()); in TEST()
[all …]
Doptional_test.cc143 int getValue() const { in getValue() function in MovableButNonCopyable
166 EXPECT_EQ(container->getValue(), kValue1); in TEST()
167 EXPECT_EQ(transferee1.getValue(), kInvalidValue); in TEST()
174 EXPECT_EQ(container->getValue(), kValue2); in TEST()
175 EXPECT_EQ(transferee2.getValue(), kInvalidValue); in TEST()
Ddynamic_vector_test.cc40 int getValue() { in getValue() function in __anond30906860111::Dummy
132 int getValue() const { in getValue() function in MovableButNonCopyable
147 EXPECT_EQ(mbnc.getValue(), -1); in TEST()
150 EXPECT_EQ(mbnc2.getValue(), -1); in TEST()
153 EXPECT_EQ(vector[0].getValue(), 0x1337); in TEST()
154 EXPECT_EQ(vector[1].getValue(), 0xface); in TEST()
155 EXPECT_EQ(vector[2].getValue(), 0xcafe); in TEST()
156 EXPECT_EQ(vector[3].getValue(), 0xd00d); in TEST()
178 int getValue() const { in getValue() function in CopyableButNonMovable
197 EXPECT_EQ(vector[0].getValue(), 0x1337); in TEST()
[all …]
/system/chre/platform/linux/
Dinit.cc81 if (!audioFileArg.getValue().empty()) { in main()
83 audioFileArg.getValue(), minAudioBufSizeArg.getValue(), in main()
84 maxAudioBufSizeArg.getValue()); in main()
103 if (!noStaticNanoappsArg.getValue()) { in main()
109 for (const auto& nanoapp : nanoappsArg.getValue()) { in main()
/system/nfc/utils/
Dconfig.cc146 ConfigValue& ConfigFile::getValue(const std::string& key) { in getValue() function in ConfigFile
153 return getValue(key).getString(); in getString()
157 return getValue(key).getUnsigned(); in getUnsigned()
161 return getValue(key).getBytes(); in getBytes()
/system/core/adb/fastdeploy/deploypatchgenerator/src/com/android/fastdeploy/
DDeployPatchGenerator.java90 APKEntry entry = identicalEntry.getValue(); in main()
144 return Long.compare(p1.getValue().getDataOffset(), p2.getValue().getDataOffset()); in getIdenticalContents()
157 APKEntry hostAPKEntry = entries.getValue(); in reportIdenticalContents()
183 APKEntry hostAPKEntry = entrySimpleEntry.getValue(); in createPatch()
/system/tools/xsdc/src/com/android/xsdc/tag/
DXsdEnumeration.java27 public String getValue() { in getValue() method in XsdEnumeration
/system/security/keystore/
Dkeystore_utils.cpp110 hidl_vec<uint8_t> result(blob.getValue(), blob.getValue() + blob.getLength()); in blob2hidlVec()
Duser_state.cpp201 mMasterKey = std::vector<uint8_t>(masterKeyBlob.getValue(), in readMasterKey()
202 masterKeyBlob.getValue() + masterKeyBlob.getLength()); in readMasterKey()
Dblob.h122 const uint8_t* getValue() const { return mBlob->value; } in getValue() function
/system/nfc/utils/include/
Dconfig.h59 ConfigValue& getValue(const std::string& key);
/system/libvintf/xsd/halManifest/api/
Dcurrent.txt22 method public String getValue();
44 method public String getValue();
/system/libvintf/xsd/compatibilityMatrix/api/
Dcurrent.txt36 method public compatibility.matrix.Config.Value getValue();
44 method public String getValue();
/system/extras/verity/
DBootSignature.java108 if (formatVersion.getValue().intValue() != FORMAT_VERSION) { in BootSignature()
181 if (length.getValue().intValue() != image.length) { in verify()
/system/tools/xsdc/tests/src/com/android/xsdc/tests/
DTestHelper.java116 new InMemoryJavaFileObject(className, entry.getValue().toString())); in parseXsdAndCompile()
/system/tools/xsdc/src/com/android/xsdc/cpp/
DCppCodeGenerator.java163 headerFile.printf("%s,\n", Utils.toEnumName(tag.getValue())); in printEnum()
164 cppFile.printf("{ \"%s\", %s::%s },\n", tag.getValue(), name, in printEnum()
165 Utils.toEnumName(tag.getValue())); in printEnum()
/system/tools/xsdc/src/com/android/xsdc/java/
DJavaCodeGenerator.java130 out.printf("\n%s(\"%s\"),", Utils.toEnumName(tag.getValue()), tag.getValue()); in printEnumClass()
/system/core/libutils/include/utils/
DTypeHelpers.h274 inline const VALUE& getValue() const {
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DCountryZoneTree.java399 List<ZoneInfo> newSet = newSetEntry.getValue(); in growTree()
/system/tools/xsdc/src/com/android/xsdc/
DXsdHandler.java112 attributeMap.put(attributes.getLocalName(i), attributes.getValue(i)); in startElement()
/system/extras/simpleperf/
Dread_elf.cpp300 symbol.vaddr = symbol_ref->getValue(); in ReadSymbolTable()