Lines Matching refs:h

2314 					pdfDoc.roundedRect(vector.x, vector.y, vector.w, vector.h, vector.r);
2316 pdfDoc.rect(vector.x, vector.y, vector.w, vector.h);
14501 var w = 0, h = 0;
14509 h = Math.max(h, vector.y + vector.r2);
14513 h = Math.max(h, vector.y + vector.h);
14517 h = Math.max(h, vector.y1, vector.y2);
14522 h = Math.max(h, vector.points[i2].y);
14529 node._minHeight = node._maxHeight = h;
15602 var blit = function(y, x, h, w, bits) {
15603 for (var i = 0; i < h; ++i) {
15900 x: 0, y: 0, w: size, h: size, lineWidth: 0, color: background
15911 h: modSize,
16938 h: y2+this.bottomLineWidth-yf,
23400 var h; /* heap index */
23416 for (h = s.heap_max+1; h < HEAP_SIZE; h++) {
23417 n = s.heap[h];
23465 m = s.heap[--h];
28461 rect: function(x, y, w, h) {
28462 return this.addContent("" + x + " " + y + " " + w + " " + h + " re");
28464 roundedRect: function(x, y, w, h, r) {
28471 this.lineTo(x + w, y + h - r);
28472 this.quadraticCurveTo(x + w, y + h, x + w - r, y + h);
28473 this.lineTo(x + r, y + h);
28474 this.quadraticCurveTo(x, y + h, x, y + h - r);
28653 h: 1,
28882 h: function(doc, a) {
65187 var bh, bp, bw, h, hp, image, ip, w, wp, _base, _name, _ref, _ref1, _ref2;
65211 h = options.height || image.height;
65215 h = image.height * wp;
65217 hp = h / image.height;
65219 h = image.height * hp;
65222 h = image.height * options.scale;
65229 h = bw / ip;
65231 h = bh;
65240 y = y + bh / 2 - h / 2;
65242 y = y + bh - h;
65246 this.y += h;
65249 this.transform(w, 0, 0, -h, x, y + h);
65898 annotate: function(x, y, w, h, options) {
65901 options.Rect = this._convertRect(x, y, w, h);
65921 note: function(x, y, w, h, contents, options) {
65931 return this.annotate(x, y, w, h, options);
65933 link: function(x, y, w, h, url, options) {
65943 return this.annotate(x, y, w, h, options);
65945 _markup: function(x, y, w, h, options) {
65950 _ref = this._convertRect(x, y, w, h), x1 = _ref[0], y1 = _ref[1], x2 = _ref[2], y2 = _ref[3];
65953 return this.annotate(x, y, w, h, options);
65955 highlight: function(x, y, w, h, options) {
65963 return this._markup(x, y, w, h, options);
65965 underline: function(x, y, w, h, options) {
65970 return this._markup(x, y, w, h, options);
65972 strike: function(x, y, w, h, options) {
65977 return this._markup(x, y, w, h, options);
65988 rectAnnotation: function(x, y, w, h, options) {
65994 return this.annotate(x, y, w, h, options);
65996 ellipseAnnotation: function(x, y, w, h, options) {
66002 return this.annotate(x, y, w, h, options);
66004 textAnnotation: function(x, y, w, h, text, options) {
66011 return this.annotate(x, y, w, h, options);
66013 _convertRect: function(x1, y1, w, h) {
66016 y1 += h;