Searched +refs:clang +refs:format +refs:region (Results 1 – 19 of 19) sorted by relevance
/external/clang/docs/ |
D | ClangFormat.rst | 13 :program:`clang-format` is located in `clang/tools/clang-format` and can be used 14 to format C/C++/Obj-C code. 18 $ clang-format -help 19 OVERVIEW: A tool to format C/C++/Java/JavaScript/Objective-C/Protobuf code. 27 USAGE: clang-format [options] [<file> ...] 31 Clang-format options: 33 -assume-filename=<string> - When reading from stdin, clang-format assumes this 37 clang-format from an editor integration 41 fallback in case clang-format is invoked with 42 -style=file, but can not find the .clang-format [all …]
|
D | SourceBasedCodeCoverage.rst | 11 This document explains how to use clang's source-based code coverage feature. 61 % clang++ -fprofile-instr-generate -fcoverage-mapping foo.cc -o foo 124 region counts (even in macro expansions): 184 profile format. Raw profiles may be dependent on the specific compiler 189 These formats are not forwards-compatible: i.e, a tool which uses format 190 version X will not be able to understand format version (X+k). 192 * There is a third format in play: the format of the coverage mappings emitted
|
D | AddressSanitizer.rst | 33 make sure to use ``clang`` (not ``ld``) for the final link step. When linking 51 % clang -O1 -g -fsanitize=address -fno-omit-frame-pointer example_UseAfterFree.cc 58 % clang -O1 -g -fsanitize=address -fno-omit-frame-pointer -c example_UseAfterFree.cc 60 % clang -g -fsanitize=address example_UseAfterFree.o 96 0x7f7ddab8c084 is located 4 bytes inside of 400-byte region [0x7f7ddab8c080,0x7f7ddab8c210) 168 Use the following format to specify the names of the functions or libraries
|
/external/llvm/docs/ |
D | CoverageMappingFormat.rst | 2 :format: html 14 LLVM's code coverage mapping format is used to provide code coverage 24 then we briefly desribe LLVM's code coverage mapping format and the 25 way that Clang and LLVM's code coverage tool work with this format. After 26 the basics are down, more advanced features of the coverage mapping format 40 ``clang -o test -fprofile-instr-generate -fcoverage-mapping test.c`` 56 LLVM's code coverage mapping format is designed to be a self contained 57 data format, that can be embedded into the LLVM IR and object files. 58 It's described in this document as a **mapping** format because its goal is 65 1. When clang compiles a source file with ``-fcoverage-mapping``, it [all …]
|
D | ExceptionHandling.rst | 12 exception handling in LLVM. It describes the format that LLVM exception 36 exception frame format can be found at `Exception Frames 436 a destination address by `llvm.eh.sjlj.longjmp`_. The buffer format and the 438 ``__builtin_setjmp`` implementation allowing code built with the clang and GCC 502 The format of this call frame information (CFI) is often platform-dependent, 503 however. ARM, for example, defines their own format. Apple has their own compact 504 unwind info format. On Windows, another format is used for all architectures 513 referred to as the language-specific data area (LSDA). The format of the LSDA 592 if the exception came from a particular DLL or code region, or if code faulted
|
D | LangRef.rst | 457 On targets that use the ELF object file format, default visibility 582 region of memory, and all memory objects in LLVM are accessed through 1197 have a particular format. Specifically, it must begin with a sequence of 1203 makes the format of the prologue data highly target dependent. 1500 `SafeStack <http://clang.llvm.org/docs/SafeStack.html>`_ 2231 source through the clang front end, for example. It is then preserved through 2697 values are represented in their IEEE hexadecimal format so that assembly 2704 precision, respectively. Hexadecimal format is always used for long 2705 double, and there are three forms of long double. The 80-bit format used 2707 128-bit format used by PowerPC (two adjacent doubles) is represented by [all …]
|
/external/llvm/docs/CommandGuide/ |
D | llvm-cov.rst | 14 work with ``gcov``\-style coverage or with ``clang``\'s instrumentation 180 ``clang`` use the ``-fprofile-instr-generate`` and ``-fcoverage-mapping`` 181 flags. If linking with the ``clang`` driver, pass ``-fprofile-instr-generate`` 188 typically called ``default.profraw``, which can be converted to a format that 212 Show the execution counts for each region by displaying a caret that points to 213 the character where the region starts. 217 Show the execution counts for each line if there is only one region on the 239 .. option:: -format=<FORMAT> 241 Use the specified output format. The supported formats are: "text", "html". 261 .. option:: -region-coverage-gt=<N> [all …]
|
/external/icu/icu4c/source/i18n/ |
D | Android.bp | 100 "format.cpp", 143 "region.cpp", 225 clang: true,
|
/external/clang/include/clang/Basic/ |
D | AttrDocs.td | 13 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… 186 a future version of clang. Also, the ABI is not standardized and the name 289 on when overloads are resolved. In the example below, clang will emit a 325 instruct clang to call ``__builtin_object_size(param, Type)`` at each callsite 547 // void nodupfunc() [[clang::noduplicate]]; 832 let Heading = "nodiscard, warn_unused_result, clang::warn_unused_result, gnu::warn_unused_result"; [all …]
|
D | DiagnosticSemaKinds.td | 2225 "strftime format attribute requires 3rd parameter to be 0">; 2227 "format attribute requires variadic function">; 2228 def err_format_attribute_not : Error<"format argument not %0">; 2231 "format attribute cannot specify the implicit this argument as the format " 5558 "format string is not a string literal (potentially insecure)">, 5561 "format string is not a string literal">, 6622 "%select{function|block|method|constructor}2; expected type from format " 6627 "%select{function|block|method|constructor}2; expected type from format " 6651 "%select{function|block|method|constructor}2; expected type from format " 6826 "accepted due to -fheinous-gnu-extensions, but clang may remove support " [all …]
|
/external/clang/test/ARCMT/ |
D | objcmt-arc-cf-annotations.m | 8 #define CF_IMPLICIT_BRIDGING_ENABLED _Pragma("clang arc_cf_code_audited begin") 16 #define CF_IMPLICIT_BRIDGING_DISABLED _Pragma("clang arc_cf_code_audited end") 132 extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); 278 - (CGImageRef)createCGImage:(CIImage *)im fromRect:(CGRect)r format:(CIFormat)f colorSpace:(CGC… 379 // Test case 'f4' differs for region store and basic store. See 380 // retain-release-region-store.m and retain-release-basic-store.m. 751 // <rdar://problem/6257780> clang checker fails to catch use-after-release 941 // <rdar://problem/6902710> clang: false positives w/QC and CoreImage methods 950 [context createCGImage:img fromRect:rect format:form colorSpace:cs]; // expected-warning{{leak}} 955 // misinterpreted by clang scan-build [all …]
|
D | objcmt-arc-cf-annotations.m.result | 8 #define CF_IMPLICIT_BRIDGING_ENABLED _Pragma("clang arc_cf_code_audited begin") 16 #define CF_IMPLICIT_BRIDGING_DISABLED _Pragma("clang arc_cf_code_audited end") 138 extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); 296 - (CGImageRef)createCGImage:(CIImage *)im fromRect:(CGRect)r format:(CIFormat)f colorSpace:(CGC… 409 // Test case 'f4' differs for region store and basic store. See 410 // retain-release-region-store.m and retain-release-basic-store.m. 793 // <rdar://problem/6257780> clang checker fails to catch use-after-release 983 // <rdar://problem/6902710> clang: false positives w/QC and CoreImage methods 992 [context createCGImage:img fromRect:rect format:form colorSpace:cs]; // expected-warning{{leak}} 997 // misinterpreted by clang scan-build [all …]
|
/external/valgrind/ |
D | NEWS | 117 in the region of 0% to 7% for those targets only. 294 342008 valgrind.h needs type cast [..] for clang/llvm in 64-bit mode 296 342063 wrong format specifier for test mcblocklistsearch in gdbserver_tests 399 348565 Fix detection of command line option availability for clang 403 348890 Fix clang warning about unsupported --param inline-unit-growth=900 750 329694 clang warns about using uninitialized variable 802 334727 Build fails with -Werror=format-security 1089 307955 Building valgrind 3.7.0-r4 fails in Gentoo AMD64 when using clang 1138 315345 cl-format.xml and callgrind/dump.c don't agree on using cfl= or cfi= 1289 n-i-bz OSX build w/ clang: asserts at startup [all …]
|
/external/strace/ |
D | ChangeLog | 542 into the output format group. 545 format group. 650 using %d format. 695 * sg_io_v3.c (decode_response): Print duration field using %u format. 711 sg_io_v3: print status fields using %#x format specifier. 712 The formerly used format string %02x led to misleading output as there 717 using %#x format specifier instead of %02x. 725 and device_status fields using %#x format specifier instead of %u. 733 using ("%#" PRI__x64) format string. 735 format string. [all …]
|
/external/e2fsprogs/ |
D | RELEASE-NOTES | 157 Fixed coverity, sparse, gcc -Wall, and clang warnings/nits. 227 We now use a new e2undo file format which is much more efficient and 362 Fixed coverity, sparse gcc -Wall, and clang warnings/nits. 468 Fixed coverity, sparce gcc -Wall, and clang warnings/nits. 514 format, but which no longer needs to use the meta_bg file system 515 format any longer. This typically happened with large (> 16TB) file 527 and ASCII format. 814 Fixed a lot of coverity, sparce gcc -Wall, and clang warnings/nits. 899 the changes to enable the qcow2 format broke this e2image mode. 973 Fix sparse, gcc -Wall and clang nits. [all …]
|
/external/e2fsprogs/debian/ |
D | changelog | 166 * Clean up gcc/clang warnings 183 * The new undo file format is much faster/efficent than before 227 * Add support for the jbd2 checksum v3 format 228 * New dumpe2fs format 269 hex and ASCII format. 412 * Fix printf type format mismatch in e2image 711 eventually be going away in the ext4 file system format) 827 * Convert to debian source 3.0 (quilt) format 946 * The e2image program now supports the qcow2 format, a more efficient 1027 * Debugfs now uses a more concise format for listing extents in its [all …]
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 14 邊幣 < border\-region\-currency\-\(consisting\-of\-the\-currency\-notes\-issued\-by\-the\-border\-reg… 146 阿不來提\.阿不都熱西提 < abdulaidi\-amudurexiti\-\(chairman\-of\-xinjiang\-autonomous\-region\); 529 烏魯木齊 < urumqi\-\(capital\-of\-xinjiang\-autonomous\-region\); 1230 首府 < capital\-city\-of\-an\-autonomous\-region; 1357 肓 < region\-between\-heart\-and\-diaphragm; 1465 新疆 < xinjiang\-\(uygur\-autonomous\-region\); 1786 特區 < special\-\(administrative\)\-region; 2206 特別行政區 < special\-administrative\-region; 2483 自治區 < autonomous\-region\-\(in\-china\); 5044 亞洲與太平洋地區 < asia\-pacific\-region; [all …]
|
/external/clang/test/Analysis/ |
D | retain-release.m | 2 …tainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -fblocks -verify -… 3 …tainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -fblocks -verify -… 120 extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); 273 - (CGImageRef)createCGImage:(CIImage *)im fromRect:(CGRect)r format:(CIFormat)f colorSpace:(CGC… 374 // Test case 'f4' differs for region store and basic store. See 375 // retain-release-region-store.m and retain-release-basic-store.m. 746 // <rdar://problem/6257780> clang checker fails to catch use-after-release 936 // <rdar://problem/6902710> clang: false positives w/QC and CoreImage methods 945 [context createCGImage:img fromRect:rect format:form colorSpace:cs]; // expected-warning{{leak}} 950 // misinterpreted by clang scan-build [all …]
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|