diff options
author | Adam Lesinski <adamlesinski@google.com> | 2017-01-06 15:20:04 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2017-02-08 06:23:45 -0800 |
commit | 7542162cb1b1fd2ce8a26dd7f3fedc8de8160d38 (patch) | |
tree | 0358684e3551d67eb93cb80ae81ef391ba1a9091 /tools/aapt2/StringPool.h | |
parent | c270de85cc0c398d9ce165592908d2740219a708 (diff) |
AAPT2: Fix pseudolocalization to respect <xliff:g>
The XLIFF 'g' tag specifies content that should NOT be translated.
AAPT2's pseudolocalization process should respect it.
Bug:34064599
Test: make libandroidfw_tests
Change-Id: Ice437d7f0ff246730ee04896fd035e2d846148fb
Diffstat (limited to 'tools/aapt2/StringPool.h')
-rw-r--r-- | tools/aapt2/StringPool.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/aapt2/StringPool.h b/tools/aapt2/StringPool.h index d0ce489dae26..a626d375b625 100644 --- a/tools/aapt2/StringPool.h +++ b/tools/aapt2/StringPool.h @@ -70,6 +70,8 @@ class StringPool { ~Ref(); Ref& operator=(const Ref& rhs); + bool operator==(const Ref& rhs) const; + bool operator!=(const Ref& rhs) const; const std::string* operator->() const; const std::string& operator*() const; @@ -93,6 +95,8 @@ class StringPool { ~StyleRef(); StyleRef& operator=(const StyleRef& rhs); + bool operator==(const StyleRef& rhs) const; + bool operator!=(const StyleRef& rhs) const; const StyleEntry* operator->() const; const StyleEntry& operator*() const; |