Lines Matching refs:contents
47 unique_ptr<string> contents; in GetFileContents() local
50 return contents; in GetFileContents()
52 contents.reset(new string); in GetFileContents()
53 *contents = it->second; in GetFileContents()
54 contents->append(content_suffix); in GetFileContents()
56 return contents; in GetFileContents()
88 const string& contents) { in SetFileContents() argument
89 file_contents_[filename] = contents; in SetFileContents()
107 string contents; in AddStubParcelable() local
109 contents = StringPrintf("package %s;\nparcelable %s;", in AddStubParcelable()
112 contents = StringPrintf("package %s;\nparcelable %s cpp_header \"%s\";", in AddStubParcelable()
116 SetFileContents(rel_path, contents); in AddStubParcelable()
122 string contents = StringPrintf("package %s;\ninterface %s { }", in AddStubInterface() local
124 SetFileContents(rel_path, contents); in AddStubInterface()
131 string contents = StringPrintf("package %s;\n", package.c_str()); in AddCompoundParcelable() local
133 StringAppendF(&contents, "parcelable %s.%s;\n", in AddCompoundParcelable()
136 SetFileContents(rel_path, contents); in AddCompoundParcelable()
156 for (const auto& [file, contents] : written_file_contents_) { in ListOutputFiles()