Home
last modified time | relevance | path

Searched +full:- +full:wformat (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/ot-br-posix/examples/platforms/nxp/linux-imx/
Daarch64.cmake29 set(CMAKE_C_COMPILER aarch64-poky-linux-gcc)
30 set(CMAKE_CXX_COMPILER aarch64-poky-linux-g++)
33 set(CMAKE_ASM_COMPILER aarch64-poky-linux-gcc)
34 find_program(CMAKE_AR aarch64-poky-linux-gcc-ar DOC "Archiver" REQUIRED)
35-mcpu=cortex-a53 -march=armv8-a+crc+crypto -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wfor…
36-mcpu=cortex-a53 -march=armv8-a+crc+crypto -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wfor…
37-mcpu=cortex-a53 -march=armv8-a+crc+crypto -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wfor…
38 set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional CFLAGS for release")
39 set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional CXXFLAGS for release")
40 set(CMAKE_ASM_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional ASM FLAGS for release")
[all …]
Darm.cmake30 set(CMAKE_C_COMPILER arm-poky-linux-gnueabi-gcc)
31 set(CMAKE_CXX_COMPILER arm-poky-linux-gnueabi-g++)
34 set(CMAKE_ASM_COMPILER arm-poky-linux-gnueabi-gcc)
35 find_program(CMAKE_AR arm-poky-linux-gnueabi-gcc-ar DOC "Archiver" REQUIRED)
36-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -O2 -D_FORTIFY_SOURC…
37-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong --sysroot=$ENV{SDKTAR…
38-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong --sysroot=$ENV{SDKTAR…
39 set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional CFLAGS for release")
40 set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional CXXFLAGS for release")
41 set(CMAKE_ASM_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional ASM FLAGS for release")
[all …]
/external/sdv/vsomeip/third_party/boost/format/test/
Dformat_test_wstring.cpp1 // ------------------------------------------------------------------------------
3 // ------------------------------------------------------------------------------
11 // ------------------------------------------------------------------------------
22 using boost::wformat; in main()
23 wformat wfmter(L"%%##%%##%%1 %1%00"); in main()
25 BOOST_ERROR("Basic w-parsing Failed"); in main()
26 if(str( wformat(L"%%##%#x ##%%1 %s00") % 20 % L"Escaped OK" ) != L"%##0x14 ##%1 Escaped OK00") in main()
27 BOOST_ERROR("Basic wp-parsing Failed") ; in main()
30 wformat wfmt(L"%1$.1f"); in main()
33 wformat wfmt2(L"%1$.0f %%"); in main()
[all …]
/external/selinux/libselinux/utils/
DMakefile7 ifeq ($(shell $(CC) -v 2>&1 | grep "clang"),)
14 EXTRA_CFLAGS = -fipa-pure-const -Wpacked-bitfield-compat -Wsync-nand -Wcoverage-mismatch \
15 -Wcpp -Wformat-contains-nul -Wnormalized=nfc -Wsuggest-attribute=const \
16 -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wtrampolines -Wjump-misses-init \
17 -Wno-suggest-attribute=pure -Wno-suggest-attribute=const
21 CFLAGS ?= -O -Wall -W -Wundef -Wformat-y2k -Wformat-security -Winit-self -Wmissing-include-dirs \
22 -Wunused -Wunknown-pragmas -Wstrict-aliasing -Wshadow -Wpointer-arith \
23 -Wbad-function-cast -Wcast-align -Wwrite-strings -Waggregate-return \
24 -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes \
25 -Wmissing-declarations -Wmissing-noreturn -Wmissing-format-attribute \
[all …]
/external/clang/test/Preprocessor/
D_Pragma-location.c1 // RUN: %clang_cc1 %s -fms-extensions -E | FileCheck %s
2 // We use -fms-extensions to test both _Pragma and __pragma.
4 // A long time ago the pragma lexer's buffer showed through in -E output.
5 // CHECK-NOT: scratch space
13 // CHECK-NEXT: # 11 "{{.*}}_Pragma-location.c" in __pragma()
14 // CHECK-NEXT: #pragma pack(push) in __pragma()
15 // CHECK-NEXT: # 11 "{{.*}}_Pragma-location.c" in __pragma()
16 // CHECK-NEXT: #pragma pack(push) in __pragma()
20 _Pragma("clang diagnostic ignored \"-Wformat-extra-args\"") in __pragma()
25 _Pragma("clang diagnostic ignored \"-Wformat-extra-args\"") in __pragma()
[all …]
/external/cronet/third_party/libc++/src/include/
Dformat1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
34 basic_format_string(runtime-format-string<charT> s) noexcept : str(s.str) {} // since C++26
45 template<class charT> struct runtime-format-string { // since C++26, exposition-only
47 basic_string_view<charT> str; // exposition-only
50 runtime-format-string(basic_string_view<charT> s) noexcept : str(s) {}
52 runtime-format-string(const runtime-format-string&) = delete;
53 runtime-format-string& operator=(const runtime-format-string&) = delete;
[all …]
/external/clang/test/Sema/
Dformat-strings-darwin.c1 // RUN: %clang_cc1 -fsyntax-only -verify -triple i386-apple-darwin9 -Wformat-non-iso -DALLOWED %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -triple thumbv6-apple-ios4.0 -Wformat-non-iso -DALLOWED %s
4 // RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-mingw32 -Wformat-non-iso %s
5 // RUN: %clang_cc1 -fsyntax-only -verify -triple i686-pc-win32 -Wformat-non-iso %s
7 // RUN: %clang_cc1 -fsyntax-only -verify -triple i686-linux-gnu -Wformat-non-iso %s
8 // RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-unknown-freebsd -Wformat-non-iso %s
25 …// expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
26 …// expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
27 …// expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
28 …// expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{d… in test()
[all …]
Dformat-strings.c1 // RUN: %clang_cc1 -fsyntax-only -verify -Wformat-nonliteral -isystem %S/Inputs %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -Wformat-nonliteral -isystem %S/Inputs -fno-signed-char %s
11 int printf(const char *restrict, ...); // expected-note{{passing argument to parameter here}}
19 int vsprintf(char *restrict, const char *restrict, va_list); // expected-note{{passing argument to …
31 printf(s); // expected-warning {{format string is not a string literal}} in check_string_literal()
32 // expected-note@-1{{treat the string as an argument to avoid this}} in check_string_literal()
33 vprintf(s,ap); // expected-warning {{format string is not a string literal}} in check_string_literal()
34 fprintf(fp,s); // expected-warning {{format string is not a string literal}} in check_string_literal()
35 // expected-note@-1{{treat the string as an argument to avoid this}} in check_string_literal()
36 vfprintf(fp,s,ap); // expected-warning {{format string is not a string literal}} in check_string_literal()
[all …]
/external/clang/test/SemaCXX/
Dprintf-block.cpp1 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wformat -verify %s -Wno-error=non-pod-varargs
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wformat -verify %s -Wno-error=non-pod-varargs -std=c++98
3 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wformat -verify %s -Wno-error=non-pod-varargs -std=c++11
18 block(n, "%s %d", str, n); // no-warning in test_block()
21 …// expected-warning@-2{{cannot pass non-POD object of type 'HasNoCStr' to variadic block; expected… in test_block()
23 // expected-warning@-4{{format specifies type 'char *' but the argument has type 'HasNoCStr'}} in test_block()
25 // expected-warning@-6{{format specifies type 'char *' but the argument has type 'int'}} in test_block()
/external/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/libtextclassifier/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/cronet/third_party/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/angle/third_party/abseil-cpp/absl/copts/
DGENERATED_AbseilCopts.cmake22 "-Wno-deprecated-declarations"
23 "-Wno-implicit-int-conversion"
24 "-Wno-missing-prototypes"
25 "-Wno-missing-variable-declarations"
26 "-Wno-shadow"
27 "-Wno-shorten-64-to-32"
28 "-Wno-sign-compare"
29 "-Wno-sign-conversion"
30 "-Wno-unreachable-code-loop-increment"
31 "-Wno-unused-function"
[all …]
DGENERATED_copts.bzl23 "-Wno-deprecated-declarations",
24 "-Wno-implicit-int-conversion",
25 "-Wno-missing-prototypes",
26 "-Wno-missing-variable-declarations",
27 "-Wno-shadow",
28 "-Wno-shorten-64-to-32",
29 "-Wno-sign-compare",
30 "-Wno-sign-conversion",
31 "-Wno-unreachable-code-loop-increment",
32 "-Wno-unused-function",
[all …]
/external/selinux/libselinux/src/
DMakefile5 PYPREFIX ?= $(shell $(PYTHON) -c 'import sys;print("python-%d.%d" % sys.version_info[:2])')
8 PKG_CONFIG ?= pkg-config
15 PYINC ?= $(shell $(PKG_CONFIG) --cflags $(PYPREFIX))
16 PYLIBS ?= $(shell $(PKG_CONFIG) --libs $(PYPREFIX))
17 PYTHONLIBDIR ?= $(shell $(PYTHON) -c "import sysconfig; print(sysconfig.get_path('platlib', vars={'…
18 PYCEXT ?= $(shell $(PYTHON) -c 'import importlib.machinery;print(importlib.machinery.EXTENSION_SUFF…
19 RUBYINC ?= $(shell $(RUBY) -e 'puts "-I" + RbConfig::CONFIG["rubyarchhdrdir"] + " -I" + RbConfig::C…
20 RUBYLIBS ?= $(shell $(RUBY) -e 'puts "-L" + RbConfig::CONFIG["libdir"] + " -L" + RbConfig::CONFIG["…
21 RUBYINSTALL ?= $(shell $(RUBY) -e 'puts RbConfig::CONFIG["vendorarchdir"]')
28 ifeq ($(shell $(CC) -v 2>&1 | grep "clang"),)
[all …]
/external/curl/CMake/
DPickyWarnings.cmake21 # SPDX-License-Identifier: curl
31 …VERSION_LESS 3.23.0) OR # check_symbol_exists() incompatible with GCC -pedantic-errors in earlier…
33 set(WPICKY "${WPICKY} -pedantic-errors")
40 # https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
42 # WPICKY_ENABLE = Options we want to enable as-is.
45 # Prefer the -Wextra alias with clang.
47 set(WPICKY_ENABLE "-Wextra")
49 set(WPICKY_ENABLE "-W")
53 -Wall -pedantic
56 # ----------------------------------
[all …]
/external/lzma/C/
Dwarn_gcc.mak4 -Waddress \
5 -Waggressive-loop-optimizations \
6 -Wattributes \
7 -Wbool-compare \
8 -Wcast-align \
9 -Wcomment \
10 -Wdiv-by-zero \
11 -Wduplicated-cond \
12 -Wformat-contains-nul \
13 -Winit-self \
[all …]
/external/mbedtls/
DCMakeLists.txt4 # - Include directories:
13 # - MBEDTLS_TARGET_PREFIX: CMake targets are designed to be alterable by calling
63 option(GEN_FILES "Generate the auto-generated files as needed" OFF) # off in development
65 option(GEN_FILES "Generate the auto-generated files as needed" OFF)
82 # Warning string - created as a list for compatibility with CMake 2.8
84 set(CTR_DRBG_128_BIT_KEY_WARN_L2 "**** Using 128-bit keys for CTR_DRBG limits the security of gene…
85 …BIT_KEY_WARN_L3 "**** keys and operations that use random values generated to 128-bit security\n")
108 # If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
109 … ${MBEDTLS_PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/config.py -f ${CMAKE_CURRENT_SOU…
135 # Linking to non-existent file is not desirable. At best you will have a
[all …]

12345678910