Lines Matching refs:result

503 		result = o[0][ o[1] ];
505 return result.precedance ? result.string() : result;
958 var result = this.string().split(' ');
959 return result[0].charAt(0) + (result[1] && result[1].charAt(0) || '');
2174 bigHyp, ratio, result,
2185 result = [ round(ratio * width), round(ratio * height) ];
2186 return y ? result : result.reverse();
3047 var result = { class in PLUGINS.polys.polygon
3065 if(next[0] > result.position.right){ result.position.right = next[0]; }
3066 if(next[0] < result.position.left){ result.position.left = next[0]; }
3067 if(next[1] > result.position.bottom){ result.position.bottom = next[1]; }
3068 if(next[1] < result.position.top){ result.position.top = next[1]; }
3074 newWidth = result.width = Math.abs(result.position.right - result.position.left);
3075 newHeight = result.height = Math.abs(result.position.bottom - result.position.top);
3079 result.position = {
3080 left: result.position.left + (result.width / 2),
3081 top: result.position.top + (result.height / 2)
3092 else if(corner.x === RIGHT){ compareX = result.width - newWidth; }
3096 else if(corner.y === BOTTOM){ compareY = result.height - newHeight; }
3103 realX = coords[i][0] - result.position.left;
3104 realY = coords[i][1] - result.position.top;
3108 (corner.x === CENTER && (realX < compareX || realX > (result.width - compareX))) ||
3111 (corner.y === CENTER && (realY < compareY || realY > (result.height - compareY)))) {
3116 result.position = { left: coords[0][0], top: coords[0][1] };
3119 return result;
3166 result, position, dimensions;
3187 result = PLUGINS.polys.ellipse(
3205 for(result = [], i = -1, len = points.numberOfItems || points.length; ++i < len;) {
3207 result.push.apply(result, [next.x, next.y]);
3210 result = PLUGINS.polys.polygon(result, corner);
3215 result = elem.getBoundingClientRect();
3216 result = { class
3217 width: result.width, height: result.height,
3219 left: result.left,
3220 top: result.top
3228 position = result.position;
3256 return result;
3265 imageOffset, coords, i, next, result, len;
3272 result = PLUGINS.polys.polygon(coordsArray, corner);
3281 result = PLUGINS.polys[shape].apply(
3295 result.position.left += imageOffset.left;
3296 result.position.top += imageOffset.top;
3298 return result;