Lines Matching refs:output
105 static void dumpMatrix(std::ostream& output, std::string& indent, const char* label, in dumpMatrix() argument
108 output << indent << "(" << label << " " << matrix << ": "; in dumpMatrix()
109 output << std::fixed << std::setprecision(2); in dumpMatrix()
110 output << "[" << matrix->get(0) << " " << matrix->get(1) << " " << matrix->get(2) << "]"; in dumpMatrix()
111 output << " [" << matrix->get(3) << " " << matrix->get(4) << " " << matrix->get(5) << "]"; in dumpMatrix()
112 output << " [" << matrix->get(6) << " " << matrix->get(7) << " " << matrix->get(8) << "]"; in dumpMatrix()
113 output << ")" << std::endl; in dumpMatrix()
117 void RenderProperties::debugOutputProperties(std::ostream& output, const int level) const { in debugOutputProperties() argument
120 output << indent << "(Translate (left, top) " << mPrimitiveFields.mLeft << ", " in debugOutputProperties()
123 dumpMatrix(output, indent, "ConcatMatrix (static)", mStaticMatrix); in debugOutputProperties()
124 dumpMatrix(output, indent, "ConcatMatrix (animation)", mAnimationMatrix); in debugOutputProperties()
126 output << std::fixed << std::setprecision(2); in debugOutputProperties()
129 output << indent << "(Translate " << getTranslationX() << ", " << getTranslationY() in debugOutputProperties()
132 dumpMatrix(output, indent, "ConcatMatrix ", mComputedFields.mTransformMatrix); in debugOutputProperties()
145 output << indent << "(ScaleAlpha " << mPrimitiveFields.mAlpha << ")" << std::endl; in debugOutputProperties()
153 output << indent << "(SaveLayerAlpha " << (int)layerBounds.left << ", " in debugOutputProperties()
164 output << indent << "(ClipRect " << (int)clipRect.left << ", " << (int)clipRect.top << ", " in debugOutputProperties()
171 output << indent << "(Clip to reveal clip with bounds " << bounds.left << ", " << bounds.top in debugOutputProperties()
178 output << indent << "(Clip to empty outline)"; in debugOutputProperties()
181 output << indent << "(Clip to outline with bounds " << bounds.left << ", " << bounds.top in debugOutputProperties()