Lines Matching refs:st

357   var st;
359 st = str.slice(n+1);
360 else st = str.slice(n);
361 for (var i=0; i<st.length && st.charCodeAt(i)<=32; i=i+1);
362 return st.slice(i);
388 var st;
393 st = str.slice(0,i); //initial substring of length i
395 k = AMposition(AMnames, st, j);
411 st = str.slice(0,1);
413 while ("0"<=st && st<="9" && k<=str.length) {
414 st = str.slice(k,k+1);
417 if (st == decimalsign) {
418 st = str.slice(k,k+1);
419 if ("0"<=st && st<="9") {
422 while ("0"<=st && st<="9" && k<=str.length) {
423 st = str.slice(k,k+1);
429 st = str.slice(0,k-1);
433 st = str.slice(0,1); //take 1 character
434 tagst = (("A">st || st>"Z") && ("a">st || st>"z")?"mo":"mi");
436 if (st=="-" && AMpreviousSymbol==INFIX)
437 return {input:st, tag:tagst, output:st, ttype:UNARY, func:true};
438 return {input:st, tag:tagst, output:st, ttype:CONST};
442 var st;
444 st = node.firstChild.firstChild.nodeValue;
445 if (st=="(" || st=="[" || st=="{") node.removeChild(node.firstChild);
448 st = node.lastChild.firstChild.nodeValue;
449 if (st==")" || st=="]" || st=="}") node.removeChild(node.lastChild);
467 var symbol, node, result, i, st,// rightvert = false,
505 st = str.slice(1,i);
506 if (st.charAt(0) == " ") {
512 AMcreateMmlNode(symbol.tag,document.createTextNode(st)));
513 if (st.charAt(st.length-1) == " ") {
526 st = str.charAt(0);
527 if (st=="^" || st=="_" || st=="/" || st=="|") {
548 st = (result[0].nodeName=="mi"?result[0].firstChild.nodeValue:
551 for (var j=0; j<st.length; j++)
552 if (st.charCodeAt(j)>64 && st.charCodeAt(j)<91) newst = newst +
553 String.fromCharCode(symbol.codes[st.charCodeAt(j)-65]);
554 else newst = newst + st.charAt(j);
601 var st = "";
603 st = result[0].lastChild.firstChild.nodeValue;
605 if (st == "|") { // its an absolute value subterm
815 function(st){mtch=true;return "AMescape2"}); argument
817 function(st){mtch=true;return "AMescape1"}); argument
848 var frag,st;
856 st = n.innerHTML;
858 if (st==null ||
859 st.indexOf(AMdelimiter1)!=-1 || st.indexOf(AMdelimiter2)!=-1)