HomeSort by relevance Sort by last modified time
    Searched full:indentlevel (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/
LayerAndroid.cpp 1089 void writeIndent(FILE* file, int indentLevel)
1091 if (indentLevel)
1092 fprintf(file, "%*s", indentLevel*2, " ");
1095 void writeln(FILE* file, int indentLevel, const char* str)
1097 writeIndent(file, indentLevel);
    [all...]
LayerAndroid.h 206 void dumpLayers(FILE*, int indentLevel) const;
  /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/clang/test/SemaObjC/
continuation-class-err.m 10 @property (readonly) int indentLevel;
16 @property (readwrite, assign) int indentLevel; // OK. assign the the default in any case.
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileNode.cpp 292 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
320 if (indentLevel) {
321 for (int i = 0; i < indentLevel; ++i)
330 ++indentLevel;
335 sumOfChildrensCount += (*currentChild)->debugPrintDataSampleStyle(indentLevel, countedFunctions);
341 while (indentLevel--
    [all...]
ProfileNode.h 128 void debugPrintData(int indentLevel) const;
129 double debugPrintDataSampleStyle(int indentLevel, FunctionCallHashCount&) const;
  /external/llvm/utils/TableGen/
LLVMCConfigurationEmitter.cpp 603 const Init* I, unsigned IndentLevel, raw_ostream& O)
606 (const DagInit&, unsigned IndentLevel, raw_ostream& O) const;
611 ((Obj)->*(h))(Dag, IndentLevel, O);
    [all...]
  /external/webkit/Tools/Scripts/
print-msvc-project-dependencies 137 my ($project, $indentLevel, $projectsByUUID) = @_;
139 print " " x $indentLevel, $project->{name}, "\n";
141 printProjectAndDependencies($projectsByUUID->{$dependencyUUID}, $indentLevel + 1, $projectsByUUID);
  /external/clang/lib/AST/
StmtDumper.cpp 31 unsigned IndentLevel;
45 : SM(sm), OS(os), IndentLevel(0-1), MaxDepth(maxDepth) {
54 ++IndentLevel;
75 --IndentLevel;
81 for (int i = 0, e = IndentLevel; i < e; ++i)
307 ++IndentLevel;
313 --IndentLevel;
501 IndentLevel++;
517 IndentLevel--;
576 ++IndentLevel;
    [all...]
StmtPrinter.cpp 33 unsigned IndentLevel;
41 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper),
49 IndentLevel += SubIndent;
60 IndentLevel -= SubIndent;
80 for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
122 D->print(OS, Policy, IndentLevel);
131 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel);
300 Node->getLoopVariable()->print(OS, SubPolicy, IndentLevel);
    [all...]
RecordLayoutBuilder.cpp     [all...]
  /external/webkit/Source/WebCore/history/
PageCache.cpp 60 static String& pageCacheLogPrefix(int indentLevel)
65 if (indentLevel != previousIndent) {
66 previousIndent = indentLevel;
80 #define PCLOG(...) pageCacheLog(pageCacheLogPrefix(indentLevel), makeString(__VA_ARGS__))
82 static bool logCanCacheFrameDecision(Frame* frame, int indentLevel)
171 if (!logCanCacheFrameDecision(child, indentLevel + 1))
189 int indentLevel = 0;
HistoryItem.h 212 int showTreeWithIndent(unsigned indentLevel) const;
HistoryItem.cpp 871 int HistoryItem::showTreeWithIndent(unsigned indentLevel) const
874 for (unsigned i = 0; i < indentLevel; ++i)
882 totalSubItems += m_children[i]->showTreeWithIndent(indentLevel + 1);
  /frameworks/base/include/utils/
Debug.h 51 const char* stringForIndent(int32_t indentLevel);
  /frameworks/base/libs/utils/
Debug.cpp 33 const char* stringForIndent(int32_t indentLevel)
35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2);
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 324 static bool ParseBlock(BitstreamCursor &Stream, unsigned IndentLevel) {
325 std::string Indent(IndentLevel*2, ' ');
391 if (ParseBlock(Stream, IndentLevel+1))
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
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/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 147 mutable unsigned IndentLevel;
152 DFSIn(0), DFSOut(0), IndentLevel(0) {}
231 err.indent(IndentLevel);
238 IndentLevel += 2;
245 IndentLevel -= 2;
    [all...]
  /prebuilt/sdk/tools/linux/
aapt 

Completed in 750 milliseconds