Home
last modified time | relevance | path

Searched refs:addAll (Results 1 – 18 of 18) sorted by relevance

/system/libvintf/
DSystemSdk.cpp35 void SystemSdk::addAll(SystemSdk* other) { in addAll() function in android::vintf::SystemSdk
DCompatibilityMatrix.cpp327 this->device.mSystemSdk.addAll(&other->device.mSystemSdk); in addSystemSdk()
384 success = baseMatrix->addAll(&e, error); in combine()
408 bool success = baseMatrix->addAll(&e, error); in combineDeviceMatrices()
421 bool CompatibilityMatrix::addAll(Named<CompatibilityMatrix>* inputMatrix, std::string* error) { in addAll() function in android::vintf::CompatibilityMatrix
DVintfObject.cpp218 if (!manifest->addAll(&fragmentManifest, error)) { in addDirectoryManifests()
258 if (!out->addAll(&odmManifest, error)) { in fetchDeviceHalManifest()
362 if (!out->addAll(&productManifest, error)) { in fetchFrameworkHalManifest()
DHalManifest.cpp483 bool HalManifest::addAll(HalManifest* other, std::string* error) { in addAll() function in android::vintf::HalManifest
547 framework.mSystemSdk.addAll(&other->framework.mSystemSdk); in addAll()
DAssembleVintf.cpp361 if (!halManifest->addAll(&manifestToAdd, &error)) { in assembleHalManifest()
/system/libvintf/include/vintf/
DSystemSdk.h42 void addAll(SystemSdk* other);
DCompatibilityMatrix.h72 bool addAll(Named<CompatibilityMatrix>* inputMatrix, std::string* error);
DHalManifest.h136 [[nodiscard]] bool addAll(HalManifest* other, std::string* error = nullptr);
/system/core/libutils/include/utils/
DPropertyMap.h75 void addAll(const PropertyMap* map);
/system/extras/simpleperf/app_api/java/com/android/simpleperf/
DRecordOptions.java82 this.threads.addAll(threads); in setSampleThreads()
DProfileSession.java265 args.addAll(recordArgs); in createSimpleperfProcess()
/system/core/libutils/
DPropertyMap.cpp108 void PropertyMap::addAll(const PropertyMap* map) { in addAll() function in android::PropertyMap
/system/tools/xsdc/src/com/android/xsdc/
DXsdHandler.java169 stateStack.peek().tags.addAll(makeSequence(state)); in endElement()
172 stateStack.peek().tags.addAll(makeChoice(state)); in endElement()
175 stateStack.peek().tags.addAll(makeAll(state)); in endElement()
/system/timezone/zone_compactor/main/java/
DZoneCompactor.java141 sortedOlsonIds.addAll(offsets.keySet()); in ZoneCompactor()
/system/tools/xsdc/src/com/android/xsdc/java/
DJavaCodeGenerator.java428 elements.addAll(complexType.getElements()); in stackComponents()
429 attributes.addAll(complexType.getAttributes()); in stackComponents()
/system/tools/xsdc/src/com/android/xsdc/cpp/
DCppCodeGenerator.java497 elements.addAll(complexType.getElements()); in stackComponents()
498 attributes.addAll(complexType.getAttributes()); in stackComponents()
/system/libvintf/test/
DLibVintfTest.cpp3508 ASSERT_TRUE(manifest1.addAll(&manifest2, &error)) << error; in TEST_F()
3541 ASSERT_TRUE(manifest1.addAll(&manifest2, &error)) << error; in TEST_F()
3556 ASSERT_FALSE(manifest1.addAll(&manifest2, &error)); in TEST_F()
3580 ASSERT_FALSE(manifest1.addAll(&manifest2, &error)); in TEST_F()
3600 ASSERT_FALSE(manifest1.addAll(&manifest2, &error)); in TEST_F()
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java903 e.vs.addAll(Arrays.asList("One", "Two", "Three")); in client()