Home | History | Annotate | Download | only in AST

Lines Matching full:indent

54         // If this is an expr used in a stmt context, indent and newline it.
55 Indent();
61 Indent() << "<<<NULL STATEMENT>>>\n";
83 raw_ostream &Indent(int Delta = 0) {
96 Indent() << "<<unknown stmt type>>\n";
121 Indent() << "}";
134 Indent() << ";\n";
138 Indent();
144 Indent();
150 Indent(-1) << "case ";
162 Indent(-1) << "default:\n";
167 Indent(-1) << Node->getName() << ":\n";
194 if (If->getElse()) Indent();
215 Indent();
220 Indent() << "switch (";
239 Indent() << "while (";
249 Indent() << "do ";
256 Indent();
265 Indent() << "for (";
294 Indent() << "for (";
313 Indent() << "for (";
321 Indent() << "}";
326 Indent();
342 Indent() << "goto " << Node->getLabel()->getName() << ";";
347 Indent() << "goto *";
354 Indent() << "continue;";
359 Indent() << "break;";
365 Indent() << "return";
376 Indent() << "asm ";
442 Indent() << "__asm ";
447 Indent() << "}\n";
455 Indent() << "@try";
463 Indent() << "@catch(";
477 Indent() << "@finally";
487 Indent() << "@catch (...) { /* todo */ } \n";
491 Indent() << "@throw";
500 Indent() << "@synchronized (";
508 Indent() << "@autoreleasepool";
524 Indent();
530 Indent() << "try ";
540 Indent() << (Node->getIsCXXTry() ? "try " : "__try ");
568 Indent();
574 Indent();
580 Indent() << "__leave;";
927 Indent() << "#pragma omp parallel ";
932 Indent() << "#pragma omp simd ";
937 Indent() << "#pragma omp for ";
942 Indent() << "#pragma omp for simd ";
947 Indent() << "#pragma omp sections ";
952 Indent() << "#pragma omp section";
957 Indent() << "#pragma omp single ";
962 Indent() << "#pragma omp master";
967 Indent() << "#pragma omp critical";
978 Indent() << "#pragma omp parallel for ";
984 Indent() << "#pragma omp parallel for simd ";
990 Indent() << "#pragma omp parallel sections ";
995 Indent() << "#pragma omp task ";
1000 Indent() << "#pragma omp taskyield";
1005 Indent() << "#pragma omp barrier";
1010 Indent() << "#pragma omp taskwait";
1015 Indent() << "#pragma omp taskgroup";
1020 Indent() << "#pragma omp flush ";
1025 Indent() << "#pragma omp ordered ";
1030 Indent() << "#pragma omp atomic ";
1035 Indent() << "#pragma omp target ";
1040 Indent() << "#pragma omp target data ";
1045 Indent() << "#pragma omp teams ";
1051 Indent() << "#pragma omp cancellation point "
1057 Indent() << "#pragma omp cancel "
1063 Indent() << "#pragma omp taskloop ";
1069 Indent() << "#pragma omp taskloop simd ";
1074 Indent() << "#pragma omp distribute ";