MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / contains

Method contains

native/Base.cpp:100–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 }
99
100 bool Rect::contains(const Point &point) const {
101 return point.x >= this->left && point.x <= this->right
102 && point.y >= this->top && point.y <= this->bottom;
103 }
104
105 uintptr_t Rect::hash() const {
106 return (31U * std::hash<int>{}(top) << 1 ^ std::hash<int>{}(bottom) << 2) ^

Callers 15

generateClickEventAtMethod · 0.95
getAiPathFromAPKMethod · 0.80
getAiPathLocallyMethod · 0.80
commandLineReportMethod · 0.80
appCrashedMethod · 0.80
isAppCrashMethod · 0.80
isInputMethodMethod · 0.80
isPackageValidMethod · 0.80
isPackageInvalidMethod · 0.80
checkEnteringPackageMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected