Home
last modified time | relevance | path

Searched full:cxx (Results 1 – 25 of 2877) sorted by relevance

12345678910>>...116

/external/lzma/CPP/7zip/
D7zip_gcc.mak239 # ifeq ($(CXX), $(CROSS_COMPILE)g++)
258 $(CXX) -o $(PROGPATH) $(LFLAGS_ALL)
261 $(CXX) -static -o $(PROGPATH_STATIC) $(LFLAGS_ALL)
281 $(CXX) $(CXXFLAGS) $<
285 $(CXX) $(CXXFLAGS) $<
287 $(CXX) $(CXXFLAGS) $<
290 $(CXX) $(CXXFLAGS) $<
293 $(CXX) $(CXXFLAGS) $<
295 $(CXX) $(CXXFLAGS) $<
297 $(CXX) $(CXXFLAGS) $<
[all …]
/external/jemalloc_new/
D.travis.yml7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
11 …env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bo…
13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
19 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
21 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-a…
23 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno…
25 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLA…
27 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAG…
29 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXT…
[all …]
/external/icu/icu4c/source/
DrunConfigureICU63 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
64 zOS Use the IBM cxx compiler on z/OS (os/390)
65 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2
144 CXX=`which xlclang++`; export CXX
145 if [ ! -x $CXX ]; then
155 CXX=g++; export CXX
166 CXX=`which ibm-clang++_r`; export CXX
167 if [ ! -x $CXX ]; then
177 CXX=`which CC`; export CXX
185 CXX=g++; export CXX
[all …]
/external/libcxx/utils/libcxx/test/
Dconfig.py64 self.cxx = None
160 self.lit_config.note('Using compiler: %s' % self.cxx.path)
161 self.lit_config.note('Using flags: %s' % self.cxx.flags)
162 if self.cxx.use_modules:
164 self.cxx.modules_flags)
166 % self.cxx.compile_flags)
167 if len(self.cxx.warning_flags):
168 self.lit_config.note('Using warnings: %s' % self.cxx.warning_flags)
169 self.lit_config.note('Using link flags: %s' % self.cxx.link_flags)
183 self.cxx,
[all …]
/external/cronet/third_party/icu/source/
DrunConfigureICU62 TRU64V5.1/CXX Use the Compaq cxx compiler on Tru64 (OSF)
63 zOS Use the IBM cxx compiler on z/OS (os/390)
64 zOSV1R2 Use the IBM cxx compiler for z/OS 1.2
143 CXX=`which xlclang++`; export CXX
144 if [ ! -x $CXX ]; then
154 CXX=g++; export CXX
165 CXX=`which ibm-clang++_r`; export CXX
166 if [ ! -x $CXX ]; then
176 CXX=`which CC`; export CXX
184 CXX=g++; export CXX
[all …]
/external/rust/cxx/macro/src/
Dexpand.rs191 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
195 type Kind = ::cxx::kind::Trivial; in expand_struct()
219 ::cxx::private::prevent_unwind(__fn, || *lhs == *rhs) in expand_struct_operators()
232 ::cxx::private::prevent_unwind(__fn, || *lhs != *rhs) in expand_struct_operators()
246 ::cxx::private::prevent_unwind(__fn, || *lhs < *rhs) in expand_struct_operators()
258 ::cxx::private::prevent_unwind(__fn, || *lhs <= *rhs) in expand_struct_operators()
271 ::cxx::private::prevent_unwind(__fn, || *lhs > *rhs) in expand_struct_operators()
283 ::cxx::private::prevent_unwind(__fn, || *lhs >= *rhs) in expand_struct_operators()
298 ::cxx::private::prevent_unwind(__fn, || ::cxx::private::hash(this)) in expand_struct_operators()
367 unsafe impl ::cxx::ExternType for #ident { in expand_enum()
[all …]
Dderive.rs21 Trait::Eq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)), in expand_struct()
23 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_struct()
25 Trait::PartialEq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)), in expand_struct()
63 traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)); in expand_enum()
67 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_enum()
70 traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)); in expand_enum()
89 traits.push(quote!(::cxx::core::cmp::Eq)); in expand_enum()
92 traits.push(quote!(::cxx::core::cmp::PartialEq)); in expand_enum()
105 impl #generics ::cxx::core::marker::Copy for #ident #generics {} in struct_copy()
124 #(#fields: ::cxx::core::clone::Clone::clone(#values),)* in struct_clone()
[all …]
/external/rust/cxx/book/src/
Dtutorial.md2 # Tutorial: CXX blobstore client
11 <https://github.com/dtolnay/cxx>. To try it out directly, run `cargo run` from
20 projects. (CXX works with other build systems too; refer to chapter 5.)
22 Create a blank Cargo project: `mkdir cxx-demo`; `cd cxx-demo`; `cargo init`.
24 Edit the Cargo.toml to add a dependency on the `cxx` crate:
29 ...name = "cxx-demo"
34 cxx = "1.0"
41 CXX relies on a description of the function signatures that will be exposed from
43 in a Rust module annotated with the `#[cxx::bridge]` attribute macro.
51 #[cxx::bridge]
[all …]
Dextern-c++.md5 #[cxx::bridge]
16 The `extern "C++"` section of a CXX bridge declares C++ types and signatures to
28 # #[cxx::bridge]
51 **Thread safety:** Be aware that CXX does not assume anything about the thread
53 CXX produces for you in Rust *do not* come with `Send` and `Sync` impls. If you
59 # #[cxx::bridge]
87 in are accurate; that would be unreasonable. CXX performs static assertions that
101 #[cxx::bridge]
137 #[cxx::bridge]
161 #[cxx::bridge(namespace = "path::to")]
[all …]
/external/sdv/vsomeip/third_party/boost/predef/
Dazure-pipelines.yml35 …GCC 10 (GNU): { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc, B2_ARGS: 'c…
36 …GCC 10 (ISO): { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc, B2_ARGS: 'c…
37 GCC 10: { CXX: g++-10, PACKAGES: g++-10, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
38 GCC 9: { CXX: g++-9, PACKAGES: g++-9, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
39 GCC 8: { CXX: g++-8, PACKAGES: g++-8, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
40 GCC 7: { CXX: g++-7, PACKAGES: g++-7, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
41 GCC 6: { CXX: g++-6, PACKAGES: g++-6, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
42 GCC 5: { CXX: g++-5, PACKAGES: g++-5, VM_IMAGE: 'ubuntu-18.04', TOOLSET: gcc }
43 GCC 4.9: { CXX: g++-4.9, PACKAGES: g++-4.9, VM_IMAGE: 'ubuntu-16.04', TOOLSET: gcc }
44 GCC 4.8: { CXX: g++-4.8, PACKAGES: g++-4.8, VM_IMAGE: 'ubuntu-16.04', TOOLSET: gcc }
[all …]
/external/google-fruit/extras/scripts/
Dpostsubmit-helper.sh12 export CXX=g++-4.9
17 export CXX=g++-5
22 export CXX=g++-6
27 export CXX=g++-7
32 export CXX=g++-8
37 export CXX=g++-9
42 export CXX=g++-10
47 export CXX=g++-11
52 export CXX=g++-12
57 export CXX=g++-13
[all …]
/external/llvm/test/CodeGen/WinEH/
Dwineh-noret-cleanup.ll1 ; RUN: sed -e s/.Cxx:// %s | llc -mtriple=x86_64-pc-windows-msvc | FileCheck %s --check-prefix=CXX
10 ;Cxx: define void @test() personality i32 (...)* @__CxxFrameHandler3 {
20 ;Cxx: %catch = catchpad within %cs1 [i8* null, i32 u0x40, i8* null]
40 ;Cxx: %catch2 = catchpad within %cs2 [i8* null, i32 u0x40, i8* null]
45 ; CXX-LABEL: test:
46 ; CXX-LABEL: $ip2state$test:
47 ; CXX-NEXT: .long .Lfunc_begin0@IMGREL
48 ; CXX-NEXT: .long -1
49 ; CXX-NEXT: .long .Ltmp0@IMGREL+1
50 ; CXX-NEXT: .long 1
[all …]
/external/FP16/
Dconfigure.py16 fp16_tables = build.cxx("tables.cc")
18 [build.cxx("ieee-to-fp32-bits.cc"), fp16_tables])
20 [build.cxx("ieee-to-fp32-value.cc"), fp16_tables])
22 [build.cxx("ieee-from-fp32-value.cc"), fp16_tables])
25 [build.cxx("alt-to-fp32-bits.cc"), fp16_tables])
27 [build.cxx("alt-to-fp32-value.cc"), fp16_tables])
29 [build.cxx("alt-from-fp32-value.cc"), fp16_tables])
33 …build.unittest("alt-xmm-to-fp32-ymm-avx", [build.cxx("peachpy/alt-xmm-to-fp32-xmm-avx.cc"), stubs])
34 …build.unittest("alt-xmm-to-fp32-ymm-avx2", [build.cxx("peachpy/alt-xmm-to-fp32-ymm-avx2.cc"), stub…
37 build.unittest("ieee-to-fp32-psimd", build.cxx("ieee-to-fp32-psimd.cc"))
[all …]
/external/nanopb-c/tests/cxx_main_program/
DSConscript10 # Copy the files to .cxx extension in order to force C++ build.
12 env.Command("pb_encode.cxx", "#../pb_encode.c", c)
13 env.Command("pb_decode.cxx", "#../pb_decode.c", c)
14 env.Command("pb_common.cxx", "#../pb_common.c", c)
16 env.Command("alltypes.pb.cxx", "$BUILD/alltypes/alltypes.pb.c", c)
17 env.Command("encode_alltypes.cxx", "$BUILD/alltypes/encode_alltypes.c", c)
18 env.Command("decode_alltypes.cxx", "$BUILD/alltypes/decode_alltypes.c", c)
21 enc = env.Program(["encode_alltypes.cxx", "alltypes.pb.cxx", "pb_encode.cxx", "pb_common.cxx"])
22 dec = env.Program(["decode_alltypes.cxx", "alltypes.pb.cxx", "pb_decode.cxx", "pb_common.cxx"])
/external/rust/cxx/syntax/
Dmod.rs52 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro
68 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro
70 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro
84 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro
89 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build
91 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build
99 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build
105 #[allow(dead_code)] // only used by cxx-build, not cxxbridge-macro
109 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build
111 #[allow(dead_code)] // only used by cxxbridge-macro, not cxx-build
[all …]
/external/elfutils/debuginfod/
DChangeLog3 * debuginfod.cxx (groom): Fix -r / -X logic.
7 * debuginfod.cxx (archive_classify, scan_archive_file): Catch and
19 * debuginfod.cxx (extract_section, handle_buildid_r_match): Ditto.
29 * debuginfod.cxx (extract_section, handle_buildid_r_match): Ditto.
60 * debuginfod.cxx (default_concurrency): New function to guess a
88 * debuginfod.cxx (handle_buildid): Correctly manage lifetime
108 * debuginfod.cxx (extract_section): New function.
128 * debuginfod.cxx (main): Report libmicrohttpd version.
149 * debuginfod.cxx (handle_buildid): Clean up header forwarding
162 * debuginfod.cxx (handle_buildid): Add headers prefixed with
[all …]
/external/angle/build/toolchain/linux/
DBUILD.gn37 cxx = "${toolprefix}g++"
40 ld = cxx
58 cxx = "${toolprefix}g++"
61 ld = cxx
87 cxx = "g++"
92 ld = cxx
223 cxx = "g++"
228 ld = cxx
261 cxx = " ${toolprefix}g++"
263 ld = cxx
[all …]
/external/cronet/build/toolchain/linux/
DBUILD.gn37 cxx = "${toolprefix}g++"
40 ld = cxx
58 cxx = "${toolprefix}g++"
61 ld = cxx
87 cxx = "g++"
92 ld = cxx
223 cxx = "g++"
228 ld = cxx
261 cxx = " ${toolprefix}g++"
263 ld = cxx
[all …]
/external/angle/build/rust/
DBUILD.gn21 # The version of cxx under //third_party/rust/chromium_crates_io/vendor.
22 # Update this whenever cxx is rolled. Also update the version number in the
23 # //third_party/rust/cxx/v1/cxx.h header.
26 # The required dependencies for cxx-generated bindings, that must be included
30 "//third_party/rust/chromium_crates_io/vendor/cxx-${cxx_version}/include/cxx.h",
31 "//third_party/rust/chromium_crates_io/vendor/cxx-${cxx_version}/src/cxx.cc",
33 # Our version-independent forwarding header, which we patch cxx.cc to
35 "//third_party/rust/cxx/v1/cxx.h",
53 # Depending on the C++ bindings side of cxx then requires also depending
61 # The required dependencies for cxx-generated bindings, that must be
[all …]
/external/clang/test/Driver/
Dnacl-direct.c105 // RUN: | FileCheck --check-prefix=CHECK-ARM-CXX %s
106 // CHECK-ARM-CXX: {{.*}}clang{{.*}}" "-cc1"
107 // CHECK-ARM-CXX: "-resource-dir" "foo"
108 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}include{{/|\\\…
109 // CHECK-ARM-CXX: "-internal-isystem" "foo{{/|\\\\}}include"
110 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}usr{{/|\\\\}}i…
111 // CHECK-ARM-CXX: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}arm-nacl{{/|\\\\}}include"
112 // CHECK-ARM-CXX: "-lpthread"
116 // RUN: | FileCheck --check-prefix=CHECK-I686-CXX %s
117 // CHECK-I686-CXX: {{.*}}clang{{.*}}" "-cc1"
[all …]
/external/rust/cxx/
DREADME.md1 CXX &mdash; safe FFI between Rust and C++
4 …o/badge/github-dtolnay/cxx-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …ps://img.shields.io/crates/v/cxx.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
6 …mg.shields.io/badge/docs.rs-cxx-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" height=…
7 …ctions/workflow/status/dtolnay/cxx/ci.yml?branch=master&style=for-the-badge" height="20">](https:/…
21 cxx = "1.0"
24 cxx-build = "1.0"
28 *[Release notes](https://github.com/dtolnay/cxx/releases)*
34 Please see **<https://cxx.rs>** for a tutorial, reference material, and example
43 this, CXX receives a complete picture of the boundary to perform static analyses
[all …]
/external/jsoncpp/.travis_scripts/
Dmeson_builder.sh21 if ${CXX+false}; then
22 echo "CXX not set in environment."
28 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[release|debug] LIB_TYPE=[static|shared] $0"
31 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
32 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
33 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
34 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
36 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
37 …echo " CXX=$(which g++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c…
38 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c…
[all …]
/external/flac/.github/workflows/
Daction.yml15 cxx: clang++
22 cxx: g++
29 cxx: clang++
36 cxx: clang++
43 cxx: clang++
89 CXX: ${{ matrix.cxx }}
100 CXX: ${{ matrix.cxx }}
107 CXX: ${{ matrix.cxx }}
115 CXX: ${{ matrix.cxx }}
123 CXX: ${{ matrix.cxx }}
/external/cronet/third_party/libc++/src/benchmarks/
DCMakeLists.txt31 DEPENDS cxx cxx-headers
73 add_custom_target(cxx-benchmarks)
78 add_library( cxx-benchmarks-flags INTERFACE)
97 target_compile_features( cxx-benchmarks-flags INTERFACE cxx_std_23)
100 target_compile_options( cxx-benchmarks-flags INTERFACE -fsized-deallocation -nostdinc++)
101 target_include_directories(cxx-benchmarks-flags INTERFACE "${LIBCXX_GENERATED_INCLUDE_DIR}"
105 add_library( cxx-benchmarks-flags-native INTERFACE)
106 target_link_libraries( cxx-benchmarks-flags-native INTERFACE cxx-benchmarks-flags)
107 target_compile_options(cxx-benchmarks-flags-native INTERFACE ${BENCHMARK_NATIVE_TARGET_FLAGS})
108 target_link_options( cxx-benchmarks-flags-native INTERFACE ${BENCHMARK_NATIVE_TARGET_FLAGS} "-L${…
[all …]
/external/regex-re2/
D.travis.yml18 - MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
27 - MATRIX_EVAL="CC=gcc-4.9 CXX=g++-4.9"
36 - MATRIX_EVAL="CC=gcc-5 CXX=g++-5"
45 - MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
54 - MATRIX_EVAL="CC=gcc-7 CXX=g++-7"
63 - MATRIX_EVAL="CC=gcc-8 CXX=g++-8"
74 - MATRIX_EVAL="CC=clang-3.5 CXX=clang++-3.5"
84 - MATRIX_EVAL="CC=clang-3.6 CXX=clang++-3.6"
94 - MATRIX_EVAL="CC=clang-3.7 CXX=clang++-3.7"
104 - MATRIX_EVAL="CC=clang-3.8 CXX=clang++-3.8"
[all …]

12345678910>>...116