Home
last modified time | relevance | path

Searched +refs:clang +refs:format +refs:replace (Results 1 – 19 of 19) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/test/
H A Dlit.cfg40 # testFormat: The test format to use to interpret tests.
148 clang_src_root = os.path.join(llvm_src_root, "tools", "clang")
149 clang_obj_root = os.path.join(llvm_obj_root, "tools", "clang")
152 # tools/clang layout.
171 # Discover the 'clang' and 'clangcc' to use.
176 # Determine which clang to use.
177 clang = os.getenv('CLANG')
179 # If the user set clang in the environment, definitely use that and don't
181 if clang:
182 return clang
[all …]
/minix3/external/bsd/llvm/dist/clang/docs/
H A DClangTools.rst21 - ``cd llvm/tools/clang/tools``
22 - ``svn co http://llvm.org/svn/llvm-project/clang-tools-extra/trunk extra``
26 - ``cd llvm/tools/clang/tools``
27 - ``git clone http://llvm.org/git/clang-tools-extra.git extra``
73 ``clang-check``
81 fixit-hints offered by clang. See :doc:`HowToSetupToolingForLLVM` for
82 instructions on how to setup and used `clang-check`.
84 ``clang-format``
87 Clang-format is both a :doc:`library <LibFormat>` and a :doc:`stand-alone tool
89 according to configurable style guides. To do so, clang-format uses Clang's
[all …]
H A DAttributeReference.rst3 NOTE: This file is automatically generated by running clang-tblgen
66 acquire_capability (acquire_shared_capability, clang::acquire_capability, clang::acquire_shared_cap…
76 assert_capability (assert_shared_capability, clang::assert_capability, clang::assert_shared_capabil…
241 a future version of clang. Also, the ABI is not standardized and the name
332 format (gnu::format)
339 Clang supports the ``format`` attribute, which indicates that the function
340 accepts a ``printf`` or ``scanf``-like format string and corresponding
343 Please see `GCC documentation about format attribute
349 #. Clang checks that the function with the ``format`` attribute is called with
350 a format string that uses format specifiers that are allowed, and that
[all …]
H A DUsersManual.rst16 `Clang Web Site <http://clang.llvm.org>`_ or the `LLVM Web
23 `Clang Static Analyzer <http://clang-analyzer.llvm.org>`_, please see its web
47 Clang also provides an alternative driver, :ref:`clang-cl`, that is designed
154 output format of the diagnostics that it generates.
245 .. option:: -fdiagnostics-format=clang/msvc/vi
247 Changes diagnostic output format to better match IDEs and command line tools.
249 This option controls the output format of the filename, line number,
253 **clang** (default)
303 For example, a format string warning will produce these three
342 parsable format after the file/line/column number information. The
[all …]
H A DInternalsManual.rst80 ``clang/Basic/Diagnostic*Kinds.td`` files, depending on what library will be
82 diagnostic, the severity of the diagnostic and the English translation + format
129 The format string for the diagnostic is very simple, but it has some power. It
132 some simple format strings:
137 "format string contains '\\0' within the string body"
143 These examples show some important points of format strings. You can use any
156 order as they are specified, you could have a format string with "``%1 %0``"
161 Here are some "best practices" for writing the English format string:
182 including variable names, types, labels, etc. The "``select``" format can be
198 **"s" format**
[all …]
H A Ddoxygen.cfg.in7 # The format is:
20 PROJECT_NAME = clang
37 # format and will distribute the generated files over these directories.
178 # Doxygen uses this value to replace tabs by spaces in code fragments.
429 # The WARN_FORMAT tag determines the format of the warning messages that
432 # warning originated and the warning text. Optionally the format may contain
612 IGNORE_PREFIX = clang::
1077 # can be added for each tagfile. The format of a tag file without
1204 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1304 EXTERNAL_SEARCH_ID = clang
/minix3/external/bsd/llvm/dist/llvm/docs/HistoricalNotes/
H A D2007-OriginalClangReadme.txt8 clang: noun
70 clang - An example driver, client of the libraries at various levels.
74 easy to reuse individual parts or replace pieces if desired. For example, to
92 II. Usage of clang driver:
95 - Help: clang --help
127 For more information on getting Graphviz to work with clang/LLVM,
136 * Full diagnostic customization by client (can format diagnostics however they
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DAttrDocs.td13 NOTE: This file is automatically generated by running clang-tblgen
124 …let Heading = "assert_capability (assert_shared_capability, clang::assert_capability, clang::asser…
133 …let Heading = "acquire_capability (acquire_shared_capability, clang::acquire_capability, clang::ac…
141 …= "try_acquire_capability (try_acquire_shared_capability, clang::try_acquire_capability, clang::tr…
152 …let Heading = "release_capability (release_shared_capability, clang::release_capability, clang::re…
387 // void nodupfunc() [[clang::noduplicate]];
591 The ``clang::fallthrough`` attribute is used along with the
596 meant to replace comments with a more strict annotation, which can be checked
614 [[clang::fallthrough]];
622 [[clang::fallthrough]];
[all …]
H A DDiagnosticSemaKinds.td211 "replace parentheses with an initializer to declare a variable">;
2010 "strftime format attribute requires 3rd parameter to be 0">;
2012 "format attribute requires variadic function">;
2013 def err_format_attribute_not : Error<"format argument not %0">;
2016 "format attribute cannot specify the implicit this argument as the format "
5058 "format string is not a string literal (potentially insecure)">,
5061 "format string is not a string literal">,
6014 "%select{function|block|method|constructor}2; expected type from format "
6019 "%select{function|block|method|constructor}2; expected type from format "
6043 "%select{function|block|method|constructor}2; expected type from format "
[all …]
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DGettingStarted.rst20 The second piece is the `Clang <http://clang.llvm.org/>`_ front end. This
33 Getting Started <http://clang.llvm.org/get_started.html>`_ page might also be a
50 * ``svn co http://llvm.org/svn/llvm-project/cfe/trunk clang``
379 any of the examples below, simply replace each of these names with the
500 If you want to check out clang too, run:
505 % git clone http://llvm.org/git/clang.git
553 But you may generate patchset with git-format-patch. It generates by-each-commit
558 % git format-patch --no-attach master..mybranch -o /path/to/your/patchset
565 % git format-patch --attach master..mybranch --stdout | git imap-send
597 # If you have clang too:
[all …]
H A DExceptionHandling.rst12 exception handling in LLVM. It describes the format that LLVM exception
36 exception frame format can be found at `Exception Frames
243 a rethrow from within the catch may replace this call with a
350 a destination address by `llvm.eh.sjlj.longjmp`_. The buffer format and the
352 ``__builtin_setjmp`` implementation allowing code built with the clang and GCC
H A DDeveloperPolicy.rst93 different tool, make sure it uses the ``diff -u`` format and that it
222 Note that llvm/test and clang/test are designed for regression and small feature
409 and used, it is much easier to replace the underlying implementation of the
442 When the IR format has to be changed, keep in mind that we try to maintain some
446 * The textual format is not backwards compatible. We don't change it too often,
449 * The bitcode format produced by a X.Y release will be readable by all following
/minix3/external/bsd/bind/dist/unit/atf-src/
H A DNEWS27 clang.
154 new package that aims to replace atf-run and atf-report. The ATF tests
293 * Removed the atf-format internal utility, which is unused after the
311 * Removed the application/X-atf-tcr format introduced in 0.8 release.
312 Tests now print a much simplified format that is easy to parse and nicer
376 * Test programs no longer print a cryptic format (application/X-atf-tcs)
534 for the format's structure and sample XSLT/CSS files to post-process this
550 * Improved atf-report's CSV output format to include information about
576 format of files written by the developers and users: the Atffiles and the
586 when using the ticker output format.
/minix3/external/bsd/atf/dist/
H A DNEWS90 clang.
217 new package that aims to replace atf-run and atf-report. The ATF tests
356 * Removed the atf-format internal utility, which is unused after the
374 * Removed the application/X-atf-tcr format introduced in 0.8 release.
375 Tests now print a much simplified format that is easy to parse and nicer
439 * Test programs no longer print a cryptic format (application/X-atf-tcs)
597 for the format's structure and sample XSLT/CSS files to post-process this
613 * Improved atf-report's CSV output format to include information about
639 format of files written by the developers and users: the Atffiles and the
649 when using the ticker output format.
/minix3/minix/lib/liblwip/dist/doc/doxygen/
H A Dlwip.Doxyfile10 # The format is:
64 # directories (in 2 levels) under the output directory of each output format and
226 # uses this value to replace tabs by spaces in code fragments.
280 # using this tag. The format is ext=language, where ext is a file extension, and
282 # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
297 # according to the Markdown format, which allows for more readable
340 # doxygen to replace the get and set methods by a property in the documentation.
688 # output files in an output format independent way. To create the layout file
758 # The WARN_FORMAT tag determines the format of the warning messages that doxygen
761 # and the warning text. Optionally the format may contain $version, which will
[all …]
/minix3/external/bsd/byacc/dist/
H A DCHANGES25 * package/debian/source/format:
26 change to native format to work around regression in Debian packaging.
103 format of the parse_param list (by trimming space after "*") as well as
250 fix a few clang --analyze warnings; one was a case where output_ctable emitted
253 * reader.c: appease clang --analyze
333 * yaccpar.skel: use YYINT's to replace short's as in btyaccpar.skel
426 use YYINT typedef from Tom Shield's btyacc changes to replace explicit "short"
917 * aclocal.m4: resync with my-autoconf (fixes for clang and mingw)
925 * reader.c: fix two loop-limits found by clang 3.3 --analyze
1027 CF_CLANG_COMPILER - check if the given compiler is really clang.
[all …]
/minix3/external/bsd/bind/dist/
H A DCHANGES448 3906. [protocol] Update URI record format to comply with
772 a TSIG key in named.conf format without comments.
1421 newline format. [RT #22067]
1455 when loading zones in map format. [RT #33381]
1542 3567. [bug] Silence clang static analyzer warnings. [RT #33365]
1552 3562. [func] Update map file header format to include a SHA-1 hash
1618 3539. [port] win32: timestamp format didn't match other platforms.
1676 3524. [func] Added an alternate statistics channel in JSON format,
1845 3475. [cleanup] Changed name of 'map' zone file format (previously
1919 3449. [bug] gen.c: use the pre-processor to construct format
[all …]
/minix3/share/mk/
H A Dbsd.README8 Note, this file is not intended to replace reading through the .mk
726 OBJECT_FMT Object file format. [set to "ELF" on architectures that
768 TOOL_AMIGATXLT Amige assembly language format translator. [amiga-txlt]
843 TOOL_MIPSELF2ECOFF Convert ELF-format executable to ECOFF for mips.
1892 ELF2ECOFF Convert ELF-format executable to ECOFF. [elf2ecoff]
1972 NOCLANGERROR If defined and clang is used as C compiler, -Werror is not
/minix3/external/bsd/libevent/dist/
H A DChangeLog20 o Add -Qunused-arguments for clang on macos (b56611d Trond Norbye)
162 o Don't do clang version detection when disabling some flags (083296b Sebastian Hahn)
409 o Add an assert to appease clang's static analyzer (b0ff7eb Sebastian Hahn)
425 o Fix compilation under LLVM/clang with --enable-gcc-warnings (ad9ff58 Sebastian Hahn)
1120 o Add an API to replace all fatal calls to exit() with a user-provided panic function.
1215 …o When building with GCC, use the "format" attribute to verify type correctness of calls to printf…
1391 o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions.