Lines Matching refs:p

142             var i, len, p, objN, args = arguments;
145 for( p in objN ) {
146 if( objN.hasOwnProperty( p ) ) {
147 obj1[ p ] = objN[ p ];
200 p, UNDEF;
240p = PIE.GradientUtil.perpendicularIntersect( startX, startY, angle, endCornerX, endCornerY );
241 endX = p[0];
242 endY = p[1];
1844 var p = null, x, y,
1885 p = { x: x, y : y }; class in AnonymousFunctiona083a8e11900
1890 return p;
1911 var p = null, tokenizer, token, type, value,
1921 p = {};
1936 if( isFillIdent( tokenizer.next() ) && !p.fill ) {
1937 p.fill = true;
1968 else if( isFillIdent( token ) && !p.fill ) {
1969 p.fill = true;
1974 else if( ( type & IDENT ) && this.repeatIdents[value] && !p.repeat ) {
1975 p.repeat = { h: value };
1978 p.repeat.v = token.tokenValue;
1986 else if( ( type & Type.URL ) && !p.src ) {
1987 p.src = value;
1997 if( !p.src || !slices || slices.length < 1 || slices.length > 4 ||
2004 if( !p.repeat ) {
2005 p.repeat = { h: 'stretch' };
2007 if( !p.repeat.v ) {
2008 p.repeat.v = p.repeat.h;
2020 p.slice = distributeSides( slices, function( tok ) {
2025 p.widths = distributeSides( widths, function( tok ) {
2031 p.outset = distributeSides( outsets, function( tok ) {
2037 return p;
2822 p, i, j, before, after;
2841 p = perpendicularIntersect( startCornerX, startCornerY, angle, endCornerX, endCornerY );
2842 vmlGradientLength = distance( startCornerX, startCornerY, p[0], p[1] );
2844 p = perpendicularIntersect( startX, startY, angle, startCornerX, startCornerY );
2845 vmlOffsetPct = distance( startX, startY, p[0], p[1] ) / vmlGradientLength * 100;