Home
last modified time | relevance | path

Searched refs:pathsegs (Results 1 – 6 of 6) sorted by relevance

/dports/net-mgmt/mrtg/mrtg-2.17.4/contrib/mrtg-archiver-script/
H A Dmrtgnav10 my (@dirs, @pathsegs);
19 @pathsegs = $rf->path_segments;
21 $file = $pathsegs[-1];
22 $subdir = $pathsegs[-2];
23 $basedir = join('/', @pathsegs[0..$#pathsegs-2]);
/dports/www/py-nevow/Nevow-0.14.0/nevow/
H A Durl.py61 def __init__(self, scheme='http', netloc='localhost', pathsegs=None, argument
65 if pathsegs is None:
66 pathsegs = ['']
67 self._qpathlist = pathsegs
116 def cloneURL(self, scheme, netloc, pathsegs, querysegs, fragment): argument
121 return self.__class__(scheme, netloc, pathsegs, querysegs, fragment)
/dports/www/py-nevow/Nevow-0.14.0/nevow/test/
H A Dtest_url.py74 self, magicValue, scheme, netloc, pathsegs, querysegs, fragment): argument
75 url.URL.__init__(self, scheme, netloc, pathsegs, querysegs, fragment)
79 def cloneURL(self, scheme, netloc, pathsegs, querysegs, fragment): argument
84 self.magicValue, scheme, netloc, pathsegs, querysegs, fragment)
221 pathsegs=['a', 'b']).child("c")))
/dports/math/py-matplotlib/matplotlib-3.4.3/lib/mpl_toolkits/mplot3d/
H A Dart3d.py233 pathsegs = path.iter_segments(simplify=False, curves=False)
234 seg = [(x, y, z) for (((x, y), code), z) in zip(pathsegs, zs)]
257 pathsegs = path.iter_segments(simplify=False, curves=False)
258 seg_codes = [((x, y, z), code) for ((x, y), code), z in zip(pathsegs, zs)]
/dports/math/py-matplotlib2/matplotlib-2.2.4/lib/mpl_toolkits/mplot3d/
H A Dart3d.py151 pathsegs = path.iter_segments(simplify=False, curves=False)
152 seg = [(x, y, z) for (((x, y), code), z) in zip(pathsegs, zs)]
174 pathsegs = path.iter_segments(simplify=False, curves=False)
175 for (((x, y), code), z) in zip(pathsegs, zs):
/dports/cad/xcircuit/xcircuit-3.10.30/
H A Dfunctions.c2626 int pathsegs = 0, curseg = 0; in UDrawPath() local
2639 pathsegs += thepoly->number; in UDrawPath()
2640 tmppoints = (pointlist) realloc(tmppoints, pathsegs * sizeof(XPoint)); in UDrawPath()
2642 curseg = pathsegs; in UDrawPath()
2646 pathsegs += SPLINESEGS; in UDrawPath()
2647 tmppoints = (pointlist) realloc(tmppoints, pathsegs * sizeof(XPoint)); in UDrawPath()
2649 curseg = pathsegs; in UDrawPath()
2655 strokepath(tmppoints, pathsegs, thepath->style, scaledwidth); in UDrawPath()