Searched defs:indentLevel (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.cpp292 void ProfileNode::debugPrintData(int indentLevel) const
295 for (int i = 0; i < indentLevel; ++i)
305 ++indentLevel;
309 (*currentChild)->debugPrintData(indentLevel);
313 double ProfileNode::debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount& countedFunctions) const argument
320 if (indentLevel) {
321 for (int i = 0; i < indentLevel; ++i)
330 ++indentLevel;
335 sumOfChildrensCount += (*currentChild)->debugPrintDataSampleStyle(indentLevel, countedFunctions);
341 while (indentLevel
[all...]
/external/webkit/Source/WebCore/history/
H A DPageCache.cpp60 static String& pageCacheLogPrefix(int indentLevel) argument
65 if (indentLevel != previousIndent) {
66 previousIndent = indentLevel;
80 #define PCLOG(...) pageCacheLog(pageCacheLogPrefix(indentLevel), makeString(__VA_ARGS__))
82 static bool logCanCacheFrameDecision(Frame* frame, int indentLevel) argument
171 if (!logCanCacheFrameDecision(child, indentLevel + 1))
189 int indentLevel = 0; local
/external/webkit/Source/WebCore/platform/graphics/android/
H A DLayerAndroid.cpp1330 void writeIndent(FILE* file, int indentLevel) argument
1332 if (indentLevel)
1333 fprintf(file, "%*s", indentLevel*2, " ");
1336 void writeln(FILE* file, int indentLevel, const char* str) argument
1338 writeIndent(file, indentLevel);
1343 void writeIntVal(FILE* file, int indentLevel, const char* str, int value) argument
1345 writeIndent(file, indentLevel);
1349 void writeHexVal(FILE* file, int indentLevel, const char* str, int value) argument
1351 writeIndent(file, indentLevel);
1355 void writeFloatVal(FILE* file, int indentLevel, cons argument
1361 writePoint(FILE* file, int indentLevel, const char* str, SkPoint point) argument
1367 writeSize(FILE* file, int indentLevel, const char* str, SkSize size) argument
1373 writeRect(FILE* file, int indentLevel, const char* str, SkRect rect) argument
1380 writeLength(FILE* file, int indentLevel, const char* str, SkLength length) argument
1388 writeMatrix(FILE* file, int indentLevel, const char* str, const TransformationMatrix& matrix) argument
[all...]

Completed in 95 milliseconds