Searched refs:map_slot (Results 1 – 3 of 3) sorted by relevance
121 std::string** map_slot = &files_[filename]; in Open() local122 delete *map_slot; in Open()123 *map_slot = new std::string; in Open()125 return new io::StringOutputStream(*map_slot); in Open()
101 auto& map_slot = files_[filename]; in Open() local102 map_slot.reset(new std::string); in Open()103 return new io::StringOutputStream(map_slot.get()); in Open()
572 std::string** map_slot = &files_["META-INF/MANIFEST.MF"]; in AddJarManifest() local573 if (*map_slot == NULL) { in AddJarManifest()574 *map_slot = new std::string( in AddJarManifest()667 std::string** map_slot = &directory_->files_[filename_]; in ~MemoryOutputStream() local671 if (*map_slot != NULL) { in ~MemoryOutputStream()673 (*map_slot)->append(data_); in ~MemoryOutputStream()682 *map_slot = new std::string; in ~MemoryOutputStream()683 (*map_slot)->swap(data_); in ~MemoryOutputStream()693 if (*map_slot == NULL) { in ~MemoryOutputStream()700 std::string* target = *map_slot; in ~MemoryOutputStream()[all …]