/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | DependencyRequestFormatter.java | 35 import static dagger.internal.codegen.ErrorMessages.INDENT; 61 StringBuilder builder = new StringBuilder(INDENT); in format() 66 .append(INDENT).append(INDENT).append("[component method with return type: "); in format() 79 builder.append(INDENT).append(INDENT).append("[component injection method for type: ") in format() 89 StringBuilder builder = new StringBuilder(INDENT); in format() 110 builder.append(")\n").append(INDENT).append(INDENT).append("[parameter: "); in format() 115 .append(INDENT).append(INDENT).append("[injected field of type: "); in format()
|
D | BindingGraphValidator.java | 89 import static dagger.internal.codegen.ErrorMessages.INDENT; 760 message.append(ErrorMessages.INDENT).append(method).append("\n"); in validateComponentScope() 830 builder.append('\n').append(INDENT).append(contributionBindingFormatter.format(binding)); in reportDuplicateBindings() 835 builder.append('\n').append(INDENT) in reportDuplicateBindings() 854 builder.append(INDENT); in reportMultipleBindingTypes() 859 .append(INDENT) in reportMultipleBindingTypes() 860 .append(INDENT) in reportMultipleBindingTypes() 889 .append(INDENT) in reportInconsistentMapKeyAnnotations() 1030 message.append(INDENT); 1121 builder.append(INDENT); [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | ModifyCase.java | 35 static final int INDENT = 8; field in ModifyCase 124 indent(INDENT); in openLDML() 127 indent(INDENT * 2); in openLDML() 130 indent(INDENT * 2); in openLDML() 133 indent(INDENT * 2); in openLDML() 136 indent(INDENT * 2); in openLDML() 139 indent(INDENT); in openLDML() 152 indent(INDENT * (i + 1)); in makeLowerCase() 189 indent(INDENT * parts.length); in makeLowerCase() 203 indent(INDENT * (i + 1)); in makeLowerCase()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | Makefile.am | 257 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 260 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 263 $(INDENT) $(XORG_INDENT_FLAGS) < $< > $@ 318 | $(INDENT) $(INDENT_FLAGS) > $@ 329 | $(INDENT) $(INDENT_FLAGS) > $@ 333 | $(INDENT) $(INDENT_FLAGS) > $@ 339 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ 343 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ 347 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ 352 | $(INDENT) $(XORG_INDENT_FLAGS) > $@ [all …]
|
/external/antlr/runtime/JavaScript/tests/functional/ |
D | rhino-python.extensions | 44 ... 1 COLON NEWLINE INDENT PRINT a NEWLINE DEDENT b ASSIGN 3 ... 49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token 101 pushed on the stack, and one INDENT token is generated. If it 173 if ( cpos > lastIndent ) { // they indented; track and gen INDENT 175 var indent = new ANTLR.runtime.CommonToken(PythonParser.INDENT, ""); 246 a a \n INDENT b b \n c \n DEDENT d \n EOF 251 a c \n INDENT b \n DEDENT c \n EOF 257 a \n INDENT b \n INDENT c \n DEDENT DEDENT d \n EOF 269 a \n INDENT c \n INDENT d \n DEDENT e \n f \n INDENT g \n h \n i \n INDENT j \n DEDENT DEDENT k \n … 276 a \n INDENT b \n c \n INDENT d \n e \n DEDENT DEDENT EOF
|
/external/python/cpython3/Lib/test/ |
D | test_tokenize.py | 639 INDENT '\\t' (2, 0) (2, 1) 643 INDENT ' \\t' (3, 0) (3, 9) 811 INDENT ' ' (2, 0) (2, 2) 819 INDENT ' ' (3, 0) (3, 4) 829 INDENT ' ' (5, 0) (5, 4) 850 INDENT ' ' (2, 0) (2, 2) 886 INDENT ' ' (3, 0) (3, 2) 924 INDENT ' ' (3, 0) (3, 2)
|
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
D | ParseException.java | 43 private static final String INDENT = " "; field in ParseException 145 expected.append(INDENT).append(option).append(EOL); in initialise() 167 …sb.append(EOL).append(INDENT).append("at line " + currentToken.next.beginLine + ", column " + curr… in initialise()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
D | ParseException.java | 35 private static final String INDENT = " "; field in ParseException 137 expected.append(INDENT).append(option).append(EOL); in initialise() 159 …sb.append(EOL).append(INDENT).append("at line " + currentToken.next.beginLine + ", column " + curr… in initialise()
|
/external/doclava/src/com/google/doclava/ |
D | Proofread.java | 29 static final String INDENT = " "; field in Proofread 30 static final String NEWLINE = "\n" + INDENT; 70 write(INDENT); in writeIndented()
|
/external/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()
|
/external/autotest/utils/ |
D | reindent.py | 258 INDENT=tokenize.INDENT, argument 270 elif type == INDENT:
|
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/ |
D | MessageNanoPrinter.java | 49 private static final String INDENT = " "; field in MessageNanoPrinter 101 indentBuf.append(INDENT); in print() 185 indentBuf.append(INDENT); in print()
|
/external/python/cpython3/Lib/ |
D | tabnanny.py | 278 INDENT = tokenize.INDENT 294 elif type == INDENT:
|
/external/python/cpython2/Lib/ |
D | tabnanny.py | 274 INDENT = tokenize.INDENT 290 elif type == INDENT:
|
/external/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
|
/external/google-breakpad/src/testing/scripts/generator/ |
D | README | 21 To change the indentation from the default of 2, set INDENT in 24 INDENT=4 gmock_gen.py header-file.h ClassName
|
/external/python/cpython2/Tools/scripts/ |
D | reindent.py | 288 INDENT=tokenize.INDENT, argument 300 elif type == INDENT:
|
/external/python/cpython3/Tools/scripts/ |
D | reindent.py | 286 INDENT=tokenize.INDENT, argument 298 elif type == INDENT:
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_tuple_params.py | 55 if suite[0].children[1].type == token.INDENT: 62 end = pytree.Leaf(token.INDENT, u"")
|
D | fix_metaclass.py | 131 if node.type == token.INDENT: 223 (suite.children[-2].type == token.INDENT and
|
/external/python/cpython3/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
|
/external/mksh/src/ |
D | tree.c | 28 #define INDENT 8 macro 145 fptreef(shf, indent + INDENT, "do%N%T", t->left); in ptree() 158 fptreef(shf, indent + INDENT, "%N%T%N;%c", t1->left, in ptree() 180 fptreef(shf, indent + INDENT, "%s%N%T", in ptree() 186 fptreef(shf, indent + INDENT, "%s%N%T", in ptree() 198 fptreef(shf, indent + INDENT, "do%N%T", t->right); in ptree() 202 fptreef(shf, indent + INDENT, "{%N%T", t->left); in ptree()
|
/external/epid-sdk/epid/common/math/src/ |
D | printutils.c | 40 #define INDENT 2 macro 52 for (ind = 0; ind < INDENT; ind++) { \ 69 curr_column += INDENT; in PrintBuf()
|