| 52 | } |
| 53 | |
| 54 | static bool _checkVisibility(Node* theNode) |
| 55 | { |
| 56 | // AX_ASSERT(theNode != NULL); |
| 57 | bool visible = false; |
| 58 | for (Node* ptr = theNode; (ptr != nullptr && (visible = ptr->isVisible())); ptr = ptr->getParent()) |
| 59 | ; |
| 60 | return visible; |
| 61 | } |
| 62 | |
| 63 | static bool _containsTouchPoint(ax::Node* target, ax::Touch* touch) |
| 64 | { |
no test coverage detected