Searched defs:with (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/ui/
H A DRect.cpp5 * you may not use this file except in compliance with the License.
86 bool Rect::intersect(const Rect& with, Rect* result) const argument
88 result->left = max(left, with.left);
89 result->top = max(top, with.top);
90 result->right = min(right, with.right);
91 result->bottom = min(bottom, with.bottom);

Completed in 60 milliseconds