Home
last modified time | relevance | path

Searched refs:StyleRef (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/
DStringPool.h75 class StyleRef {
77 StyleRef();
78 StyleRef(const StyleRef&);
79 ~StyleRef();
81 StyleRef& operator=(const StyleRef& rhs);
91 StyleRef(StyleEntry* entry);
122 friend class StyleRef; variable
151 StyleRef makeRef(const StyleString& str);
158 StyleRef makeRef(const StyleString& str, const Context& context);
164 StyleRef makeRef(const StyleRef& ref);
DStringPool.cpp78 StringPool::StyleRef::StyleRef() : mEntry(nullptr) { in StyleRef() function in aapt::StringPool::StyleRef
81 StringPool::StyleRef::StyleRef(const StringPool::StyleRef& rhs) : mEntry(rhs.mEntry) { in StyleRef() function in aapt::StringPool::StyleRef
87 StringPool::StyleRef::StyleRef(StringPool::StyleEntry* entry) : mEntry(entry) { in StyleRef() function in aapt::StringPool::StyleRef
93 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 …]
DStringPool_test.cpp85 StringPool::StyleRef ref2 = pool.makeRef(StyleString{ {u"a"} }); in TEST()
142 StringPool::StyleRef ref = pool.makeRef(str); in TEST()
160 StringPool::StyleRef styleRef = pool.makeRef(str); in TEST()
183 StringPool::StyleRef ref4 = pool.makeRef(StyleString{ in TEST()
DResourceValues.h175 StringPool::StyleRef value;
177 StyledString(const StringPool::StyleRef& ref);
DResourceValues.cpp139 StyledString::StyledString(const StringPool::StyleRef& ref) : value(ref) { in StyledString()