Home
last modified time | relevance | path

Searched refs:predict_indent (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/toolchain-utils/llvm_tools/
H A Dpatch_utils.py536 def predict_indent(patches_lines: List[str]) -> int: function
572 indent_len = predict_indent(contents.splitlines())
658 indent_len = predict_indent(contents.splitlines())
H A Dpatch_utils_unittest.py37 self.assertEqual(pu.predict_indent(test_str1.splitlines()), 2)
45 self.assertEqual(pu.predict_indent(test_str2.splitlines()), 4)
H A Dget_upstream_patch.py126 indent_len = patch_utils.predict_indent(contents.splitlines())
H A Dget_patch.py132 indent_len = patch_utils.predict_indent(orig_contents.splitlines())
/aosp_15_r20/external/toolchain-utils/llvm_tools/patch_sync/src/
H A Dpatch_parsing.rs71 indent_len: predict_indent(contents), in parse_from_str()
463 pub fn predict_indent(json: &str) -> usize { in predict_indent() function