X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/d38cd880626e1508ffec8d891a8e61b8f5c8cb7d..385b832fb884e8383877a3600518207b6bffbfe2:/ResourceTable.h diff --git a/ResourceTable.h b/ResourceTable.h index cc2a429..8123bb3 100644 --- a/ResourceTable.h +++ b/ResourceTable.h @@ -124,6 +124,11 @@ public: const String16& type, const String16& name) const; + bool hasBagOrEntry(const String16& package, + const String16& type, + const String16& name, + const ResTable_config& config) const; + bool hasBagOrEntry(const String16& ref, const String16* defType = NULL, const String16* defPackage = NULL); @@ -162,13 +167,13 @@ public: uint32_t getResId(const String16& package, const String16& type, const String16& name, - bool onlyPublic = false) const; + bool onlyPublic = true) const; uint32_t getResId(const String16& ref, const String16* defType = NULL, const String16* defPackage = NULL, const char** outErrorMsg = NULL, - bool onlyPublic = false) const; + bool onlyPublic = true) const; static bool isValidResourceName(const String16& s); @@ -376,10 +381,6 @@ public: void addEntry(const ResTable_config& config, const sp& entry) { mEntries.add(config, entry); } - - void removeEntryAt(int32_t index) { - mEntries.removeItemsAt(index); - } const DefaultKeyedVector >& getEntries() const { return mEntries; } private: @@ -452,9 +453,6 @@ public: const DefaultKeyedVector >& getConfigs() const { return mConfigs; } const Vector >& getOrderedConfigs() const { return mOrderedConfigs; } - void removeUniqueConfig(ConfigDescription& config) { mUniqueConfigs.remove(config); } - void removeOrderedConfigAt(uint32_t index) { mOrderedConfigs.removeItemsAt(index); } - const SortedVector& getCanAddEntries() const { return mCanAddEntries; } const SourcePos& getPos() const { return mPos; } @@ -551,31 +549,4 @@ private: map > mLocalizations; }; -class ResourceFilter -{ -public: - ResourceFilter() : mData(), mContainsPseudo(false) {} - status_t parse(const char* arg); - bool match(int axis, uint32_t value); - bool match(const ResTable_config& config); - inline bool containsPseudo() { return mContainsPseudo; } - -private: - KeyedVector > mData; - bool mContainsPseudo; -}; - -class ResourceConfigReferences -{ -public: - ResourceConfigReferences() : mRoots() {} - ~ResourceConfigReferences(); - status_t add(uint32_t id, const ResTable_config& config); - bool isRoot(uint32_t id, const ResTable_config& config); - void dump(); - -private: - KeyedVector > mRoots; -}; - #endif