Lines Matching full:indentlevel
81 int indentLevel;
125 int indentLevel = 0;
167 callStack[ii].indentLevel = 0;
204 indentLevel = callStack[threadId].indentLevel;
254 printf("Indent: %d; IndentLevel: %d; Line: %s", indent, indentLevel, buf);
258 if (indent == indentLevel + 1) { // Entering a method
261 callStack[threadId].frames[indentLevel] = &records[nextRecord];
262 } else if (indent == indentLevel) { // Exiting a method
264 if (callStack[threadId].frames[indentLevel - 1] == NULL) {
267 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
270 if (indentLevel < 1) {
276 char *name = callStack[threadId].frames[indentLevel - 1]->fullName;
284 callStack[threadId].frames[indentLevel - 1]->fullName);
292 indentLevel, indent);
304 indentLevel = indent - 1;
305 callStack[threadId].frames[indentLevel] = &records[nextRecord];
309 indentLevel += 1;
311 indentLevel -= 1;
313 callStack[threadId].indentLevel = indentLevel;