Home
last modified time | relevance | path

Searched +refs:clang +refs:completion +refs:mode (Results 1 – 23 of 23) sorted by relevance

/external/swiftshader/third_party/LLVM/utils/vim/
Dvimrc95 " Clang code-completion support. This is somewhat experimental!
97 " A path to a clang executable.
98 let g:clang_path = "clang++"
100 " A list of options to add to the clang commandline, for example to add
109 " In findstart mode, look for the beginning of the current identifier.
122 " Build a clang commandline to do code completion on stdin.
124 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c
130 " TODO: The extra space at the end is for working around clang's
131 " apparent inability to do code completion at the very end of the
133 " TODO: Is it better to feed clang the entire file instead of truncating
[all …]
/external/llvm/utils/vim/
Dvimrc102 " Clang code-completion support. This is somewhat experimental!
104 " A path to a clang executable.
105 let g:clang_path = "clang++"
107 " A list of options to add to the clang commandline, for example to add
116 " In findstart mode, look for the beginning of the current identifier.
129 " Build a clang commandline to do code completion on stdin.
131 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c
137 " TODO: The extra space at the end is for working around clang's
138 " apparent inability to do code completion at the very end of the
140 " TODO: Is it better to feed clang the entire file instead of truncating
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/vim/
Dvimrc102 " Clang code-completion support. This is somewhat experimental!
104 " A path to a clang executable.
105 let g:clang_path = "clang++"
107 " A list of options to add to the clang commandline, for example to add
116 " In findstart mode, look for the beginning of the current identifier.
129 " Build a clang commandline to do code completion on stdin.
131 \ " -cc1 -code-completion-at=-:" . l:l . ":" . l:c
137 " TODO: The extra space at the end is for working around clang's
138 " apparent inability to do code completion at the very end of the
140 " TODO: Is it better to feed clang the entire file instead of truncating
[all …]
/external/clang/include/clang/Driver/
DCC1Options.td1 //===--- CC1Options.td - Options for clang -cc1 ---------------------------===//
10 // This file defines the options accepted by clang -cc1 and clang -cc1as.
89 def analyzer_inlining_mode : Separate<["-"], "analyzer-inlining-mode">,
91 def analyzer_inlining_mode_EQ : Joined<["-"], "analyzer-inlining-mode=">, Alias<analyzer_inlining_m…
127 HelpText<"Do not remove finalize method in gc mode">;
178 HelpText<"Generate debug info with external references to clang modules"
279 HelpText<"Enable PGO instrumentation. The accepted value is clang, llvm, "
357 def code_completion_at : Separate<["-"], "code-completion-at">,
359 HelpText<"Dump code-completion information at a location">;
363 def code_completion_at_EQ : Joined<["-"], "code-completion-at=">,
[all …]
/external/llvm/docs/
DLibFuzzer.rst42 git clone https://chromium.googlesource.com/chromium/src/tools/clang
44 TMP_CLANG/clang/scripts/update.py
47 ``./third_party/llvm-build/Release+Asserts/bin/clang``)
86 clang++ -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
108clang -fsanitize-coverage=edge -fsanitize=address your_lib.cc fuzz_target.cc libFuzzer.a -o my_fuz…
185 that `N` fuzzing jobs should be run to completion (i.e. until a bug is found or
190 with each worker averaging 5 bugs by completion of the entire process.
207 In this mode the fuzzer binary can be used as a regression test (e.g. on a
246 Number of fuzzing jobs to run to completion. Default value is 0, which runs a
247 single fuzzing process until completion. If the value is >= 1, then this
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DLibFuzzer.rst81clang -g -O1 -fsanitize=fuzzer mytarget.c # Builds the fuzz target w/o san…
82clang -g -O1 -fsanitize=fuzzer,address mytarget.c # Builds the fuzz target with AS…
83clang -g -O1 -fsanitize=fuzzer,signed-integer-overflow mytarget.c # Builds the fuzz target with a …
84clang -g -O1 -fsanitize=fuzzer,memory mytarget.c # Builds the fuzz target with MS…
93 clang -fsanitize=fuzzer-no-link mytarget.c
174 that `N` fuzzing jobs should be run to completion (i.e. until a bug is found or
179 with each worker averaging 5 bugs by completion of the entire process.
223 In this mode the fuzzer binary can be used as a regression test (e.g. on a
274 Number of fuzzing jobs to run to completion. Default value is 0, which runs a
275 single fuzzing process until completion. If the value is >= 1, then this
[all …]
DAMDGPUUsage.rst23 Use the ``clang -target <Architecture>-<Vendor>-<OS>-<Environment>`` option to
75 Use the ``clang -mcpu <Processor>`` option to specify the AMD GPU processor. The
231 Use the ``clang -m[no-]<TargetFeature>`` option to specify the AMD GPU
889 runtime) may be embedded into the DWARF v5 line table using the ``clang
1437 mode driver to initialize and register the AQL queue with CP.
1482 10. When the kernel dispatch has completed execution, CP signals the completion
1561 address mode the apperture sizes are 2^32 bytes and the base is aligned to 2^32
1776 mode for single (32
1782 mode values are defined in
1783 … :ref:`amdgpu-amdhsa-floating-point-rounding-mode-enumeration-values-table`.
[all …]
/external/clang/include/clang/Basic/
DTokenKinds.def125 TOK(code_completion) // Code completion marker
128 TOK(comment) // Comment (only in -E -C[C] mode)
132 TOK(raw_identifier) // Used only in raw lexing mode.
526 #include "clang/Basic/OpenCLImageTypes.def"
559 // languages, but should not be disabled in strict conformance mode.
588 // Microsoft extensions which should be disabled in strict conformance mode
625 // Borland Extensions which should be disabled in strict conformance mode.
641 // These have meaning after an '@' in Objective-C mode. These define enums in
701 // Annotation for #pragma clang __debug parser_crash...
706 // Annotation for #pragma clang __debug captured...
[all …]
/external/clang/docs/
DInternalsManual.rst80 ``clang/Basic/Diagnostic*Kinds.td`` files, depending on what library will be
444 mode. Instead of formatting and printing out the diagnostics, this
448 documentation for the ``-verify`` mode can be found in the Clang API
531 The clang Driver and library are documented :doc:`here <DriverInternals>`.
599 not reading in "raw" mode) this contains a pointer to the unique hash value
731 * The lexer can operate in "raw" mode. This mode has several features that
734 This mode is used for lexing within an "``#if 0``" block, for example.
736 support the ``-C`` preprocessor mode, which passes comments through, and is
738 * The lexer can be in ``ParsingFilename`` mode, which happens when
739 preprocessing after reading a ``#include`` directive. This mode changes the
[all …]
DAutomaticReferenceCounting.rst196 implementation (and its host project), clang. "LLVM X.Y" refers to an
197 open-source release of clang from the LLVM project. "Apple X.Y" refers to an
199 prepare their own, separately-versioned clang releases and wish to maintain
326 of an object following the completion of a send of ``release`` that is not
1295 of ``self`` after the completion of a delegate init call. It is conventional,
1591 faithfully maintains their code in non-ARC mode is suffering all the
1593 non-ARC mode is likely to be unpleasantly surprised if they try to go back to
1916 #pragma clang arc_cf_code_audited begin
1918 #pragma clang arc_cf_code_audited end
/external/parameter-framework/upstream/doc/requirements/
Drequirements.md505 A mode with synchronisation on client request **SHOULD** be supported.
848 possible (tuning mode)</ko>
926 <note>User overwritten user action could be a log out, leaving some tuning mode,
950 ## Auto completion
951 This command line interface **MAY** offer argument auto completion.
1061 It will be compatible with android thank to clang's libc++"
/external/curl/
DCHANGES242 For the Linux builds, GCC 8 and 7 and clang 7 were installed, but the
244 nghttp2, while the new clang version was not used at all.
255 - travis: update clang to version 7
391 verbose mode was not acknowledged.
434 scripts/completion.pl: also generate fish completion file
1419 with spaces in them), which causes an completion script with wrong
1422 Here's a diff of the generated completion script, comparing the previous
1495 {-w,--write-out}'[Use output FORMAT after completion]':'<format>' \
1990 Since it isn't totally clang compatible, we detect this IBM clang
1991 front-end and if detected, avoids some clang specific magic.
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.7.4rc1.rst927 In SpooledTemporaryFile class mode and name properties and xreadlines method
1472 cgitb no longer prints spurious <p> tags in text mode when the logdir option
1491 Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
1652 Ensure that ctypes works on Mac OS X when Python is compiled using the clang
2274 unittest's verbose mode as well as non-verbose mode.
2453 llvm-gcc compiler. If original compiler is not available, use clang
2493 IDLE method completion now correctly works for unicode literals.
/external/python/cpython3/
DMakefile.pre.in70 # Shared libraries must be installed with executable mode on some systems;
71 # rather than figuring out exactly which, we always give them executable mode.
503 # to record its completion and avoid re-running it.
1631 # bpo-30104: dtoa.c uses union to cast double to unsigned long[2]. clang 4.0
1633 # causing rounding issues. Compile dtoa.c using -fno-strict-aliasing on clang.
1794 # mode: makefile
/external/python/cpython3/Doc/whatsnew/
D3.4.rst89 * command line option for :ref:`isolated mode <whatsnew-isolated-mode>`
138 * New command line option for :ref:`isolated mode <whatsnew-isolated-mode>`,
559 supports calculation of the mean, median, mode, variance and standard
1558 When the Python interpreter starts in :ref:`interactive mode
1561 arguments just before interactive mode is started. The check is made after the
1564 completion and history saving (in :file:`~/.python-history`) if the platform
1915 features of recent versions of GCC and clang: the false alarms in the small
1934 .. _whatsnew-isolated-mode:
1937 <using-on-misc-options>`, ``-I``, which causes it to run in "isolated mode",
1947 * Tab-completion is now enabled by default in the interactive interpreter
[all …]
/external/python/cpython3/Misc/
DHISTORY53 that the script is in CGI mode.
173 - Issue #25280: Import trace messages emitted in verbose (-v) mode are no
307 at the end if the FileInput was opened with binary mode.
384 rounding mode than datetime.timedelta to keep the property:
386 It also the rounding mode used by round(float) for example.
790 - Issue #24570: Idle: make calltip and completion boxes appear on Macs
979 - Issue #22653: Fix an assertion failure in debug mode when doing a reentrant
980 dict insertion in debug mode.
985 - Issue #22604: Fix assertion error in debug mode when dividing a complex
1129 when in failfast mode, even in the absence of failures.
[all …]
/external/openssh/
DChangeLog130 deprecated, effectively making privsep mandatory in sandboxing mode. ok
274 many bytes to discard for the work around for the attacks against CBC-mode.
1843 restore the terminal mode as needed when it is suspended at the password
1865 Avoid generate SIGTTOU when restoring the terminal mode. If we get
2065 ssh proxy mux mode (-O proxy; idea from Simon Tatham): - mux
2799 Correct LDFLAGS for clang example.
2829 for clang's integer sanitization.
2837 When using clang with -ftrapv or -sanitize=integer the tests would pass
2864 Our explicit_bzero successfully confused clang -fsanitize-memory
3556 Improve crypto ordering for Encrypt-then-MAC (EtM) mode
[all …]
/external/v8/
DChangeLog31953 [build] Use sysroot for linux compilation with clang (Chromium issues
32177 [build] Use sysroot for linux compilation with clang (Chromium issues
32310 [stubs] Extend HasProperty stub with dictionary-mode, string wrapper and
32358 Extend HasProperty stub with dictionary-mode, string wrapper and double-
33231 mode, this patch collects UseCounters for `089` in strict mode. The spec
35732 Sloppy mode webcompat: allow conflicting function declarations in blocks
35770 Array length reduction should throw in strict mode if it can't delete an
35818 Array length reduction should throw in strict mode if it can't delete an
36273 Ship ES2015 sloppy-mode const semantics (issue 3305).
36526 Ship ES2015 sloppy-mode function hoisting, let, class (issues 3305,
[all …]
/external/strace/
DChangeLog138 warning reported by clang -Wtautological-constant-out-of-range-compare.
140 build: enable gcc -Woverride-init and clang -Winitializer-overrides.
156 and clang -Winitializer-overrides.
160 macros non-trivially defined for gcc >= 4.2 and clang >= 2.8.
168 tests: workaround clang -Wunneeded-internal-declaration bug.
170 to workaround clang -Wunneeded-internal-declaration bug.
173 to workaround clang -Wunneeded-internal-declaration bug.
288 * net.c: Include "xlat/ethernet_protocols.h" in XLAT_MACROS_ONLY mode.
320 mode.
393 * block.c: Include "xlat/block_ioctl_cmds.h" in XLAT_MACROS_ONLY mode.
[all …]
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt2012 嚹 < a\-particle\-implying\-completion;
2814 異步傳輸模式 < asynchronous\-transfer\-mode;
9478 傳輸模式 < transfer\-mode;
19893 吰 < clang;
20853 模式 < mode;
21511 非同步傳輸模式 > asynchronous\-transfer\-mode;
21573 異步傳輸模式 > asynchronous\-transfer\-mode;
22996 傳輸模式 > transfer\-mode;
35370 模式 > mode;
37296 嚹 > a\-particle\-implying\-completion;
[all …]
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt37187 clang %19442 klæŋ
40414 completion %32723 kəmplˈiʃən
130010 mode %33763 mod
Dinternal_raw_IPA.txt31391 clang %27678 klæŋ
34083 completion %42723 kəmplˈiʃən
109544 mode %44158 mod