Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 292cece3 authored by Adam Lesinski's avatar Adam Lesinski Committed by Android (Google) Code Review
Browse files

Merge "AAPT2: Ensure style strings are always first in StringPool"

parents bb7d4f58 060b53d0
Loading
Loading
Loading
Loading
+5 −9
Original line number Original line Diff line number Diff line
@@ -268,8 +268,7 @@ bool ResourceParser::Parse(xml::XmlPullParser* parser) {
      continue;
      continue;
    }
    }


    if (!parser->element_namespace().empty() ||
    if (!parser->element_namespace().empty() || parser->element_name() != "resources") {
        parser->element_name() != "resources") {
      diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
      diag_->Error(DiagMessage(source_.WithLine(parser->line_number()))
                   << "root element must be <resources>");
                   << "root element must be <resources>");
      return false;
      return false;
@@ -328,8 +327,7 @@ bool ResourceParser::ParseResources(xml::XmlPullParser* parser) {
    parsed_resource.comment = std::move(comment);
    parsed_resource.comment = std::move(comment);


    // Extract the product name if it exists.
    // Extract the product name if it exists.
    if (Maybe<StringPiece> maybe_product =
    if (Maybe<StringPiece> maybe_product = xml::FindNonEmptyAttribute(parser, "product")) {
            xml::FindNonEmptyAttribute(parser, "product")) {
      parsed_resource.product = maybe_product.value().to_string();
      parsed_resource.product = maybe_product.value().to_string();
    }
    }


@@ -348,10 +346,8 @@ bool ResourceParser::ParseResources(xml::XmlPullParser* parser) {
  for (const ResourceName& stripped_resource : stripped_resources) {
  for (const ResourceName& stripped_resource : stripped_resources) {
    if (!table_->FindResource(stripped_resource)) {
    if (!table_->FindResource(stripped_resource)) {
      // Failed to find the resource.
      // Failed to find the resource.
      diag_->Error(DiagMessage(source_)
      diag_->Error(DiagMessage(source_) << "resource '" << stripped_resource
                   << "resource '" << stripped_resource
                                        << "' was filtered out but no product variant remains");
                   << "' "
                      "was filtered out but no product variant remains");
      error = true;
      error = true;
    }
    }
  }
  }
@@ -589,7 +585,7 @@ std::unique_ptr<Item> ResourceParser::ParseXml(xml::XmlPullParser* parser,
    // This can only be a StyledString.
    // This can only be a StyledString.
    std::unique_ptr<StyledString> styled_string =
    std::unique_ptr<StyledString> styled_string =
        util::make_unique<StyledString>(table_->string_pool.MakeRef(
        util::make_unique<StyledString>(table_->string_pool.MakeRef(
            style_string, StringPool::Context(StringPool::Context::kStylePriority, config_)));
            style_string, StringPool::Context(StringPool::Context::kNormalPriority, config_)));
    styled_string->untranslatable_sections = std::move(untranslatable_sections);
    styled_string->untranslatable_sections = std::move(untranslatable_sections);
    return std::move(styled_string);
    return std::move(styled_string);
  }
  }
+2 −2
Original line number Original line Diff line number Diff line
@@ -117,7 +117,7 @@ TEST_F(ResourceParserTest, ParseStyledString) {
  StyledString* str = test::GetValue<StyledString>(&table_, "string/foo");
  StyledString* str = test::GetValue<StyledString>(&table_, "string/foo");
  ASSERT_THAT(str, NotNull());
  ASSERT_THAT(str, NotNull());


  EXPECT_THAT(*str->value->str, Eq("This is my aunt\u2019s fickle string"));
  EXPECT_THAT(str->value->value, Eq("This is my aunt\u2019s fickle string"));
  EXPECT_THAT(str->value->spans, SizeIs(2));
  EXPECT_THAT(str->value->spans, SizeIs(2));
  EXPECT_THAT(str->untranslatable_sections, IsEmpty());
  EXPECT_THAT(str->untranslatable_sections, IsEmpty());


@@ -190,7 +190,7 @@ TEST_F(ResourceParserTest, RecordUntranslateableXliffSectionsInStyledString) {


  StyledString* str = test::GetValue<StyledString>(&table_, "string/foo");
  StyledString* str = test::GetValue<StyledString>(&table_, "string/foo");
  ASSERT_THAT(str, NotNull());
  ASSERT_THAT(str, NotNull());
  EXPECT_THAT(*str->value->str, Eq("There are %1$d apples"));
  EXPECT_THAT(str->value->value, Eq("There are %1$d apples"));
  ASSERT_THAT(str->untranslatable_sections, SizeIs(1));
  ASSERT_THAT(str->untranslatable_sections, SizeIs(1));


  // We expect indices and lengths that span to include the whitespace
  // We expect indices and lengths that span to include the whitespace
+1 −1
Original line number Original line Diff line number Diff line
@@ -700,7 +700,7 @@ std::unique_ptr<Item> ParseBinaryResValue(const ResourceType& type, const Config
          spans++;
          spans++;
        }
        }
        return util::make_unique<StyledString>(dst_pool->MakeRef(
        return util::make_unique<StyledString>(dst_pool->MakeRef(
            style_str, StringPool::Context(StringPool::Context::kStylePriority, config)));
            style_str, StringPool::Context(StringPool::Context::kNormalPriority, config)));
      } else {
      } else {
        if (type != ResourceType::kString && util::StartsWith(str, "res/")) {
        if (type != ResourceType::kString && util::StartsWith(str, "res/")) {
          // This must be a FileReference.
          // This must be a FileReference.
+2 −3
Original line number Original line Diff line number Diff line
@@ -253,10 +253,9 @@ StyledString* StyledString::Clone(StringPool* new_pool) const {
}
}


void StyledString::Print(std::ostream* out) const {
void StyledString::Print(std::ostream* out) const {
  *out << "(styled string) \"" << *value->str << "\"";
  *out << "(styled string) \"" << value->value << "\"";
  for (const StringPool::Span& span : value->spans) {
  for (const StringPool::Span& span : value->spans) {
    *out << " " << *span.name << ":" << span.first_char << ","
    *out << " " << *span.name << ":" << span.first_char << "," << span.last_char;
         << span.last_char;
  }
  }
}
}


+163 −161
Original line number Original line Diff line number Diff line
@@ -27,7 +27,7 @@
#include "util/BigBuffer.h"
#include "util/BigBuffer.h"
#include "util/Util.h"
#include "util/Util.h"


using android::StringPiece;
using ::android::StringPiece;


namespace aapt {
namespace aapt {


@@ -75,9 +75,14 @@ const std::string* StringPool::Ref::operator->() const {
  return &entry_->value;
  return &entry_->value;
}
}


const std::string& StringPool::Ref::operator*() const { return entry_->value; }
const std::string& StringPool::Ref::operator*() const {
  return entry_->value;
}


size_t StringPool::Ref::index() const { return entry_->index; }
size_t StringPool::Ref::index() const {
  // Account for the styles, which *always* come first.
  return entry_->pool_->styles_.size() + entry_->index_;
}


const StringPool::Context& StringPool::Ref::GetContext() const {
const StringPool::Context& StringPool::Ref::GetContext() const {
  return entry_->context;
  return entry_->context;
@@ -104,8 +109,7 @@ StringPool::StyleRef::~StyleRef() {
  }
  }
}
}


StringPool::StyleRef& StringPool::StyleRef::operator=(
StringPool::StyleRef& StringPool::StyleRef::operator=(const StringPool::StyleRef& rhs) {
    const StringPool::StyleRef& rhs) {
  if (rhs.entry_ != nullptr) {
  if (rhs.entry_ != nullptr) {
    rhs.entry_->ref_++;
    rhs.entry_->ref_++;
  }
  }
@@ -118,7 +122,7 @@ StringPool::StyleRef& StringPool::StyleRef::operator=(
}
}


bool StringPool::StyleRef::operator==(const StyleRef& rhs) const {
bool StringPool::StyleRef::operator==(const StyleRef& rhs) const {
  if (entry_->str != rhs.entry_->str) {
  if (entry_->value != rhs.entry_->value) {
    return false;
    return false;
  }
  }


@@ -137,7 +141,9 @@ bool StringPool::StyleRef::operator==(const StyleRef& rhs) const {
  return true;
  return true;
}
}


bool StringPool::StyleRef::operator!=(const StyleRef& rhs) const { return !operator==(rhs); }
bool StringPool::StyleRef::operator!=(const StyleRef& rhs) const {
  return !operator==(rhs);
}


const StringPool::StyleEntry* StringPool::StyleRef::operator->() const {
const StringPool::StyleEntry* StringPool::StyleRef::operator->() const {
  return entry_;
  return entry_;
@@ -147,23 +153,24 @@ const StringPool::StyleEntry& StringPool::StyleRef::operator*() const {
  return *entry_;
  return *entry_;
}
}


size_t StringPool::StyleRef::index() const { return entry_->str.index(); }
size_t StringPool::StyleRef::index() const {
  return entry_->index_;
}


const StringPool::Context& StringPool::StyleRef::GetContext() const {
const StringPool::Context& StringPool::StyleRef::GetContext() const {
  return entry_->str.GetContext();
  return entry_->context;
}
}


StringPool::Ref StringPool::MakeRef(const StringPiece& str) {
StringPool::Ref StringPool::MakeRef(const StringPiece& str) {
  return MakeRefImpl(str, Context{}, true);
  return MakeRefImpl(str, Context{}, true);
}
}


StringPool::Ref StringPool::MakeRef(const StringPiece& str,
StringPool::Ref StringPool::MakeRef(const StringPiece& str, const Context& context) {
                                    const Context& context) {
  return MakeRefImpl(str, context, true);
  return MakeRefImpl(str, context, true);
}
}


StringPool::Ref StringPool::MakeRefImpl(const StringPiece& str,
StringPool::Ref StringPool::MakeRefImpl(const StringPiece& str, const Context& context,
                                        const Context& context, bool unique) {
                                        bool unique) {
  if (unique) {
  if (unique) {
    auto iter = indexed_strings_.find(str);
    auto iter = indexed_strings_.find(str);
    if (iter != std::end(indexed_strings_)) {
    if (iter != std::end(indexed_strings_)) {
@@ -171,82 +178,87 @@ StringPool::Ref StringPool::MakeRefImpl(const StringPiece& str,
    }
    }
  }
  }


  Entry* entry = new Entry();
  std::unique_ptr<Entry> entry(new Entry());
  entry->value = str.to_string();
  entry->value = str.to_string();
  entry->context = context;
  entry->context = context;
  entry->index = strings_.size();
  entry->index_ = strings_.size();
  entry->ref_ = 0;
  entry->ref_ = 0;
  strings_.emplace_back(entry);
  entry->pool_ = this;
  indexed_strings_.insert(std::make_pair(StringPiece(entry->value), entry));

  return Ref(entry);
  Entry* borrow = entry.get();
  strings_.emplace_back(std::move(entry));
  indexed_strings_.insert(std::make_pair(StringPiece(borrow->value), borrow));
  return Ref(borrow);
}
}


StringPool::StyleRef StringPool::MakeRef(const StyleString& str) {
StringPool::StyleRef StringPool::MakeRef(const StyleString& str) {
  return MakeRef(str, Context{});
  return MakeRef(str, Context{});
}
}


StringPool::StyleRef StringPool::MakeRef(const StyleString& str,
StringPool::StyleRef StringPool::MakeRef(const StyleString& str, const Context& context) {
                                         const Context& context) {
  std::unique_ptr<StyleEntry> entry(new StyleEntry());
  Entry* entry = new Entry();
  entry->value = str.str;
  entry->value = str.str;
  entry->context = context;
  entry->context = context;
  entry->index = strings_.size();
  entry->index_ = styles_.size();
  entry->ref_ = 0;
  entry->ref_ = 0;
  strings_.emplace_back(entry);
  indexed_strings_.insert(std::make_pair(StringPiece(entry->value), entry));

  StyleEntry* style_entry = new StyleEntry();
  style_entry->str = Ref(entry);
  for (const aapt::Span& span : str.spans) {
  for (const aapt::Span& span : str.spans) {
    style_entry->spans.emplace_back(
    entry->spans.emplace_back(Span{MakeRef(span.name), span.first_char, span.last_char});
        Span{MakeRef(span.name), span.first_char, span.last_char});
  }
  }
  style_entry->ref_ = 0;

  styles_.emplace_back(style_entry);
  StyleEntry* borrow = entry.get();
  return StyleRef(style_entry);
  styles_.emplace_back(std::move(entry));
  return StyleRef(borrow);
}
}


StringPool::StyleRef StringPool::MakeRef(const StyleRef& ref) {
StringPool::StyleRef StringPool::MakeRef(const StyleRef& ref) {
  Entry* entry = new Entry();
  std::unique_ptr<StyleEntry> entry(new StyleEntry());
  entry->value = *ref.entry_->str;
  entry->value = ref.entry_->value;
  entry->context = ref.entry_->str.entry_->context;
  entry->context = ref.entry_->context;
  entry->index = strings_.size();
  entry->index_ = styles_.size();
  entry->ref_ = 0;
  entry->ref_ = 0;
  strings_.emplace_back(entry);
  indexed_strings_.insert(std::make_pair(StringPiece(entry->value), entry));

  StyleEntry* style_entry = new StyleEntry();
  style_entry->str = Ref(entry);
  for (const Span& span : ref.entry_->spans) {
  for (const Span& span : ref.entry_->spans) {
    style_entry->spans.emplace_back(
    entry->spans.emplace_back(Span{MakeRef(*span.name), span.first_char, span.last_char});
        Span{MakeRef(*span.name), span.first_char, span.last_char});
  }

  StyleEntry* borrow = entry.get();
  styles_.emplace_back(std::move(entry));
  return StyleRef(borrow);
}

void StringPool::ReAssignIndices() {
  // Assign the style indices.
  const size_t style_len = styles_.size();
  for (size_t index = 0; index < style_len; index++) {
    styles_[index]->index_ = index;
  }

  // Assign the string indices.
  const size_t string_len = strings_.size();
  for (size_t index = 0; index < string_len; index++) {
    strings_[index]->index_ = index;
  }
  }
  style_entry->ref_ = 0;
  styles_.emplace_back(style_entry);
  return StyleRef(style_entry);
}
}


void StringPool::Merge(StringPool&& pool) {
void StringPool::Merge(StringPool&& pool) {
  indexed_strings_.insert(pool.indexed_strings_.begin(),
  // First, change the owning pool for the incoming strings.
                          pool.indexed_strings_.end());
  for (std::unique_ptr<Entry>& entry : pool.strings_) {
  pool.indexed_strings_.clear();
    entry->pool_ = this;
  std::move(pool.strings_.begin(), pool.strings_.end(),
  }
            std::back_inserter(strings_));

  pool.strings_.clear();
  // Now move the styles, strings, and indices over.
  std::move(pool.styles_.begin(), pool.styles_.end(),
  std::move(pool.styles_.begin(), pool.styles_.end(), std::back_inserter(styles_));
            std::back_inserter(styles_));
  pool.styles_.clear();
  pool.styles_.clear();
  std::move(pool.strings_.begin(), pool.strings_.end(), std::back_inserter(strings_));
  pool.strings_.clear();
  indexed_strings_.insert(pool.indexed_strings_.begin(), pool.indexed_strings_.end());
  pool.indexed_strings_.clear();


  // Assign the indices.
  ReAssignIndices();
  const size_t len = strings_.size();
  for (size_t index = 0; index < len; index++) {
    strings_[index]->index = index;
  }
}
}


void StringPool::HintWillAdd(size_t stringCount, size_t styleCount) {
void StringPool::HintWillAdd(size_t string_count, size_t style_count) {
  strings_.reserve(strings_.size() + stringCount);
  strings_.reserve(strings_.size() + string_count);
  styles_.reserve(styles_.size() + styleCount);
  styles_.reserve(styles_.size() + style_count);
}
}


void StringPool::Prune() {
void StringPool::Prune() {
@@ -262,47 +274,42 @@ void StringPool::Prune() {


  auto end_iter2 =
  auto end_iter2 =
      std::remove_if(strings_.begin(), strings_.end(),
      std::remove_if(strings_.begin(), strings_.end(),
                     [](const std::unique_ptr<Entry>& entry) -> bool {
                     [](const std::unique_ptr<Entry>& entry) -> bool { return entry->ref_ <= 0; });
                       return entry->ref_ <= 0;
  auto end_iter3 = std::remove_if(
                     });
      styles_.begin(), styles_.end(),
      [](const std::unique_ptr<StyleEntry>& entry) -> bool { return entry->ref_ <= 0; });


  auto end_iter3 =
  // Remove the entries at the end or else we'll be accessing a deleted string from the StyleEntry.
      std::remove_if(styles_.begin(), styles_.end(),
                     [](const std::unique_ptr<StyleEntry>& entry) -> bool {
                       return entry->ref_ <= 0;
                     });

  // Remove the entries at the end or else we'll be accessing
  // a deleted string from the StyleEntry.
  strings_.erase(end_iter2, strings_.end());
  strings_.erase(end_iter2, strings_.end());
  styles_.erase(end_iter3, styles_.end());
  styles_.erase(end_iter3, styles_.end());


  // Reassign the indices.
  ReAssignIndices();
  const size_t len = strings_.size();
  for (size_t index = 0; index < len; index++) {
    strings_[index]->index = index;
  }
}
}


void StringPool::Sort(
template <typename E>
    const std::function<bool(const Entry&, const Entry&)>& cmp) {
static void SortEntries(
  std::sort(
    std::vector<std::unique_ptr<E>>& entries,
      strings_.begin(), strings_.end(),
    const std::function<int(const StringPool::Context&, const StringPool::Context&)>& cmp) {
      [&cmp](const std::unique_ptr<Entry>& a,
  using UEntry = std::unique_ptr<E>;
             const std::unique_ptr<Entry>& b) -> bool { return cmp(*a, *b); });


  // Assign the indices.
  if (cmp != nullptr) {
  const size_t len = strings_.size();
    std::sort(entries.begin(), entries.end(), [&cmp](const UEntry& a, const UEntry& b) -> bool {
  for (size_t index = 0; index < len; index++) {
      int r = cmp(a->context, b->context);
    strings_[index]->index = index;
      if (r == 0) {
        r = a->value.compare(b->value);
      }
      }

      return r < 0;
  // Reorder the styles.
  std::sort(styles_.begin(), styles_.end(),
            [](const std::unique_ptr<StyleEntry>& lhs,
               const std::unique_ptr<StyleEntry>& rhs) -> bool {
              return lhs->str.index() < rhs->str.index();
    });
    });
  } else {
    std::sort(entries.begin(), entries.end(),
              [](const UEntry& a, const UEntry& b) -> bool { return a->value < b->value; });
  }
}

void StringPool::Sort(const std::function<int(const Context&, const Context&)>& cmp) {
  SortEntries(styles_, cmp);
  SortEntries(strings_, cmp);
  ReAssignIndices();
}
}


template <typename T>
template <typename T>
@@ -327,43 +334,15 @@ static size_t EncodedLengthUnits(size_t length) {
  return length > kMaxSize ? 2 : 1;
  return length > kMaxSize ? 2 : 1;
}
}


bool StringPool::Flatten(BigBuffer* out, const StringPool& pool, bool utf8) {
static void EncodeString(const std::string& str, const bool utf8, BigBuffer* out) {
  const size_t start_index = out->size();
  android::ResStringPool_header* header =
      out->NextBlock<android::ResStringPool_header>();
  header->header.type = android::RES_STRING_POOL_TYPE;
  header->header.headerSize = sizeof(*header);
  header->stringCount = pool.size();
  if (utf8) {
  if (utf8) {
    header->flags |= android::ResStringPool_header::UTF8_FLAG;
    const std::string& encoded = str;
  }
    const ssize_t utf16_length =

        utf8_to_utf16_length(reinterpret_cast<const uint8_t*>(str.data()), str.size());
  uint32_t* indices =
      pool.size() != 0 ? out->NextBlock<uint32_t>(pool.size()) : nullptr;

  uint32_t* style_indices = nullptr;
  if (!pool.styles_.empty()) {
    header->styleCount = pool.styles_.back()->str.index() + 1;
    style_indices = out->NextBlock<uint32_t>(header->styleCount);
  }

  const size_t before_strings_index = out->size();
  header->stringsStart = before_strings_index - start_index;

  for (const auto& entry : pool) {
    *indices = out->size() - before_strings_index;
    indices++;

    if (utf8) {
      const std::string& encoded = entry->value;
      const ssize_t utf16_length = utf8_to_utf16_length(
          reinterpret_cast<const uint8_t*>(entry->value.data()),
          entry->value.size());
    CHECK(utf16_length >= 0);
    CHECK(utf16_length >= 0);


    const size_t total_size = EncodedLengthUnits<char>(utf16_length) +
    const size_t total_size = EncodedLengthUnits<char>(utf16_length) +
                                EncodedLengthUnits<char>(encoded.length()) +
                              EncodedLengthUnits<char>(encoded.length()) + encoded.size() + 1;
                                encoded.size() + 1;


    char* data = out->NextBlock<char>(total_size);
    char* data = out->NextBlock<char>(total_size);


@@ -375,12 +354,11 @@ bool StringPool::Flatten(BigBuffer* out, const StringPool& pool, bool utf8) {
    strncpy(data, encoded.data(), encoded.size());
    strncpy(data, encoded.data(), encoded.size());


    } else {
    } else {
      const std::u16string encoded = util::Utf8ToUtf16(entry->value);
      const std::u16string encoded = util::Utf8ToUtf16(str);
      const ssize_t utf16_length = encoded.size();
      const ssize_t utf16_length = encoded.size();


      // Total number of 16-bit words to write.
      // Total number of 16-bit words to write.
      const size_t total_size =
      const size_t total_size = EncodedLengthUnits<char16_t>(utf16_length) + encoded.size() + 1;
          EncodedLengthUnits<char16_t>(utf16_length) + encoded.size() + 1;


      char16_t* data = out->NextBlock<char16_t>(total_size);
      char16_t* data = out->NextBlock<char16_t>(total_size);


@@ -397,30 +375,54 @@ bool StringPool::Flatten(BigBuffer* out, const StringPool& pool, bool utf8) {
    }
    }
}
}


  out->Align4();
bool StringPool::Flatten(BigBuffer* out, const StringPool& pool, bool utf8) {
  const size_t start_index = out->size();
  android::ResStringPool_header* header = out->NextBlock<android::ResStringPool_header>();
  header->header.type = util::HostToDevice16(android::RES_STRING_POOL_TYPE);
  header->header.headerSize = util::HostToDevice16(sizeof(*header));
  header->stringCount = util::HostToDevice32(pool.size());
  header->styleCount = util::HostToDevice32(pool.styles_.size());
  if (utf8) {
    header->flags |= android::ResStringPool_header::UTF8_FLAG;
  }


  if (!pool.styles_.empty()) {
  uint32_t* indices = pool.size() != 0 ? out->NextBlock<uint32_t>(pool.size()) : nullptr;
    const size_t before_styles_index = out->size();
  uint32_t* style_indices =
    header->stylesStart = before_styles_index - start_index;
      pool.styles_.size() != 0 ? out->NextBlock<uint32_t>(pool.styles_.size()) : nullptr;


    size_t current_index = 0;
  const size_t before_strings_index = out->size();
    for (const auto& entry : pool.styles_) {
  header->stringsStart = before_strings_index - start_index;
      while (entry->str.index() > current_index) {
        style_indices[current_index++] = out->size() - before_styles_index;


        uint32_t* span_offset = out->NextBlock<uint32_t>();
  // Styles always come first.
        *span_offset = android::ResStringPool_span::END;
  for (const std::unique_ptr<StyleEntry>& entry : pool.styles_) {
    *indices++ = out->size() - before_strings_index;
    EncodeString(entry->value, utf8, out);
  }
  }
      style_indices[current_index++] = out->size() - before_styles_index;


  for (const std::unique_ptr<Entry>& entry : pool.strings_) {
    *indices++ = out->size() - before_strings_index;
    EncodeString(entry->value, utf8, out);
  }

  out->Align4();

  if (style_indices != nullptr) {
    const size_t before_styles_index = out->size();
    header->stylesStart = util::HostToDevice32(before_styles_index - start_index);

    for (const std::unique_ptr<StyleEntry>& entry : pool.styles_) {
      *style_indices++ = out->size() - before_styles_index;

      if (!entry->spans.empty()) {
        android::ResStringPool_span* span =
        android::ResStringPool_span* span =
            out->NextBlock<android::ResStringPool_span>(entry->spans.size());
            out->NextBlock<android::ResStringPool_span>(entry->spans.size());
      for (const auto& s : entry->spans) {
        for (const Span& s : entry->spans) {
        span->name.index = s.name.index();
          span->name.index = util::HostToDevice32(s.name.index());
        span->firstChar = s.first_char;
          span->firstChar = util::HostToDevice32(s.first_char);
        span->lastChar = s.last_char;
          span->lastChar = util::HostToDevice32(s.last_char);
          span++;
          span++;
        }
        }
      }


      uint32_t* spanEnd = out->NextBlock<uint32_t>();
      uint32_t* spanEnd = out->NextBlock<uint32_t>();
      *spanEnd = android::ResStringPool_span::END;
      *spanEnd = android::ResStringPool_span::END;
@@ -436,7 +438,7 @@ bool StringPool::Flatten(BigBuffer* out, const StringPool& pool, bool utf8) {
    memset(padding, 0xff, padding_length);
    memset(padding, 0xff, padding_length);
    out->Align4();
    out->Align4();
  }
  }
  header->header.size = out->size() - start_index;
  header->header.size = util::HostToDevice32(out->size() - start_index);
  return true;
  return true;
}
}


Loading