Home
last modified time | relevance | path

Searched refs:intersect (Results 1 – 10 of 10) sorted by relevance

/system/teeui/test/
Dteeui_test.cpp35 auto result = intersect(a, b, c, d); in TEST()
44 result = intersect(a, b, c, d); in TEST()
46 result = intersect(c, d, a, b); in TEST()
53 result = intersect(a, b, c, d); in TEST()
55 result = intersect(c, d, a, b); in TEST()
62 result = intersect(a, b, c, d); in TEST()
64 result = intersect(c, d, a, b); in TEST()
72 result = intersect(a, b, c, d); in TEST()
74 result = intersect(c, d, a, b); in TEST()
81 result = intersect(a, b, c, d); in TEST()
[all …]
/system/linkerconfig/modules/
Dapex.cc74 std::vector<std::string> intersect; in Intersect() local
77 std::back_inserter(intersect), in Intersect()
79 return intersect; in Intersect()
/system/teeui/libteeui/src/
Dutils.cpp128 optional<PxPoint> intersect(const PxVec& a, const PxPoint& b, const PxVec& c, const PxPoint& d) { in intersect() function
155 ssize_t intersect(const PxPoint* oBegin, const PxPoint* oEnd, const PxPoint& lineA, in intersect() function
173 if (auto p = intersect(line, lineA, segment, a)) { in intersect()
Dbutton.cpp181 auto coveredRegion = thePixel.intersect<10>(co.begin, co.end); in draw()
/system/tools/hidl/
DLocation.h69 static bool intersect(const Location& lhs, const Location& rhs);
DLocation.cpp85 bool Location::intersect(const Location& lhs, const Location& rhs) { in intersect() function in android::Location
DType.cpp307 (!Location::intersect(refLoc, typeLoc) && typeLoc < refLoc)) { in checkForwardReferenceRestrictions()
/system/teeui/libteeui/include/teeui/
Dutils.h624 optional<PxPoint> intersect(const PxVec& a, const PxPoint& b, const PxVec& c, const PxPoint& d);
634 ssize_t intersect(const PxPoint* oBegin, const PxPoint* oEnd, const PxPoint& lineA,
675 optional<ConvexObject<result_cap>> intersect(const PxPoint& A, const PxPoint& B) const {
680 bits::intersect(begin(), end(), A, B, &result.points_[0], &result.points_[result_cap]);
692 optional<ConvexObject<result_cap>> intersect(const ConvexObject<arg_cap>& other) const {
693 return intersect<result_cap>(other.begin(), other.end());
697 optional<ConvexObject<result_cap>> intersect(const PxPoint* begin, const PxPoint* end) const {
701 auto result = intersect<result_cap>(*a, *b);
704 result = result->template intersect<result_cap>(*a, *b);
/system/core/fs_mgr/liblp/
Dbuilder.cpp689 auto intersect = Intersect(a_interval, b_interval); in Intersect() local
690 if (intersect.length() > 0) ret.emplace_back(std::move(intersect)); in Intersect()
/system/core/fs_mgr/libsnapshot/
Dsnapshot_test.cpp1493 auto intersect = Interval::Intersect(cow_intervals, old_intervals); in TEST_F() local
1494 ASSERT_TRUE(intersect.empty()) << "COW uses space of source partitions"; in TEST_F()