Lines Matching refs:rects
306 HRESULT createMatchEnumerator(Vector<IntRect>* rects, IEnumTextMatches** matches);
900 // This emulates the Mac smarts for painting rects intelligently. This is very
901 // important for us, since we double buffer based off dirty rects.
902 static void getUpdateRects(HRGN region, const IntRect& dirtyRect, Vector<IntRect>& rects)
909 rects.clear();
913 rects.append(dirtyRect);
921 rects.append(dirtyRect);
934 rects.append(dirtyRect);
939 rects.append(*rect);
6512 EnumTextMatches(Vector<IntRect>* rects) : m_index(0), m_ref(1)
6514 m_rects = *rects;
6573 HRESULT createMatchEnumerator(Vector<IntRect>* rects, IEnumTextMatches** matches)
6575 *matches = new EnumTextMatches(rects);