Home | History | Annotate | Download | only in aapt2

Lines Matching refs:ResourceTable

17 #include "ResourceTable.h"
57 ResourceTablePackage* ResourceTable::FindPackage(const StringPiece& name) const {
67 ResourceTablePackage* ResourceTable::FindPackageById(uint8_t id) const {
76 ResourceTablePackage* ResourceTable::CreatePackage(const StringPiece& name, Maybe<uint8_t> id) {
89 ResourceTablePackage* ResourceTable::CreatePackageAllowingDuplicateNames(const StringPiece& name,
105 ResourceTablePackage* ResourceTable::FindOrCreatePackage(const StringPiece& name) {
252 ResourceTable::CollisionResult ResourceTable::ResolveValueCollision(Value* existing,
319 bool ResourceTable::AddResource(const ResourceNameRef& name,
328 bool ResourceTable::AddResourceWithId(const ResourceNameRef& name, const ResourceId& res_id,
335 bool ResourceTable::AddFileReference(const ResourceNameRef& name,
343 bool ResourceTable::AddFileReferenceMangled(const ResourceNameRef& name,
350 bool ResourceTable::AddFileReferenceImpl(const ResourceNameRef& name,
362 bool ResourceTable::AddResourceMangled(const ResourceNameRef& name, const ConfigDescription& config,
369 bool ResourceTable::AddResourceWithIdMangled(const ResourceNameRef& name, const ResourceId& id,
377 bool ResourceTable::ValidateName(NameValidator name_validator, const ResourceNameRef& name,
388 bool ResourceTable::AddResourceImpl(const ResourceNameRef& name, const ResourceId& res_id,
456 bool ResourceTable::SetVisibility(const ResourceNameRef& name, const Visibility& visibility,
461 bool ResourceTable::SetVisibilityMangled(const ResourceNameRef& name, const Visibility& visibility,
466 bool ResourceTable::SetVisibilityWithId(const ResourceNameRef& name, const Visibility& visibility,
471 bool ResourceTable::SetVisibilityWithIdMangled(const ResourceNameRef& name,
477 bool ResourceTable::SetVisibilityImpl(const ResourceNameRef& name, const Visibility& visibility,
539 bool ResourceTable::SetAllowNew(const ResourceNameRef& name, const AllowNew& allow_new,
544 bool ResourceTable::SetAllowNewMangled(const ResourceNameRef& name, const AllowNew& allow_new,
549 bool ResourceTable::SetAllowNewImpl(const ResourceNameRef& name, const AllowNew& allow_new,
564 bool ResourceTable::SetOverlayable(const ResourceNameRef& name, const Overlayable& overlayable,
569 bool ResourceTable::SetOverlayableMangled(const ResourceNameRef& name,
574 bool ResourceTable::SetOverlayableImpl(const ResourceNameRef& name, const Overlayable& overlayable,
595 Maybe<ResourceTable::SearchResult> ResourceTable::FindResource(const ResourceNameRef& name) const {
613 std::unique_ptr<ResourceTable> ResourceTable::Clone() const {
614 std::unique_ptr<ResourceTable> new_table = util::make_unique<ResourceTable>();