Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/cmd/
DDiff.cpp107 std::stringstream str_stream; in EmitResourceConfigValueDiff() local
108 str_stream << "value " << pkg_a.name << ":" << type_a.type << "/" << entry_a.name in EmitResourceConfigValueDiff()
110 value_a->Print(&str_stream); in EmitResourceConfigValueDiff()
111 str_stream << "\n vs \n"; in EmitResourceConfigValueDiff()
112 value_b->Print(&str_stream); in EmitResourceConfigValueDiff()
113 EmitDiffLine(apk_b->GetSource(), str_stream.str()); in EmitResourceConfigValueDiff()
130 std::stringstream str_stream; in EmitResourceEntryDiff() local
131 str_stream << "missing " << pkg_a.name << ":" << type_a.type << "/" << entry_a.name in EmitResourceEntryDiff()
133 EmitDiffLine(apk_b->GetSource(), str_stream.str()); in EmitResourceEntryDiff()
145 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()