Searched refs:indentLevel (Results 1 – 7 of 7) sorted by relevance
/external/webkit/JavaScriptCore/profiler/ |
D | ProfileNode.cpp | 293 void ProfileNode::debugPrintData(int indentLevel) const in debugPrintData() 296 for (int i = 0; i < indentLevel; ++i) in debugPrintData() 306 ++indentLevel; in debugPrintData() 310 (*currentChild)->debugPrintData(indentLevel); in debugPrintData() 314 double ProfileNode::debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount& countedFuncti… in debugPrintDataSampleStyle() argument 321 if (indentLevel) { in debugPrintDataSampleStyle() 322 for (int i = 0; i < indentLevel; ++i) in debugPrintDataSampleStyle() 331 ++indentLevel; in debugPrintDataSampleStyle() 336 … sumOfChildrensCount += (*currentChild)->debugPrintDataSampleStyle(indentLevel, countedFunctions); in debugPrintDataSampleStyle() 342 while (indentLevel--) in debugPrintDataSampleStyle()
|
D | ProfileNode.h | 135 void debugPrintData(int indentLevel) const; 136 double debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount&) const;
|
/external/webkit/WebKitTools/Scripts/ |
D | print-msvc-project-dependencies | 137 my ($project, $indentLevel, $projectsByUUID) = @_; 139 print " " x $indentLevel, $project->{name}, "\n"; 141 …printProjectAndDependencies($projectsByUUID->{$dependencyUUID}, $indentLevel + 1, $projectsByUUID);
|
/external/webkit/WebCore/history/ |
D | HistoryItem.cpp | 542 int HistoryItem::showTreeWithIndent(unsigned indentLevel) const in showTreeWithIndent() 545 for (unsigned i = 0; i < indentLevel; ++i) in showTreeWithIndent() 553 totalSubItems += m_subItems[i]->showTreeWithIndent(indentLevel + 1); in showTreeWithIndent()
|
D | HistoryItem.h | 174 int showTreeWithIndent(unsigned indentLevel) const;
|
/external/webkit/WebCore/loader/ |
D | FrameLoader.cpp | 1989 static String& pageCacheLogPrefix(int indentLevel) in pageCacheLogPrefix() argument 1994 if (indentLevel != previousIndent) { in pageCacheLogPrefix() 1995 previousIndent = indentLevel; in pageCacheLogPrefix() 2009 #define PCLOG(...) pageCacheLog(pageCacheLogPrefix(indentLevel), String::format(__VA_ARGS__)) 2020 int indentLevel = 0; in logCanCachePageDecision() local 2051 bool FrameLoader::logCanCacheFrameDecision(int indentLevel) in logCanCacheFrameDecision() argument 2117 if (!child->loader()->logCanCacheFrameDecision(indentLevel + 1)) in logCanCacheFrameDecision()
|
D | FrameLoader.h | 476 bool logCanCacheFrameDecision(int indentLevel);
|