Lines Matching refs:matched

172 			if(matched = aCommands[i].match(/^\)/))//note stop
183 else if(matched = aCommands[i].match(/^(.+)<-?>([^:]+):?([^:]+):?(.*)/)) //double arrow
185 … aParsedCommands[curCommand] = [matched[1], matched[2], matched[3], matched[4], "double-arrow", i];
190 else if(matched = aCommands[i].match(/^(.+)->([^:]+):?([^:]+):?(.*)/)) //arrow
192 aParsedCommands[curCommand] = [matched[1], matched[2], matched[3], matched[4], "arrow", i];
197 else if(matched = aCommands[i].match(/^(.+)<-([^:]+):?([^:]+):?(.*)/)) //back arrow
199 aParsedCommands[curCommand] = [matched[2], matched[1], matched[3], matched[4], "arrow", i];
205 else if(matched = aCommands[i].match(/parallel[ ]*\{/)) //start
210 else if(matched = aCommands[i].match(/^}/)) //stop
216 else if(matched = aCommands[i].match(/note over ([^,]*),?([^(]*)\(/)) //note over start
218 actor2 = (matched[2] != '')?matched[2] : matched[1];
219 aParsedCommands[curCommand] = [matched[1], actor2, 0, "note-over", i];
224 else if(matched = aCommands[i].match(/note ?\(/)) //note start
231 else if(matched = aCommands[i].match(/break:?(.*)/)) //break
233 aParsedCommands[curCommand] = [0, 0, matched[1], "break", i];
237 else if(matched = aCommands[i].match(/title:(.+)/)) //title
239 title = matched[1];
268 else if(matched = aCommands[i].match(/^order:(.+)/)) //order
270 aParsedCommands[curCommand] = [matched[1], matched[1], "", "", "", i];
278 else if(curActor == 0 && (matched = aCommands[i].match(/colwidth:(.+)/))) //colwidth
280 l_colsminlen = parseInt(matched[1]);