Lines Matching refs:result
38 We don't reformat generated files, since the result might be different
39 from the output of the generator. Ideally the result of the generator
103 result = subprocess.run([UNCRUSTIFY_EXE, "--version"],
106 if result.returncode != 0:
107 print_err("Could not get Uncrustify version:", str(result.stderr, "utf-8"))
110 return str(result.stdout, "utf-8")
120 result = subprocess.run(uncrustify_cmd, stdout=subprocess.PIPE,
122 if result.returncode != 0:
123 print_err("Uncrustify returned " + str(result.returncode) +
127 # Uncrustify makes changes to the code and places the result in a new
152 result = subprocess.run(uncrustify_cmd, check=False)
153 if result.returncode != 0:
155 str(result.returncode) + " correcting file " +