HomeSort by relevance Sort by last modified time
    Searched refs:indentLevel (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.cpp 451 void writeIndent(FILE* file, int indentLevel)
453 if (indentLevel)
454 fprintf(file, "%*s", indentLevel*2, " ");
457 void writeln(FILE* file, int indentLevel, const char* str)
459 writeIndent(file, indentLevel);
464 void writeIntVal(FILE* file, int indentLevel, const char* str, int value)
466 writeIndent(file, indentLevel);
470 void writeHexVal(FILE* file, int indentLevel, const char* str, int value)
472 writeIndent(file, indentLevel);
476 void writeFloatVal(FILE* file, int indentLevel, const char* str, float value
    [all...]
LayerAndroid.h 138 void dumpLayers(FILE*, int indentLevel) const;
  /frameworks/base/libs/utils/
Debug.cpp 33 const char* stringForIndent(int32_t indentLevel)
35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2);
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 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 metho
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileNode.cpp 289 void ProfileNode::debugPrintData(int indentLevel) const
292 for (int i = 0; i < indentLevel; ++i)
302 ++indentLevel;
306 (*currentChild)->debugPrintData(indentLevel);
310 double ProfileNode::debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount& countedFunctions) const
317 if (indentLevel) {
318 for (int i = 0; i < indentLevel; ++i)
327 ++indentLevel;
332 sumOfChildrensCount += (*currentChild)->debugPrintDataSampleStyle(indentLevel, countedFunctions);
338 while (indentLevel--
    [all...]
ProfileNode.h 125 void debugPrintData(int indentLevel) const;
126 double debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount&) const;
  /external/webkit/WebKitTools/Scripts/
print-msvc-project-dependencies 137 my ($project, $indentLevel, $projectsByUUID) = @_;
139 print " " x $indentLevel, $project->{name}, "\n";
141 printProjectAndDependencies($projectsByUUID->{$dependencyUUID}, $indentLevel + 1, $projectsByUUID);
  /frameworks/base/include/utils/
Debug.h 51 const char* stringForIndent(int32_t indentLevel);
  /external/webkit/WebCore/history/
HistoryItem.cpp 560 int HistoryItem::showTreeWithIndent(unsigned indentLevel) const
563 for (unsigned i = 0; i < indentLevel; ++i)
571 totalSubItems += m_children[i]->showTreeWithIndent(indentLevel + 1);
HistoryItem.h 196 int showTreeWithIndent(unsigned indentLevel) const;
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 635 prettyPrint=False, indentLevel=0):
636 return self.decode(prettyPrint, indentLevel, encoding).encode(encoding)
638 def decode(self, prettyPrint=False, indentLevel=0,
695 indentTag = indentLevel
737 prettyPrint=False, indentLevel=0):
738 return self.decodeContents(prettyPrint, indentLevel).encode(encoding)
740 def decodeContents(self, prettyPrint=False, indentLevel=0,
750 s.append(c.decode(prettyPrint, indentLevel, eventualEncoding))
755 s.append(" " * (indentLevel-1))
803 prettyPrint=False, indentLevel=0)
    [all...]
  /external/webkit/WebCore/loader/
FrameLoader.h 347 bool logCanCacheFrameDecision(int indentLevel);
FrameLoader.cpp     [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 104 milliseconds