Lines Matching defs:std

33     ReferenceIdToNameVisitor(const std::map<ResourceId, ResourceNameRef>* mapping) :
51 const std::map<ResourceId, ResourceNameRef>* mMapping;
71 std::map<ResourceId, ResourceNameRef> idIndex;
159 std::unique_ptr<Item> deserializeItemFromPb(const pb::Item& pbItem,
164 std::unique_ptr<Reference> ref = util::make_unique<Reference>();
168 return std::move(ref);
219 std::unique_ptr<Value> deserializeValueFromPb(const pb::Value& pbValue,
224 std::unique_ptr<Value> value;
235 std::unique_ptr<Attribute> attr = util::make_unique<Attribute>(isWeak);
244 attr->symbols.push_back(std::move(symbol));
246 value = std::move(attr);
250 std::unique_ptr<Style> style = util::make_unique<Style>();
261 style->parent.value().setSource(std::move(parentSource));
278 style->entries.push_back(std::move(entry));
280 value = std::move(style);
284 std::unique_ptr<Styleable> styleable = util::make_unique<Styleable>();
289 styleable->entries.push_back(std::move(attrRef));
291 value = std::move(styleable);
295 std::unique_ptr<Array> array = util::make_unique<Array>();
297 std::unique_ptr<Item> item = deserializeItemFromPb(pbEntry.item(), config,
304 array->items.push_back(std::move(item));
306 value = std::move(array);
310 std::unique_ptr<Plural> plural = util::make_unique<Plural>();
321 value = std::move(plural);
370 outValue->setSource(std::move(source));
388 std::unique_ptr<ResourceTable> deserializeTableFromPb(const pb::ResourceTable& pbTable,
395 std::unique_ptr<ResourceTable> table = util::make_unique<ResourceTable>();
439 std::unique_ptr<ResourceFile> deserializeCompiledFileFromPb(const pb::CompiledFile& pbFile,
442 std::unique_ptr<ResourceFile> file = util::make_unique<ResourceFile>();
447 std::u16string utf16Name = util::utf8ToUtf16(pbFile.resource_name());
479 std::unique_ptr<pb::CompiledFile> pbFile = util::make_unique<pb::CompiledFile>();
497 mPbFile = std::move(pbFile);