/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
D | trace.cpp | 188 #define INDENT " " macro 198 out << INDENT << QUOTE("name") << ": " << QUOTE(name) << "," << std::endl; in write() 200 out << INDENT << QUOTE("cat") << ": " in write() 212 out << INDENT << QUOTE("args") << ": " in write() 214 << INDENT << INDENT << QUOTE("fiber") << ": " << fiberID << std::endl in write() 215 << INDENT << "}," << std::endl; in write() 218 out << INDENT << QUOTE("tid") << ": " << threadFiberID(threadID, fiberID) in write() 221 out << INDENT << QUOTE("ph") << ": " << QUOTE(static_cast<char>(type())) in write() 223 << INDENT << QUOTE("pid") << ": " << processID << "," << std::endl in write() 224 << INDENT << QUOTE("ts") << ": " << timestamp << std::endl; in write() [all …]
|
/third_party/ninja/misc/ |
D | ninja_syntax_test.py | 28 INDENT = ' ' variable 44 INDENT + LONGWORD, 45 INDENT + 'y']) + '\n', 70 ' ' + INDENT + LONGWORD, 71 ' ' + INDENT + 'y']) + '\n', 77 INDENT + LONGWORDWITHSPACES, 78 INDENT + 'y']) + '\n',
|
/third_party/python/Lib/test/ |
D | test_tokenize.py | 640 INDENT '\\t' (2, 0) (2, 1) 644 INDENT ' \\t' (3, 0) (3, 9) 812 INDENT ' ' (2, 0) (2, 2) 820 INDENT ' ' (3, 0) (3, 4) 830 INDENT ' ' (5, 0) (5, 4) 851 INDENT ' ' (2, 0) (2, 2) 887 INDENT ' ' (3, 0) (3, 2) 925 INDENT ' ' (3, 0) (3, 2)
|
/third_party/node/deps/npm/lib/utils/ |
D | npm-usage.js | 6 const INDENT = 4 constant 8 const indent = (repeat = INDENT) => ' '.repeat(repeat) 71 const usage = usageLines.join(indentNewline(INDENT + maxLen + 1))
|
/third_party/elfutils/tests/ |
D | addrscopes.c | 92 #define INDENT 4 macro 116 indent += INDENT; in handle_address() 135 print_vars (indent + INDENT, die); in handle_address()
|
D | funcscopes.c | 94 #define INDENT 4 macro 144 indent += INDENT; in handle_function() 163 print_vars (indent + INDENT, die); in handle_function()
|
/third_party/python/Include/ |
D | token.h | 18 #define INDENT 5 macro 84 (x) == INDENT || \
|
/third_party/python/Grammar/ |
D | python.gram | 224 … | "match" subject=subject_expr ':' NEWLINE INDENT cases[asdl_match_case_seq*]=case_block+ DEDENT { 418 | NEWLINE t=TYPE_COMMENT &(NEWLINE INDENT) { t } # Must be followed by indented block 496 | NEWLINE INDENT a=statements DEDENT { a } 904 | NEWLINE !INDENT { RAISE_INDENTATION_ERROR("expected an indented block") } 934 | TYPE_COMMENT NEWLINE TYPE_COMMENT NEWLINE INDENT { 957 | [ASYNC] a='with' ','.(expression ['as' star_target])+ ':' NEWLINE !INDENT { 959 | [ASYNC] a='with' '(' ','.(expressions ['as' star_target])+ ','? ')' ':' NEWLINE !INDENT { 963 | a='try' ':' NEWLINE !INDENT { 972 | a='finally' ':' NEWLINE !INDENT { 975 | a='except' expression ['as' NAME ] ':' NEWLINE !INDENT { [all …]
|
D | Tokens | 6 INDENT
|
/third_party/python/Lib/ |
D | tabnanny.py | 278 INDENT = tokenize.INDENT 294 elif type == INDENT:
|
/third_party/node/deps/npm/node_modules/json-parse-even-better-errors/lib/ |
D | index.js | 3 const INDENT = Symbol.for('indent') constant 106 result[INDENT] = match[2] ?? DEFAULT_INDENT
|
/third_party/googletest/googlemock/scripts/generator/ |
D | README | 20 To change the indentation from the default of 2, set INDENT in 23 INDENT=4 gmock_gen.py header-file.h ClassName
|
/third_party/ninja/src/ |
D | manifest_parser.cc | 109 while (lexer_.PeekToken(Lexer::INDENT)) { in ParsePool() 146 while (lexer_.PeekToken(Lexer::INDENT)) { in ParseRule() 307 bool has_indent_token = lexer_.PeekToken(Lexer::INDENT); in ParseEdge() 316 has_indent_token = lexer_.PeekToken(Lexer::INDENT); in ParseEdge()
|
D | lexer.h | 40 INDENT, enumerator
|
/third_party/python/Tools/scripts/ |
D | reindent.py | 286 INDENT=tokenize.INDENT, argument 298 elif type == INDENT:
|
/third_party/ffmpeg/fftools/ |
D | opt_common.c | 151 #define INDENT 1 macro 158 const char *indent = flags & INDENT? " " : ""; \ 199 const char *indent = flags & INDENT? " " : ""; in print_program_info() 213 const char *indent = flags & INDENT ? " " : ""; in print_buildconf() 243 print_program_info (INDENT|SHOW_COPYRIGHT, AV_LOG_INFO); in show_banner() 244 print_all_libs_info(INDENT|SHOW_CONFIG, AV_LOG_INFO); in show_banner() 245 print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_INFO); in show_banner() 260 print_buildconf (INDENT|0, AV_LOG_INFO); in show_buildconf()
|
/third_party/mksh/ |
D | tree.c | 28 #define INDENT 8 macro 164 fptreef(shf, indent + INDENT, "do%N%T", t->left); in ptree() 177 fptreef(shf, indent + INDENT, "%N%T%N;%c", t1->left, in ptree() 199 fptreef(shf, indent + INDENT, "%s%N%T", in ptree() 205 fptreef(shf, indent + INDENT, "%s%N%T", in ptree() 217 fptreef(shf, indent + INDENT, "do%N%T", t->right); in ptree() 221 fptreef(shf, indent + INDENT, "{%N%T", t->left); in ptree()
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_tuple_params.py | 55 if suite[0].children[1].type == token.INDENT: 62 end = pytree.Leaf(token.INDENT, "")
|
D | fix_metaclass.py | 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | IcuTextWriter.java | 34 private static final String INDENT = " "; field in IcuTextWriter 157 out.print(INDENT); in newLineAndIndent() 217 int maxWidth = Math.max(68, 80 - Math.min(4, rbPath.length()) * INDENT.length()); in appendValues()
|
/third_party/python/Tools/peg_generator/pegen/ |
D | metagrammar.gram | 53 | rulename memoflag? ":" alts NEWLINE INDENT more_alts DEDENT { 55 | rulename memoflag? ":" NEWLINE INDENT more_alts DEDENT {
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
D | XMLRecordWriter.java | 245 writeString(INDENT); in newline() 262 private static final String INDENT = " "; field in XMLRecordWriter
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
D | XMLRecordWriter.java | 249 writeString(INDENT); in newline() 266 private static final String INDENT = " "; field in XMLRecordWriter
|
/third_party/ffmpeg/libavutil/ |
D | vulkan.h | 35 #define INDENT(N) INDENT_##N macro 43 #define C(N, S) INDENT(N) #S "\n"
|
/third_party/python/Lib/lib2to3/pgen2/ |
D | token.py | 14 INDENT = 5 variable
|