Home | History | Annotate | Download | only in profiler

Lines Matching defs:currentNode

152     ProfileNode* currentNode = 0;
154 currentNode = next;
156 if (currentNode->callIdentifier().m_name != "profile")
160 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
161 currentNode->parent()->removeChild(currentNode);
167 ProfileNode* currentNode = 0;
169 currentNode = next;
171 if (currentNode->callIdentifier().m_name != "profileEnd")
175 currentNode->parent()->setSelfTime(currentNode->parent()->selfTime() + currentNode->totalTime());
177 ASSERT(currentNode->callIdentifier() == (currentNode->parent()->children()[currentNode->parent()->children().size() - 1])->callIdentifier());
178 currentNode->parent()->removeChild(currentNode);