Home
last modified time | relevance | path

Searched refs:cxx (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/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/llvm-project/libcxx/utils/libcxx/test/
Dconfig.py62 self.cxx = None
149 if self.cxx.use_modules:
151 self.cxx.modules_flags)
152 if len(self.cxx.warning_flags):
153 self.lit_config.note('Using warnings: %s' % self.cxx.warning_flags)
166 self.cxx,
173 cxx = self.get_lit_conf('cxx_under_test')
174 self.cxx_is_clang_cl = cxx is not None and \
175 os.path.basename(cxx) == 'clang-cl.exe'
178 if cxx is None or self.cxx_is_clang_cl:
[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/llvm-project/libcxx/utils/ci/
Drun-buildbot80 function check-cxx-cxxabi() {
82 ninja -C "${BUILD_DIR}" check-cxx
88 ninja -C "${BUILD_DIR}" install-cxx install-cxxabi
95 ninja -C "${BUILD_DIR}" check-cxx-abilist || (
97 ninja -C "${BUILD_DIR}" generate-cxx-abilist
102 function check-cxx-benchmarks() {
104 ninja -C "${BUILD_DIR}" check-cxx-benchmarks
113 check-cxx-cxxabi
121 check-cxx-cxxabi
129 check-cxx-cxxabi
[all …]
/external/grpc-grpc/third_party/nanopb/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/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/libcxx/utils/libcxx/android/test/
Dconfig.py34 'Using compiler: {}'.format(self.cxx.path))
36 'Using compile template: {}'.format(self.cxx.cxx_template))
38 'Using link template: {}'.format(self.cxx.link_template))
53 self.cxx = libcxx.android.compiler.AndroidCXXCompiler(
61 self.config.target_triple = self.cxx.get_triple()
70 self.cxx.extra_cflags.append(
78 self.cxx.extra_cflags.append(
85 self.cxx.extra_cflags.append(
91 self.cxx.extra_cflags.append(
95 self.cxx.extra_cflags.append(
[all …]
/external/FXdiv/
Dconfigure.py15 build.unittest("multiply-high-test", build.cxx("multiply-high.cc"))
16 build.unittest("quotient-test", build.cxx("quotient.cc"))
19 build.benchmark("init-bench", build.cxx("init.cc"))
20 build.benchmark("multiply-bench", build.cxx("multiply.cc"))
21 build.benchmark("divide-bench", build.cxx("divide.cc"))
22 build.benchmark("quotient-bench", build.cxx("quotient.cc"))
23 build.benchmark("round-down-bench", build.cxx("round-down.cc"))
/external/rust/cxx/
DCargo.toml2 name = "cxx"
9 repository = "https://github.com/dtolnay/cxx"
10 documentation = "https://docs.rs/cxx"
11 homepage = "https://cxx.rs"
32 cxx-build = { version = "=1.0.42", path = "gen/build" }
33 cxx-gen = { version = "0.7", path = "gen/lib" }
34 cxx-test-suite = { version = "0", path = "tests/ffi" }
45 cxx = { path = "." }
46 cxx-build = { path = "gen/build" }
DBUILD5 name = "cxx",
17 data = ["gen/cmd/src/gen/include/cxx.h"],
30 hdrs = ["include/cxx.h"],
38 srcs = ["src/cxx.cc"],
39 hdrs = ["include/cxx.h"],
56 data = ["gen/build/src/gen/include/cxx.h"],
72 data = ["gen/lib/src/gen/include/cxx.h"],
/external/llvm-project/libcxx/include/
DCMakeLists.txt199 add_custom_target(cxx-generated-config ALL
220 DEPENDS ${src} cxx-generated-config
224 add_custom_target(generate-cxx-headers ALL DEPENDS ${out_files})
226 add_library(cxx-headers INTERFACE)
227 add_dependencies(cxx-headers generate-cxx-headers ${LIBCXX_CXX_ABI_HEADER_TARGET})
230 target_compile_options(cxx-headers INTERFACE /I "${output_dir}")
232 target_compile_options(cxx-headers INTERFACE -I "${output_dir}")
237 target_compile_options(cxx-headers INTERFACE /FI "${LIBCXX_BINARY_DIR}/__config_site")
239 target_compile_options(cxx-headers INTERFACE -include "${LIBCXX_BINARY_DIR}/__config_site")
242 add_library(cxx-headers INTERFACE)
[all …]
/external/libcxxabi/test/libcxxabi/test/
Dconfig.py38 return intMacroValue(self.cxx.dumpMacros().get('__cpp_' + feature, '0')) >= required_value
53 self.cxx.compile_flags += [
58 self.cxx.compile_flags += ['-funwind-tables']
60 self.cxx.compile_flags += ['-fno-exceptions', '-DLIBCXXABI_HAS_NO_EXCEPTIONS']
62 self.cxx.compile_flags += ['-D_LIBCXXABI_HAS_NO_THREADS']
74 self.cxx.compile_flags += ['-nostdinc++']
78 self.cxx.compile_flags += ['-I' + cxx_headers]
86 self.cxx.compile_flags += ['-I' + libcxxabi_headers]
93 self.cxx.compile_flags += ['-I' + libunwind_headers]
/external/openscreen/build/toolchain/linux/
DBUILD.gn9 assert(defined(invoker.cxx), "Caller must define cxx command.")
15 "cxx",
43 tool("cxx") {
45 …command = "$cxx -MMD -MF $depfile {{defines}} {{include_dirs}} {{cflags}} {{cflags_cc}} -c {{sourc…
138 cxx = "$prefix/clang++"
139 ld = cxx
178 cxx = "g++"
179 ld = cxx
190 cxx = "g++"
191 ld = cxx
[all …]
/external/marisa-trie/bindings/
DMakefile5 mv marisa-swig_wrap.cxx perl
6 cp marisa-swig.cxx marisa-swig.h perl
10 mv marisa-swig_wrap.cxx python
11 cp marisa-swig.cxx marisa-swig.h python
15 mv marisa-swig_wrap.cxx ruby
16 cp marisa-swig.cxx marisa-swig.h ruby
/external/llvm-project/libcxxabi/test/libcxxabi/test/
Dconfig.py37 return intMacroValue(self.cxx.dumpMacros().get('__cpp_' + feature, '0')) >= required_value
47 self.cxx.compile_flags += [
52 self.cxx.compile_flags += ['-funwind-tables']
54 self.cxx.compile_flags += ['-D_LIBCXXABI_HAS_NO_THREADS']
66 self.cxx.compile_flags += ['-nostdinc++']
70 self.cxx.compile_flags += ['-I' + cxx_headers]
78 self.cxx.compile_flags += ['-I' + libcxxabi_headers]
85 self.cxx.compile_flags += ['-I' + libunwind_headers]
/external/rust/cxx/book/src/
Dtutorial.md11 <https://github.com/dtolnay/cxx>. To try it out directly, run `cargo run` from
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"
43 in a Rust module annotated with the `#[cxx::bridge]` attribute macro.
51 #[cxx::bridge]
83 #[cxx::bridge]
86 include!("cxx-demo/include/blobstore.h");
120 …= /bin/ld: target/debug/deps/cxx-demo-7cb7fddf3d67d880.rcgu.o: in function `cxx_demo::ffi::new_blo…
[all …]
/external/rust/cxx/tests/ui/
Dunique_ptr_to_opaque.rs6 unsafe impl cxx::ExternType for C {
7 type Id = cxx::type_id!("C");
8 type Kind = cxx::kind::Opaque;
12 #[cxx::bridge]
22 cxx::UniquePtr::new(outside::C { a: 4 }); in main()
/external/libcxx/include/
DCMakeLists.txt201 add_custom_target(cxx-generated-config ALL
203 set(generated_config_deps cxx-generated-config)
236 add_custom_target(cxx-headers ALL DEPENDS ${out_files} ${LIBCXX_CXX_ABI_HEADER_TARGET})
238 add_custom_target(cxx-headers)
240 set_target_properties(cxx-headers PROPERTIES FOLDER "Misc")
247 COMPONENT cxx-headers
258 COMPONENT cxx-headers)
262 add_custom_target(install-cxx-headers
263 DEPENDS cxx-headers ${generated_config_deps}
265 -DCMAKE_INSTALL_COMPONENT=cxx-headers
[all …]
/external/clang/test/ARCMT/Inputs/
Dmodule.map2 module cxx_library { header "cxx-header.h" requires cplusplus }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
20 module cxx_irgen_right { header "cxx-irgen-right.h" }
196 header "cxx-many-overloads.h"
200 header "cxx-inline-namespace.h"
204 header "cxx-inline-namespace-b.h"
208 header "cxx-linkage-cache.h"
212 header "cxx-templates-common.h"
216 header "cxx-templates-a.h"
[all …]
/external/llvm-project/clang/test/ARCMT/Inputs/
Dmodule.map2 module cxx_library { header "cxx-header.h" requires cplusplus }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
20 module cxx_irgen_right { header "cxx-irgen-right.h" }
196 header "cxx-many-overloads.h"
200 header "cxx-inline-namespace.h"
204 header "cxx-inline-namespace-b.h"
208 header "cxx-linkage-cache.h"
212 header "cxx-templates-common.h"
216 header "cxx-templates-a.h"
[all …]
/external/rust/cxx/macro/src/
Dexpand.rs172 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_struct()
175 type Kind = ::cxx::kind::Trivial; in expand_struct()
333 unsafe impl ::cxx::ExternType for #ident { in expand_enum()
336 type Kind = ::cxx::kind::Trivial; in expand_enum()
355 _private: ::cxx::private::Opaque, in expand_cxx_type()
374 unsafe impl #generics ::cxx::ExternType for #ident #generics { in expand_cxx_type()
377 type Kind = ::cxx::kind::Opaque; in expand_cxx_type()
429 quote!(#ident: ::cxx::private::FatFunction) in expand_cxx_function_decl()
438 quote!(-> ::cxx::private::Result) in expand_cxx_function_decl()
478 quote!(-> ::std::result::Result<#ok, ::cxx::Exception>) in expand_cxx_function_shim()
[all …]
/external/clang/test/Modules/Inputs/
Dmodule.map2 module cxx_library { header "cxx-header.h" requires cplusplus }
18 module cxx_irgen_top { header "cxx-irgen-top.h" }
19 module cxx_irgen_left { header "cxx-irgen-left.h" }
20 module cxx_irgen_right { header "cxx-irgen-right.h" }
201 header "cxx-many-overloads.h"
205 header "cxx-inline-namespace.h"
209 header "cxx-inline-namespace-b.h"
213 header "cxx-linkage-cache.h"
217 header "cxx-templates-common.h"
219 explicit module unimported { header "cxx-templates-unimported.h" }
[all …]
/external/elfutils/debuginfod/
DChangeLog4 * debuginfod.cxx (fdcache_mintmp): New parameter, with cmd-line option.
18 * debuginfod.cxx (dbq): New read-only database connection for queries
37 * debuginfod.cxx: Likewise.
62 * debuginfod.cxx (step_ok_done): Correct typo in prom metric label.
66 * debuginfod.cxx (tmp_ms_metric): Switch from gettimeofday to
72 * debuginfod.cxx (tmp_ms_metric): New class for RAII timing metrics.
99 * debuginfod.cxx (handle_root): New function.
109 * debuginfod.cxx (tmp_inc_metric): New class.
119 * debuginfod.cxx: include libintl.h.
129 * debuginfod.cxx (scan_source_file, scan_archive_file): Add new scanned_bytes_total,
[all …]
/external/llvm-project/libunwind/test/libunwind/test/
Dconfig.py34 return int(self.cxx.dumpMacros().get('__cpp_' + feature, 0)) >= required_value
42 self.cxx.compile_flags += ['-DLIBUNWIND_NO_TIMER']
45 self.cxx.compile_flags += ['-funwind-tables']
48 self.cxx.link_flags += ['-Wl,--export-dynamic']
50 self.cxx.compile_flags += ['-D_LIBUNWIND_HAS_NO_THREADS']
63 self.cxx.compile_flags += ['-I' + libunwind_headers]
/external/llvm/tools/llvm-go/
Dllvm-go.go42 cpp, cxx, ld string member
101 cxx: "-std=c++11",
145 `, flags.cpp, flags.cxx, flags.ld)
148 func runGoWithLLVMEnv(args []string, cc, cxx, gocmd, llgo, cppflags, cxxflags, ldflags string) { argument
181 "CXX=" + cxx,
183 "CGO_CXXFLAGS=" + flags.cxx + " " + cxxflags,
239 cxx := os.Getenv("CXX")
251 {"cxx", &cxx},
276 runGoWithLLVMEnv(args, cc, cxx, gocmd, llgo, cppflags, cxxflags, ldflags)

12345678910>>...25