Home
last modified time | relevance | path

Searched +full:- +full:- +full:cxx (Results 1 – 25 of 1068) sorted by relevance

12345678910>>...43

/external/jemalloc_new/
D.travis.yml6 - os: linux
7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
8 - os: osx
9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
10 - os: linux
11 …env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bo…
12 - os: linux
13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
17 - gcc-multilib
18 - os: linux
[all …]
/external/libcxx/utils/libcxx/test/
Dconfig.py1 #===----------------------------------------------------------------------===##
8 #===----------------------------------------------------------------------===##
30 # out-of-tree build situation).
53 # Extract the value of a numeric macro such as __cplusplus or a feature-test
59 # pylint: disable=redefined-outer-name
64 self.cxx = None
112 '--param=%s=%s' % (env_var, val, name, conf_val))
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:
[all …]
/external/icu/icu4c/source/
DrunConfigureICU4 # Copyright (c) 1999-2015, International Business Machines Corporation and
16 if test $ec -eq 0
23 …echo "${uletter}sage: $me [ -h, --help ] [ --enable-debug | --disable-release ] platform [ config…
24 if test $ec -eq 0
28 Options: -h, --help Print this message and exit
29 --enable-debug Enable support for debugging
30 --disable-release Disable presetting optimization flags
35 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ...
41 AIX/OpenXL Use the IBM Open XL ibm-clang_r/ibm-clang++_r compilers on AIX
47 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
[all …]
/external/cronet/third_party/icu/source/
DrunConfigureICU4 # Copyright (c) 1999-2015, International Business Machines Corporation and
16 if test $ec -eq 0
23 …echo "${uletter}sage: $me [ -h, --help ] [ --enable-debug | --disable-release ] platform [ config…
24 if test $ec -eq 0
28 Options: -h, --help Print this message and exit
29 --enable-debug Enable support for debugging
30 --disable-release Disable presetting optimization flags
35 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ...
41 AIX/OpenXL Use the IBM Open XL ibm-clang_r/ibm-clang++_r compilers on AIX
47 HP-UX/ACC Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/
Dtransitive_includes.sh.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
21 // UNSUPPORTED: no-localization, no-threads, no-wide-characters, no-filesystem, libcpp-has-no-incom…
23 // When built with modules, this test doesn't work because --trace-includes doesn't
25 // UNSUPPORTED: modules-build
27 // This test uses --trace-includes, which is not supported by GCC.
31 // compatibility. When we bulk-remove them, we'll adjust the includes that are expected by
33 // UNSUPPORTED: transitive-includes-disabled
41 BEGIN-SCRIPT
[all …]
Dmodules_include.sh.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // GCC doesn't support -fcxx-modules
21 // XFAIL: LIBCXX-ANDROID-FIXME
31 BEGIN-SCRIPT
34 …print("// {}: echo '%{{cxx}} %s %{{flags}} %{{compile_flags}} -fmodules -fcxx-modules -fmodules-ca…
37 print("// {}: echo \"wait $TEST_{}\" >> %t.sh".format('RUN', i - 16))
45 for i in range(len(public_headers))[-16:]:
50 END-SCRIPT
[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]
46 MyType>`. This is to safeguard against things like mem::swap-ing the contents of
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]
82 "Rust"](extern-rust.md)*** functions and methods. In particular, any signature
83 with a `self` parameter is interpreted as a C++ non-static member function and
87 in are accurate; that would be unreasonable. CXX performs static assertions that
[all …]
/external/rust/cxx/macro/src/
Dexpand.rs20 pub fn bridge(mut ffi: Module) -> Result<TokenStream> { in bridge()
39 #[cfg(feature = "experimental-enum-variants-from-header")] in bridge()
51 fn expand(ffi: Module, doc: Doc, attrs: OtherAttrs, apis: &[Api], types: &Types) -> TokenStream { in expand()
121 // Work around https://github.com/rust-lang/rust/issues/67851. in expand()
147 fn expand_struct(strct: &Struct) -> TokenStream { in expand_struct()
180 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
184 type Kind = ::cxx::kind::Trivial; in expand_struct()
191 fn expand_struct_operators(strct: &Struct) -> TokenStream { in expand_struct_operators()
206 … extern "C" fn #local_name #generics(lhs: &#ident #generics, rhs: &#ident #generics) -> bool { in expand_struct_operators()
208 ::cxx::private::prevent_unwind(__fn, || *lhs == *rhs) in expand_struct_operators()
[all …]
Dderive.rs7 pub fn expand_struct(strct: &Struct, actual_derives: &mut Option<TokenStream>) -> TokenStream { in expand_struct()
18 Trait::Eq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)), in expand_struct()
20 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_struct()
22 Trait::PartialEq => traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)), in expand_struct()
38 pub fn expand_enum(enm: &Enum, actual_derives: &mut Option<TokenStream>) -> TokenStream { in expand_enum()
60 traits.push(quote_spanned!(span=> ::cxx::core::cmp::Eq)); in expand_enum()
64 Trait::Hash => traits.push(quote_spanned!(span=> ::cxx::core::hash::Hash)), in expand_enum()
67 traits.push(quote_spanned!(span=> ::cxx::core::cmp::PartialEq)); in expand_enum()
86 traits.push(quote!(::cxx::core::cmp::Eq)); in expand_enum()
89 traits.push(quote!(::cxx::core::cmp::PartialEq)); in expand_enum()
[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
2 ; RUN: sed -e s/.Seh:// %s | llc -mtriple=x86_64-pc-windows-msvc | FileCheck %s --check-prefix=SEH
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
[all …]
/external/FP16/
Dconfigure.py6 parser.add_argument("--compare", dest="compare", action="store_true",
7 help="Enable performance comparison with other half-precision implementations")
16 fp16_tables = build.cxx("tables.cc")
17 build.unittest("ieee-to-fp32-bits",
18 [build.cxx("ieee-to-fp32-bits.cc"), fp16_tables])
19 build.unittest("ieee-to-fp32-value",
20 [build.cxx("ieee-to-fp32-value.cc"), fp16_tables])
21 build.unittest("ieee-from-fp32-value",
22 [build.cxx("ieee-from-fp32-value.cc"), fp16_tables])
24 build.unittest("alt-to-fp32-bits",
[all …]
/external/lzma/C/Util/7z/
Dmakefile.gcc2 CXX = gcc
4 RM = rm -f
5 CFLAGS = -c -O2 -Wall
12 $(CXX) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIB)
15 $(CXX) $(CFLAGS) 7zMain.c
18 $(CXX) $(CFLAGS) ../../7zAlloc.c
21 $(CXX) $(CFLAGS) ../../7zArcIn.c
24 $(CXX) $(CFLAGS) ../../7zBuf.c
27 $(CXX) $(CFLAGS) ../../7zBuf2.c
30 $(CXX) $(CFLAGS) ../../7zCrc.c
[all …]
/external/flac/.github/workflows/
Daction.yml7 - cron: '0 0 1 * *'
15 ubuntu-latest-gcc-autotools,
16 ubuntu-latest-clang-autotools,
17 ubuntu-latest-gcc-cmake,
18 ubuntu-latest-clang-cmake,
19 macos-latest-clang-autotools,
20 macos-latest-clang-cmake,
21 windows-latest-cmake,
22 ubuntu-latest-gcc-autotools-64-bit-words,
23 ubuntu-latest-clang-autotools-64-bit-words,
[all …]
/external/elfutils/debuginfod/
DChangeLog1 2022-11-01 Aaron Merey <amerey@redhat.com>
3 * debuginfod-client.c (path_escape): Add early return.
5 2022-10-31 Aaron Merey <amerey@redhat.com>
8 * debuginfod-client.c (debuginfod_find_section): New function.
13 * debuginfod-find.c (main): Add support for section queries.
14 * debuginfod.cxx (extract_section): New function.
15 (handle_buildid_f_match): Add section parameter. When non-empty,
17 (handle_buildid_r_match): Add section parameter. When non-empty,
27 2022-10-18 Daniel Thornburgh <dthorn@google.com>
29 * debuginfod-client.c (debuginfod_query_server): Add DEBUGINFOD_HEADERS_FILE
[all …]
/external/cronet/build/toolchain/linux/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
34 toolprefix = "aarch64-linux-gnu-"
37 cxx = "${toolprefix}g++"
40 ld = cxx
55 toolprefix = "arm-linux-gnueabihf-"
58 cxx = "${toolprefix}g++"
61 ld = cxx
87 cxx = "g++"
92 ld = cxx
183 # toolchain to build Ash-Chrome in a subdirectory.
[all …]
/external/angle/build/toolchain/linux/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
34 toolprefix = "aarch64-linux-gnu-"
37 cxx = "${toolprefix}g++"
40 ld = cxx
55 toolprefix = "arm-linux-gnueabihf-"
58 cxx = "${toolprefix}g++"
61 ld = cxx
87 cxx = "g++"
92 ld = cxx
183 # toolchain to build Ash-Chrome in a subdirectory.
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/
D.travis.yml5 - os: linux
10 - ubuntu-toolchain-r-test
12 - g++-4.8
14 - MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
15 - os: linux
20 - ubuntu-toolchain-r-test
22 - g++-4.9
24 - MATRIX_EVAL="CC=gcc-4.9 CXX=g++-4.9"
25 - os: linux
30 - ubuntu-toolchain-r-test
[all …]
/external/lzma/CPP/7zip/Bundles/LzmaCon/
Dmakefile.gcc2 CXX = g++ -O2
3 # -Wall -Werror -Wno-delete-non-virtual-dtor
4 CXX_C = gcc -O2 -Wall -Werror
13 CFLAGS = -c
14 LIB2 = -loleaut32 -luuid
15 LDFLAGS = -s
26 RM = rm -f
27 CFLAGS = -c -D_7ZIP_ST
78 $(CXX) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIB2)
81 $(CXX) $(CFLAGS) LzmaAlone.cpp
[all …]
/external/google-fruit/extras/scripts/
Dpostsubmit-helper.sh1 #!/bin/bash -x
3 set -e
10 gcc-4.9)
11 export CC=gcc-4.9
12 export CXX=g++-4.9
15 gcc-5)
16 export CC=gcc-5
17 export CXX=g++-5
20 gcc-6)
21 export CC=gcc-6
[all …]
/external/clang/test/Driver/
Dnacl-direct.c4 // RUN: %clang -no-canonical-prefixes -### -o %t.o %s \
5 // RUN: -target i686-unknown-nacl -resource-dir foo 2>&1 \
6 // RUN: | FileCheck --check-prefix=CHECK-I686 %s
7 // CHECK-I686: {{.*}}clang{{.*}}" "-cc1"
8 // CHECK-I686: "-fuse-init-array"
9 // CHECK-I686: "-target-cpu" "pentium4"
10 // CHECK-I686: "-resource-dir" "foo"
11 // CHECK-I686: "-internal-isystem" "foo{{/|\\\\}}include"
12 // CHECK-I686: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}i686-nacl{{/|\\\\}}usr{{/|\\\\}}inc…
13 // CHECK-I686: "-internal-isystem" "{{.*}}{{/|\\\\}}..{{/|\\\\}}x86_64-nacl{{/|\\\\}}include"
[all …]
Dsanitizer-ld.c3 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
4 // RUN: -target i386-unknown-linux -fsanitize=address \
5 // RUN: -resource-dir=%S/Inputs/resource_dir \
6 // RUN: --sysroot=%S/Inputs/basic_linux_tree \
7 // RUN: | FileCheck --check-prefix=CHECK-ASAN-LINUX %s
9 // CHECK-ASAN-LINUX: "{{(.*[^-.0-9A-Z_a-z])?}}ld{{(.exe)?}}"
10 // CHECK-ASAN-LINUX-NOT: "-lc"
11 // CHECK-ASAN-LINUX: libclang_rt.asan-i386.a"
12 // CHECK-ASAN-LINUX-NOT: "-export-dynamic"
13 // CHECK-ASAN-LINUX: "--dynamic-list={{.*}}libclang_rt.asan-i386.a.syms"
[all …]
/external/rust/cxx/
DREADME.md1 CXX &mdash; safe FFI between Rust and C++
4 …lds.io/badge/github-dtolnay/cxx-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="…
5 …ps://img.shields.io/crates/v/cxx.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
6 …img.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:/…
11 using bindgen or cbindgen to generate unsafe C-style bindings.
21 cxx = "1.0"
23 [build-dependencies]
24 cxx-build = "1.0"
28 *[Release notes](https://github.com/dtolnay/cxx/releases)*
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/benchmarks/
DCMakeLists.txt16 -Wno-unused-command-line-argument
17 -nostdinc++
18 -isystem "${LIBCXX_GENERATED_INCLUDE_DIR}"
19 -L${LIBCXX_LIBRARY_DIR}
20 -Wl,-rpath,${LIBCXX_LIBRARY_DIR}
25 -isystem "${LIBCXX_GENERATED_INCLUDE_TARGET_DIR}")
29 -L${LIBCXX_CXX_ABI_LIBRARY_PATH}
30 -Wl,-rpath,${LIBCXX_CXX_ABI_LIBRARY_PATH})
34 ExternalProject_Add(google-benchmark-libcxx
36 DEPENDS cxx cxx-headers
[all …]
/external/jsoncpp/.travis_scripts/
Dmeson_builder.sh6 # http://docs.travis-ci.com/user/multi-os/
9 # - BUILD_TYPE=release/debug
10 # - LIB_TYPE=static/shared
21 if ${CXX+false}; then
22 echo "CXX not set in environment."
27 if [ ${env_set} -eq 0 ]; then
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…
[all …]

12345678910>>...43