Lines Matching refs:text

36             new Processing(canvas, scripts[i].text);
47 new Processing(canvasArray[j], scripts[i].text);
3077 parseUnitSize: function (text) { argument
3078 var len = text.length - 2;
3079 if (len < 0) { return text; }
3080 if (text.indexOf("pt") === len) {
3081 return parseFloat(text.substring(0, len)) * 1.25;
3082 } else if (text.indexOf("pc") === len) {
3083 return parseFloat( text.substring( 0, len)) * 15;
3084 } else if (text.indexOf("mm") === len) {
3085 return parseFloat( text.substring(0, len)) * 3.543307;
3086 } else if (text.indexOf("cm") === len) {
3087 return parseFloat(text.substring(0, len)) * 35.43307;
3088 } else if (text.indexOf("in") === len) {
3089 return parseFloat(text.substring(0, len)) * 90;
3090 } else if (text.indexOf("px") === len) {
3091 return parseFloat(text.substring(0, len));
3093 return parseFloat(text);
5246 p.status = function(text) { argument
5247 window.status = text;
5731 createTextNode = function(text) { argument
5732 return doc.createTextNode(text);
10620 graphics.text(character, 0, curTextSize);
10676 graphics.text(character, 0, 0);
11029 drawCommands.push({text:str.substring(start, j), width: lineWidth, offset: yOffset});
11032 … drawCommands.push({text:str.substring(start, spaceMark + 1), width: lineWidth, offset: yOffset});
11044 drawCommands.push({text:str.substring(start), width: lineWidth, offset: yOffset});
11073 …lineFunction(command.text, x + xOffset, y + command.offset + boxYOffset1 + boxYOffset2, z, horizon…
11077 p.text = function text() { function
11093 hud.text(arguments[0], 0, asc);
11859 function addAtom(text, type) { argument
11861 atoms.push(text);