Home | History | Annotate | Download | only in webkitmerge

Lines Matching refs:last

374                 int last = m_preprocessorConditions.size() - 1;
375 myassert(last >= 0);
376 lastText = m_preprocessorConditions[last].name;
393 char* last = openParen;
394 while (last > m_text && isspace(last[-1]))
395 --last;
396 while (last > m_text && ((isTokenChar(last[-1]) || last[-1] == ':') && last[-2] == ':'))
397 --last;
398 myassert(isdigit(last[0]) == false);
399 if (isTokenChar(last[0])) {
401 m_functionName = string(last);
1123 char last = oldList[oldLen - 1];
1124 oldDir = last == '/';
1125 oldExecutable = last == '*';
1132 char last = newList[newLen - 1];
1133 newDir = last == '/';
1134 newExecutable = last == '*';
1141 char last = sandList[sandLen - 1];
1142 sandDir = last == '/';
1143 sandExecutable = last == '*';