Lines Matching refs:layout_bounds
221 const std::vector<Range>& layout_bounds, in PopulateBounds() argument
245 if (layout_bounds.size() > 2) { in PopulateBounds()
254 if (layout_bounds.size() >= 1) { in PopulateBounds()
255 const Range& range = layout_bounds.front(); in PopulateBounds()
267 if (layout_bounds.size() >= 2) { in PopulateBounds()
268 const Range& range = layout_bounds.back(); in PopulateBounds()
517 &nine_patch->padding.right, &nine_patch->layout_bounds.left, in Create()
518 &nine_patch->layout_bounds.right, "bottom", out_err)) { in Create()
530 &nine_patch->padding.bottom, &nine_patch->layout_bounds.top, in Create()
531 &nine_patch->layout_bounds.bottom, "right", out_err)) { in Create()
614 memcpy(cursor, &layout_bounds.left, sizeof(layout_bounds.left)); in SerializeLayoutBounds()
615 cursor += sizeof(layout_bounds.left); in SerializeLayoutBounds()
617 memcpy(cursor, &layout_bounds.top, sizeof(layout_bounds.top)); in SerializeLayoutBounds()
618 cursor += sizeof(layout_bounds.top); in SerializeLayoutBounds()
620 memcpy(cursor, &layout_bounds.right, sizeof(layout_bounds.right)); in SerializeLayoutBounds()
621 cursor += sizeof(layout_bounds.right); in SerializeLayoutBounds()
623 memcpy(cursor, &layout_bounds.bottom, sizeof(layout_bounds.bottom)); in SerializeLayoutBounds()
624 cursor += sizeof(layout_bounds.bottom); in SerializeLayoutBounds()
677 << " padding: " << nine_patch.padding << ", bounds: " << nine_patch.layout_bounds in operator <<()