Home
last modified time | relevance | path

Searched refs:lastCommand (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/svg/
DSVGParserUtilities.cpp239 char command = *(ptr++), lastCommand = ' '; in parseSVG() local
384 if (!(lastCommand == 'c' || lastCommand == 'C' || in parseSVG()
385 lastCommand == 's' || lastCommand == 'S')) { in parseSVG()
446 if (!(lastCommand == 'q' || lastCommand == 'Q' || in parseSVG()
447 lastCommand == 't' || lastCommand == 'T')) { in parseSVG()
506 lastCommand = command; in parseSVG()
521 if (lastCommand != 'C' && lastCommand != 'c' && in parseSVG()
522 lastCommand != 'S' && lastCommand != 's' && in parseSVG()
523 lastCommand != 'Q' && lastCommand != 'q' && in parseSVG()
524 lastCommand != 'T' && lastCommand != 't') { in parseSVG()
/external/webkit/WebCore/editing/
DTypingCommand.cpp357 EditCommand* lastCommand = m_commands.last().get(); in insertTextRunWithoutNewlines() local
358 if (lastCommand->isInsertTextCommand()) in insertTextRunWithoutNewlines()
359 command = static_cast<InsertTextCommand*>(lastCommand); in insertTextRunWithoutNewlines()