line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
MODULE = Geo::Geos PACKAGE = Geo::Geos::Prep::Geometry |
2
|
|
|
|
|
|
|
PROTOTYPES: DISABLE |
3
|
|
|
|
|
|
|
|
4
|
0
|
|
|
|
|
|
Geometry* BasicPreparedGeometry::getGeometry () { RETVAL = THIS->getGeometry().clone(); } |
5
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
6
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::contains (Geometry& geom) { RETVAL = THIS->contains(&geom); } |
7
|
|
|
|
|
|
|
|
8
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::containsProperly (Geometry& geom) { RETVAL = THIS->containsProperly(&geom); } |
9
|
|
|
|
|
|
|
|
10
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::coveredBy (Geometry& geom) { RETVAL = THIS->coveredBy(&geom); } |
11
|
|
|
|
|
|
|
|
12
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::covers (Geometry& geom) { RETVAL = THIS->covers(&geom); } |
13
|
|
|
|
|
|
|
|
14
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::crosses (Geometry& geom) { RETVAL = THIS->crosses(&geom); } |
15
|
|
|
|
|
|
|
|
16
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::disjoint (Geometry& geom) { RETVAL = THIS->disjoint(&geom); } |
17
|
|
|
|
|
|
|
|
18
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::intersects (Geometry& geom) { RETVAL = THIS->intersects(&geom); } |
19
|
|
|
|
|
|
|
|
20
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::overlaps (Geometry& geom) { RETVAL = THIS->overlaps(&geom); } |
21
|
|
|
|
|
|
|
|
22
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::touches (Geometry& geom) { RETVAL = THIS->touches(&geom); } |
23
|
|
|
|
|
|
|
|
24
|
1
|
50
|
|
|
|
|
bool BasicPreparedGeometry::within (Geometry& geom) { RETVAL = THIS->within(&geom); } |
25
|
|
|
|
|
|
|
|
26
|
4
|
50
|
|
|
|
|
std::string BasicPreparedGeometry::toString (...) |
|
|
50
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
0
|
|
|
|
|
|
int CLONE_SKIP (...) { PERL_UNUSED_VAR(items); RETVAL = 1; } |