Lines Matching full:son
43 FX_BOOL CFFL_Utils::RectContainsRect(const CPDF_Rect & father,const CPDF_Rect & son)
45 return (father.left <= son.left && father.right >= son.right &&
46 father.bottom <= son.bottom && father.top >= son.top);
50 FX_BOOL CFFL_Utils::RectContainsPoint(const CPDF_Rect & father,const CPDF_Point & son)
52 return (father.left <= son.x && father.right >= son.x &&
53 father.bottom <= son.y && father.top >= son.y);