Home
last modified time | relevance | path

Searched refs:FindType (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/tools/aapt2/link/
H A DPrivateAttributeMover_test.cpp44 ResourceTableType* type = package->FindType(ResourceType::kAttr); in TEST()
50 type = package->FindType(ResourceType::kAttrPrivate); in TEST()
71 ResourceTableType* type = package->FindType(ResourceType::kAttr); in TEST()
75 type = package->FindType(ResourceType::kAttrPrivate); in TEST()
90 ASSERT_EQ(nullptr, package->FindType(ResourceType::kAttrPrivate)); in TEST()
95 ASSERT_EQ(nullptr, package->FindType(ResourceType::kAttrPrivate)); in TEST()
H A DPrivateAttributeMover.cpp60 ResourceTableType* type = package->FindType(ResourceType::kAttr); in Consume()
/aosp12/system/extras/simpleperf/
H A Devent_type.cpp79 virtual const EventType* FindType(const std::string& name) { in FindType() function in simpleperf::EventTypeFinder
129 const EventType* FindType(const std::string& name) override { in FindType() function in simpleperf::TracepointSystemFinder
200 const EventType* FindType(const std::string& name) override { in FindType() function in simpleperf::PMUTypeFinder
204 return EventTypeFinder::FindType(name); in FindType()
304 const EventType* FindType(const std::string& name) override { in FindType() function in simpleperf::ETMTypeFinder
308 return EventTypeFinder::FindType(name); in FindType()
416 const EventType* EventTypeManager::FindType(const std::string& name) { in FindType() function in simpleperf::EventTypeManager
418 return scoped_finder_->FindType(name); in FindType()
421 if (auto type = finder->FindType(name)) { in FindType()
499 const EventType* event_type = EventTypeManager::Instance().FindType(name); in FindEventTypeByName()
[all …]
H A Devent_type.h107 const EventType* FindType(const std::string& name);
H A DProbeEvents.cpp126 if (EventTypeManager::Instance().FindType(event_name) != nullptr) { in CreateProbeEventIfNotExist()
/aosp12/frameworks/base/tools/aapt2/
H A DResourceTable.cpp123 ResourceTableType* ResourceTablePackage::FindType(ResourceType type) const { in FindType() function in aapt::ResourceTablePackage
594 ResourceTableType* type = package->FindType(name.type); in FindResource()
613 ResourceTableType* type = package->FindType(name.type); in FindResource()
634 ResourceTableType* type = package->FindType(name.type); in RemoveResource()
H A DResourceTable.h199 ResourceTableType* FindType(ResourceType type) const;
/aosp12/frameworks/base/tools/aapt2/java/
H A DJavaClassGenerator.cpp641 if (const ResourceTableType* priv_type = package->FindType(ResourceType::kAttrPrivate)) { in Generate()