Lines Matching defs:out
17 std::wostringstream* out) {
20 *out << L' ';
21 *out << base::UTF8ToWide(view->GetClassName());
22 *out << L' ';
23 *out << view->id();
24 *out << L' ';
25 *out << view->x() << L"," << view->y() << L",";
26 *out << view->bounds().right() << L"," << view->bounds().bottom();
27 *out << L' ';
28 *out << view;
29 *out << L'\n';
32 PrintViewHierarchyImp(view->child_at(i), indent + 2, out);
37 std::wostringstream* out) {
40 *out << L' ';
41 *out << base::UTF8ToWide(view->GetClassName());
42 *out << L' ';
43 *out << view->id();
44 *out << L' ';
45 *out << view->GetClassName();
46 *out << L' ';
47 *out << view;
48 *out << L'\n';
51 PrintFocusHierarchyImp(view->child_at(0), indent + 2, out);
55 PrintFocusHierarchyImp(next_focusable, indent, out);
60 std::wostringstream out;
61 out << L"View hierarchy:\n";
62 PrintViewHierarchyImp(view, 0, &out);
64 LOG(ERROR) << out.str();
68 std::wostringstream out;
69 out << L"Focus hierarchy:\n";
70 PrintFocusHierarchyImp(view, 0, &out);
72 LOG(ERROR) << out.str();