Lines Matching +refs:clang +refs:format +refs:binary
8 When using :program:`clang-format` command line utility or
9 ``clang::format::reformat(...)`` functions from code, one can either use one of
14 Configuring Style with clang-format
17 :program:`clang-format` supports two ways to provide custom style options:
19 use ``-style=file`` and put style configuration in the ``.clang-format`` or
20 ``_clang-format`` file in the project directory.
22 When using ``-style=file``, :program:`clang-format` for each input file will
23 try to find the ``.clang-format`` file located in the closest parent directory
27 The ``.clang-format`` file uses YAML format:
36 An easy way to get a valid ``.clang-format`` file containing all configuration
41 clang-format -style=llvm -dump-config > .clang-format
44 is applied for all input files. The format of the configuration is:
54 When using ``clang::format::reformat(...)`` functions, the format is specified
55 by supplying the `clang::format::FormatStyle
56 <http://clang.llvm.org/doxygen/structclang_1_1format_1_1FormatStyle.html>`_
72 This option is supported only in the :program:`clang-format` configuration
73 (both within ``-style='{...}'`` and the ``.clang-format`` file).
148 If ``true``, binary operators will be placed after line breaks.
181 clang-format will respect the input's line breaking decisions within
200 If ``true``, format braced lists as best suited for C++11 braced
210 (e.g. a type or variable name), clang-format formats as if the ``{}`` were
222 If ``true``, clang-format detects whether function calls and
227 made, clang-format analyzes whether there are other bin-packed cases in
262 Language, this format style is targeted at.