Lines Matching refs:prototype

30 PsParser.prototype.init=init;PsParser.prototype.peek=peek;PsParser.prototype.token=token;return this}
39 Ps0.prototype.run=run;Ps0.prototype.exec=exec;Ps0.prototype.step=step;Ps0.prototype.parse=parse;return this}
70 Wps.prototype.parse=parse;return this}
114 Psvg.prototype.strw=strw;function arc(x,y,r,a1,a2,arcn){var x1,y1,x2,y2
137 Psvg.prototype.arc=arc
138 Psvg.prototype.arcn=function(x,y,r,a1,a2){arc(x,y,r,a1,a2,true)}
139 Psvg.prototype.closepath=function(){if(path&&gcur.cx)
141 Psvg.prototype.cx=function(){return gcur.cx}
142 Psvg.prototype.cy=function(){return gcur.cy}
143 Psvg.prototype.curveto=function(x1,y1,x2,y2,x,y){path_def();path+="\tC"+
147 Psvg.prototype.eofill=function(){path_end();svgbuf+='" fill-rule="evenodd" fill="currentColor"/>\n'}
148 Psvg.prototype.fill=function(){path_end();svgbuf+='" fill="currentColor"/>\n'}
149 Psvg.prototype.gsave=function(){gc_stack.push(objdup(gcur))}
150 Psvg.prototype.grestore=function(){gcur=gc_stack.pop();gchg=true}
151 Psvg.prototype.lineto=function(x,y){path_def()
159 Psvg.prototype.moveto=function(x,y){gcur.cx=x;gcur.cy=y
162 Psvg.prototype.newpath=function(){gcur.cx=gcur.cy=undefined}
163 Psvg.prototype.rcurveto=function(x1,y1,x2,y2,x,y){path_def();path+="\tc"+
175 Psvg.prototype.rlineto=rlineto;Psvg.prototype.rmoveto=function(x,y){if(path){path+="\tm"+x.toFixed(1)+" "+
178 Psvg.prototype.rotate=function(a){setg(0)
185 Psvg.prototype.scale=function(sx,sy){gcur.xoffs/=sx;gcur.yoffs/=sy;gcur.cx/=sx;gcur.cy/=sy;gcur.xscale*=sx;gcur.yscale*=sy;gchg=true}
186 Psvg.prototype.selectfont=function(s,h){s=s.nm;if(font_s!=h||s!=font_n){gcur.font_n_old=gcur.font_n;gcur.font_n=s;gcur.font_s=h;gchg=true}}
187 Psvg.prototype.setdash=function(a,o){var n=a.length,i
196 Psvg.prototype.setlinewidth=function(w){gcur.linewidth=w}
197 Psvg.prototype.setrgbcolor=function(r,g,b){var rgb=0x1000000+
202 Psvg.prototype.show=function(s){var span,x,y
218 Psvg.prototype.stroke=function(){path_end()
221 Psvg.prototype.translate=function(x,y){gcur.xoffs+=x;gcur.yoffs-=y;gcur.cx-=x;gcur.cy-=y}
222 Psvg.prototype.arp=function(val,x,y){var xy=getorig();ps_flush();abcobj.out_arp((x+xy[0])*abcobj.stv_g().scale,y-xy[1],val)}
223 Psvg.prototype.ltr=function(val,x,y){var xy=getorig();ps_flush();abcobj.out_ltr((x+xy[0])*abcobj.stv_g().scale,y-xy[1],val)}
224 Psvg.prototype.xygl=function(x,y,gl){var xy=getorig();ps_flush();abcobj.xygl((x+xy[0])*abcobj.stv_g().scale,y-xy[1],gl)}
225 Psvg.prototype.xygls=function(str,x,y,gl){var xy=getorig();ps_flush();abcobj.out_deco_str((x+xy[0])*abcobj.stv_g().scale,y-xy[1],gl,str)}
226 Psvg.prototype.xyglv=function(val,x,y,gl){var xy=getorig();ps_flush();abcobj.out_deco_val((x+xy[0])*abcobj.stv_g().scale,y-xy[1],gl,val)}
227 Psvg.prototype.y0=function(y){var staff_tb=abcobj.get_staff_tb()
229 Psvg.prototype.y1=function(y){var staff_tb=abcobj.get_staff_tb()
235 Psvg.prototype.ps_flush=ps_flush
236 Psvg.prototype.ps_eval=function(txt){wps.parse(txt);ps_flush(true)}
240 Psvg.prototype.psdeco=function(f,x,y,de){var dd,de2,script,defl,Os=wps.parse('/'+f+' where'),A=Os.pop(),staff_tb=abcobj.get_staff_tb()
255 Psvg.prototype.psxygl=function(x,y,gl){var Os=wps.parse('/'+gl+' where'),A=Os.pop()
260 Psvg.prototype.svgcall=function(f,x,y,v1,v2){var xy=getorig();ps_flush();f((x+xy[0])*abcobj.stv_g().scale,y-xy[1],v1,v2)}