Home
last modified time | relevance | path

Searched refs:str_stream (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/cmd/
DDiff.cpp101 std::stringstream str_stream; in EmitResourceConfigValueDiff() local
102 str_stream << "value " << pkg_a->name << ":" << type_a->type << "/" << entry_a->name in EmitResourceConfigValueDiff()
104 value_a->Print(&str_stream); in EmitResourceConfigValueDiff()
105 str_stream << "\n vs \n"; in EmitResourceConfigValueDiff()
106 value_b->Print(&str_stream); in EmitResourceConfigValueDiff()
107 EmitDiffLine(apk_b->GetSource(), str_stream.str()); in EmitResourceConfigValueDiff()
122 std::stringstream str_stream; in EmitResourceEntryDiff() local
123 str_stream << "missing " << pkg_a->name << ":" << type_a->type << "/" << entry_a->name in EmitResourceEntryDiff()
125 EmitDiffLine(apk_b->GetSource(), str_stream.str()); in EmitResourceEntryDiff()
138 std::stringstream str_stream; in EmitResourceEntryDiff() local
[all …]
/frameworks/base/tools/aapt2/
DResource.cpp39 std::ostringstream str_stream; in to_string() local
41 str_stream << package << ":"; in to_string()
43 str_stream << type << "/" << entry; in to_string()
44 return str_stream.str(); in to_string()
DResourceValues.cpp40 std::ostringstream str_stream; in PrettyPrint() local
41 Print(&str_stream); in PrettyPrint()
42 printer->Print(str_stream.str()); in PrettyPrint()