Searched refs:StyleRef (Results 1 – 5 of 5) sorted by relevance
75 class StyleRef {77 StyleRef();78 StyleRef(const StyleRef&);79 ~StyleRef();81 StyleRef& operator=(const StyleRef& rhs);91 StyleRef(StyleEntry* entry);122 friend class StyleRef; variable151 StyleRef makeRef(const StyleString& str);158 StyleRef makeRef(const StyleString& str, const Context& context);164 StyleRef makeRef(const StyleRef& ref);
78 StringPool::StyleRef::StyleRef() : mEntry(nullptr) { in StyleRef() function in aapt::StringPool::StyleRef81 StringPool::StyleRef::StyleRef(const StringPool::StyleRef& rhs) : mEntry(rhs.mEntry) { in StyleRef() function in aapt::StringPool::StyleRef87 StringPool::StyleRef::StyleRef(StringPool::StyleEntry* entry) : mEntry(entry) { in StyleRef() function in aapt::StringPool::StyleRef93 StringPool::StyleRef::~StyleRef() { in ~StyleRef()99 StringPool::StyleRef& StringPool::StyleRef::operator=(const StringPool::StyleRef& rhs) { in operator =()111 const StringPool::StyleEntry* StringPool::StyleRef::operator->() const { in operator ->()115 const StringPool::StyleEntry& StringPool::StyleRef::operator*() const { in operator *()119 size_t StringPool::StyleRef::getIndex() const { in getIndex()123 const StringPool::Context& StringPool::StyleRef::getContext() const { in getContext()154 StringPool::StyleRef StringPool::makeRef(const StyleString& str) { in makeRef()[all …]
91 StringPool::StyleRef ref2 = pool.makeRef(StyleString{ {u"a"} }); in TEST()148 StringPool::StyleRef ref = pool.makeRef(str); in TEST()166 StringPool::StyleRef styleRef = pool.makeRef(str); in TEST()211 StringPool::StyleRef ref4 = pool.makeRef(StyleString{ in TEST()
210 StringPool::StyleRef value;212 StyledString(const StringPool::StyleRef& ref);
147 StyledString::StyledString(const StringPool::StyleRef& ref) : value(ref), mTranslateable(true) { in StyledString()