Home
last modified time | relevance | path

Searched full:new_lines (Results 1 – 24 of 24) sorted by relevance

/external/dagger2/javatests/dagger/internal/codegen/
DIgnoreProvisionKeyWildcardsTest.java44 private static final Joiner NEW_LINES = Joiner.on("\n"); field in IgnoreProvisionKeyWildcardsTest
66 NEW_LINES.join( in testProvidesUniqueBindingsWithDifferentTypeVariances()
78 NEW_LINES.join( in testProvidesUniqueBindingsWithDifferentTypeVariances()
108 NEW_LINES.join( in testProvidesUniqueBindingsWithMatchingWildcardArguments()
136 NEW_LINES.join( in testProvidesUniqueBindingsWithMatchingWildcardArguments()
179 NEW_LINES.join( in testProvidesMultibindsSetDeclarationsWithDifferentTypeVariances()
191 NEW_LINES.join( in testProvidesMultibindsSetDeclarationsWithDifferentTypeVariances()
221 /* javaComponentClass= */ NEW_LINES.join( in testProvidesMultibindsSetContributionsWithDifferentTypeVariances()
232 /* kotlinComponentClass= */ NEW_LINES.join( in testProvidesMultibindsSetContributionsWithDifferentTypeVariances()
263 NEW_LINES.join( in testProvidesMultibindsSetContributionAndMultibindsWithDifferentVariances()
[all …]
DDaggerSuperficialValidationTest.java64 private static final Joiner NEW_LINES = Joiner.on("\n "); field in DaggerSuperficialValidationTest
95 NEW_LINES.join( in missingReturnType()
133 NEW_LINES.join( in missingGenericReturnType()
174 NEW_LINES.join( in missingReturnTypeTypeParameter()
214 NEW_LINES.join( in missingTypeParameter()
252 NEW_LINES.join( in missingParameterType()
289 NEW_LINES.join( in missingAnnotation()
379 NEW_LINES.join( in missingWildcardBound()
419 NEW_LINES.join( in missingIntersection()
474 NEW_LINES.join( in invalidAnnotationValue()
[all …]
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_tuple_params.py50 new_lines = []
65 # doesn't feel right. Closing over self and new_lines makes the
75 new_lines.append(pytree.Node(syms.simple_stmt,
87 if not new_lines:
92 for line in new_lines:
98 new_lines[0].prefix = " "
100 new_lines[0].prefix = indent
103 for line in new_lines:
105 suite[0].children[after:after] = new_lines
106 for i in range(after+1, after+len(new_lines)+1):
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_tuple_params.py50 new_lines = []
65 # doesn't feel right. Closing over self and new_lines makes the
75 new_lines.append(pytree.Node(syms.simple_stmt,
87 if not new_lines:
92 for line in new_lines:
98 new_lines[0].prefix = u" "
100 new_lines[0].prefix = indent
103 for line in new_lines:
105 suite[0].children[after:after] = new_lines
106 for i in range(after+1, after+len(new_lines)+1):
/external/openthread/script/
Dupdate-makefiles.py76 new_lines = []
81 new_lines.append(line)
85 new_lines.append(line)
87 new_lines.extend(new_list)
91 new_lines.append(line)
94 new_lines.append(line)
99 if new_lines != lines:
100 write_txt_file(file_name, new_lines)
/external/freetype/builds/meson/
Dprocess_ftoption_h.py68 new_lines = []
85 new_lines.append(line)
93 new_lines.append(line)
95 result = "\n".join(new_lines) + "\n"
/external/oss-fuzz/infra/
Dbuild_specified_commit.py71 new_lines = []
88 new_lines.append(line)
91 handle.write(''.join(new_lines))
110 new_lines = []
115 new_lines.append(line)
118 handle.write(''.join(new_lines))
/external/skia/tools/
Dsanitize_source_files.py47 new_lines = [] # Collect changed lines here.
60 new_lines.append(line)
64 new_content = ''.join(new_lines)
/external/mesa3d/.gitlab-ci/lava/utils/
Dlava_log_hints.py41 def detect_failure(self, new_lines: list[dict[str, Any]]):
42 for line in new_lines:
Dlog_follower.py210 def feed(self, new_lines: list[dict[str, str]]) -> bool:
220 for line in new_lines:
239 self.log_hints.detect_failure(new_lines)
/external/libvpx/tools/
Dintersect-diffs.py63 new_lines = new_hunk.left
67 if i in new_lines:
/external/libaom/tools/
Dintersect-diffs.py65 new_lines = new_hunk.left
69 if i in new_lines:
/external/python/cpython2/Tools/scripts/
Dpatchcheck.py176 new_lines = [ws_re.sub(br'\1', line) for line in lines]
177 if new_lines != lines:
180 f.writelines(new_lines)
/external/autotest/server/cros/dynamic_suite/
Dtools.py172 new_lines = []
177 new_lines.append(line)
181 new_lines.append(line)
182 return '\n'.join(new_lines)
/external/python/mako/mako/
D_ast_util.py221 self.new_lines = 0
224 if self.new_lines:
226 self.result.append("\n" * self.new_lines)
228 self.new_lines = 0
232 self.new_lines = max(self.new_lines, n)
/external/python/cpython3/Tools/scripts/
Dpatchcheck.py205 new_lines = [ws_re.sub(br'\1', line) for line in lines]
206 if new_lines != lines:
209 f.writelines(new_lines)
/external/XNNPACK/scripts/
Dsort-filenames.py130 new_lines = sorted(file_lines[x[0]:x[1]+1], key=cmp_to_key(compare_strs)) variable
132 file_lines[l] = new_lines[i]
/external/mesa3d/src/amd/compiler/tests/
Dcheck_output.py96 new_lines = []
99 new_lines.append('')
105 new_lines.append(line[indent_amount:])
106 code = '\n'.join(new_lines)
/external/python/cpython2/Lib/test/
Dtest_curses.py348 new_lines = lines - 1
350 curses.resizeterm(new_lines, new_cols)
352 self.assertEqual(curses.LINES, new_lines)
/external/webp/src/dec/
Dio_dec.c241 int new_lines, WebPRescaler* const wrk) { in Rescale() argument
243 while (new_lines > 0) { // import new contributions of source rows. in Rescale()
244 const int lines_in = WebPRescalerImport(wrk, new_lines, src, src_stride); in Rescale()
246 new_lines -= lines_in; in Rescale()
/external/python/cpython3/Lib/test/
Dtest_curses.py1073 new_lines = lines - 1
1075 curses.resize_term(new_lines, new_cols)
1076 self.assertEqual(curses.LINES, new_lines)
1087 new_lines = lines - 1
1089 curses.resizeterm(new_lines, new_cols)
1090 self.assertEqual(curses.LINES, new_lines)
/external/toolchain-utils/llvm_tools/
Dupdate_chromeos_llvm_hash.py288 new_lines = list(
294 ebuild_file.writelines(new_lines)
/external/bazelbuild-rules_python/examples/bzlmod/
Dgazelle_python.yaml582 yamllint.rules.new_lines: yamllint
/external/bazelbuild-rules_python/examples/bzlmod_build_file_generation/
Dgazelle_python.yaml583 yamllint.rules.new_lines: yamllint