Searched full:libcxx (Results 1 – 25 of 183) sorted by relevance
12345678
/external/libcxx/docs/ |
D | index.rst | 107 * `C++14 - Complete <http://libcxx.llvm.org/cxx1y_status.html>`__ 108 * `C++17 - In Progress <http://libcxx.llvm.org/cxx1z_status.html>`__ 109 * `Post C++14 Technical Specifications - In Progress <http://libcxx.llvm.org/ts1z_status.html>`__ 140 * `<atomic> design <http://libcxx.llvm.org/atomic_design.html>`_ 141 * `<type_traits> design <http://libcxx.llvm.org/type_traits_design.html>`_ 150 * `Apple Jenkins Builders <http://lab.llvm.org:8080/green/view/Libcxx/>`_ 151 * `Windows Appveyor Builders <https://ci.appveyor.com/project/llvm-mirror/libcxx>`_ 152 * `Code Coverage Results <http://efcs.ca/libcxx-coverage>`_ 164 can post a message to the `libcxx-dev mailing list`_ or on IRC. 169 `Phabricator <http://llvm.org/docs/Phabricator.html>`_. Please add `libcxx-commits` as a subscriber. [all …]
|
D | UsingLibcxx.rst | 21 .. _alternate libcxx: 29 -I<libcxx-install-prefix>/include/c++/v1 \ 30 -L<libcxx-install-prefix>/lib \ 31 -Wl,-rpath,<libcxx-install-prefix>/lib \ 34 The option ``-Wl,-rpath,<libcxx-install-prefix>/lib`` adds a runtime library 36 ``<libcxx-install-prefix>/lib`` whenever the program is run. Alternatively the 45 -I<libcxx-install-prefix>/include/c++/v1 46 -L<libcxx-install-prefix>/lib \ 49 $ export LD_LIBRARY_PATH=<libcxx-install-prefix>/lib 89 Also see the `Experimental Library Implementation Status <http://libcxx.llvm.org/ts1z_status.html>`… [all …]
|
D | TestingLibcxx.rst | 12 libc++ tests is by using make check-libcxx. However since libc++ can be used 38 $ export LIBCXX_SITE_CONFIG=path/to/build-libcxx/test/lit.site.cfg 49 $ cd path/to/src/libcxx 224 $ cmake [options] <path to libcxx sources> 227 This will build all of the benchmarks under ``<libcxx-src>/benchmarks`` to be 234 The compiled benchmarks are named ``<test>.libcxx.out`` if they test libc++ and 254 $ ./algorithms.libcxx.out # Runs all the benchmarks 255 $ ./algorithms.libcxx.out --benchmark_filter=BM_Sort.* # Only runs the sort benchmarks
|
/external/Reactive-Extensions/RxCpp/projects/scripts/ |
D | install_libcxx.sh | 5 svn --quiet co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx 6 mkdir libcxx/build 7 (cd libcxx/build && cmake .. -DLIBCXX_CXX_ABI=libstdc++ -DLIBCXX_CXX_ABI_INCLUDE_PATHS="/usr/includ… 8 make -C libcxx/build cxx -j2 9 sudo cp libcxx/build/lib/libc++.so.1.0 /usr/lib/ 10 sudo cp -r libcxx/build/include/c++/v1 /usr/include/c++/v1/
|
/external/libcxx/utils/libcxx/android/test/ |
D | config.py | 5 import libcxx.test.config 6 import libcxx.android.compiler 7 import libcxx.android.test.format 10 class Configuration(libcxx.test.config.Configuration): 53 self.cxx = libcxx.android.compiler.AndroidCXXCompiler( 90 static_env = '/data/local/tmp/libcxx/static_test_env' 94 dynamic_env = '/data/local/tmp/libcxx/dynamic_test_env' 119 return libcxx.android.test.format.TestFormat( 127 return libcxx.android.test.format.HostTestFormat(
|
D | format.py | 5 from libcxx.android.executors import AdbExecutor 6 from libcxx.test.executor import LocalExecutor, TimeoutExecutor 7 import libcxx.test.format 8 import libcxx.android.adb as adb 11 class HostTestFormat(libcxx.test.format.LibcxxTestFormat):
|
/external/perfetto/buildtools/ |
D | BUILD.gn | 457 "libcxx/src/algorithm.cpp", 458 "libcxx/src/any.cpp", 459 "libcxx/src/bind.cpp", 460 "libcxx/src/chrono.cpp", 461 "libcxx/src/condition_variable.cpp", 462 "libcxx/src/debug.cpp", 463 "libcxx/src/exception.cpp", 464 "libcxx/src/functional.cpp", 465 "libcxx/src/future.cpp", 466 "libcxx/src/hash.cpp", [all …]
|
/external/libcxx/utils/ci/ |
D | macos-backdeployment.sh | 7 $(basename ${0}) [-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <S… 11 --libcxx-root Full path to the root of the libc++ repository to test. 25 --libcxx-root) 28 echo "--libcxx-root '${LIBCXX_ROOT}' is not a valid directory" 79 if [[ -z ${LIBCXX_ROOT+x} ]]; then echo "--libcxx-root is a required parameter"; usage; exit 1; fi 102 LIBCXX_BUILD_DIR="${TEMP_DIR}/libcxx-build" 103 LIBCXX_INSTALL_DIR="${TEMP_DIR}/libcxx-install" 107 PREVIOUS_DYLIBS_URL="http://lab.llvm.org:8080/roots/libcxx-roots.tar.gz" 156 PREVIOUS_DYLIBS_DIR="${TEMP_DIR}/libcxx-dylibs"
|
D | macos-trunk.sh | 7 $(basename ${0}) [-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <S… 11 --libcxx-root Full path to the root of the libc++ repository to test. 23 --libcxx-root) 26 echo "--libcxx-root '${LIBCXX_ROOT}' is not a valid directory" 69 if [[ -z ${LIBCXX_ROOT+x} ]]; then echo "--libcxx-root is a required parameter"; usage; exit 1; fi 90 LIBCXX_BUILD_DIR="${TEMP_DIR}/libcxx-build" 91 LIBCXX_INSTALL_DIR="${TEMP_DIR}/libcxx-install"
|
/external/libunwind_llvm/test/ |
D | lit.cfg | 27 # If libcxx_source_root isn't specified in the config, assume that the libcxx 31 libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx') 33 if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')): 36 lit_config.fatal('Could not find libcxx test directory for test imports' 44 import libcxx.test.config 45 libcxx.test.config.loadSiteConfig(
|
/external/libcxxabi/test/ |
D | lit.cfg | 27 # If libcxx_source_root isn't specified in the config, assume that the libcxx 31 libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx') 33 if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')): 36 lit_config.fatal('Could not find libcxx test directory for test imports' 44 import libcxx.test.config 45 libcxx.test.config.loadSiteConfig(
|
/external/perfetto/gn/standalone/libc++/ |
D | libc++.gni | 21 # libstdc++ and LLVM's libc++ (aka libcxx). By default Linux provides libstdc++ 23 # Android switched to libcxx. 24 # buildtools/libcxx(abi) contains a fixed version of the libcxx, the same one 30 # Now, there are two reasons for using the checked in copy of libcxx: 47 libcxx_prefix = "//buildtools/libcxx"
|
/external/clang/test/Driver/ |
D | darwin-stdlib.cpp | 1 …rwin -arch arm64 -miphoneos-version-min=7.0 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX 3 …6_64-apple-darwin -mmacosx-version-min=10.9 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX 5 …win -arch armv7s -miphoneos-version-min=7.0 %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX 6 …ng -target x86_64-apple-darwin -arch armv7k %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-LIBCXX 13 // CHECK-LIBCXX: -stdlib=libc++
|
/external/libcxx/test/ |
D | CMakeLists.txt | 9 set(LIBCXX_LIT_VARIANT "libcxx" CACHE STRING 44 # By default, for non-standalone builds, libcxx and libcxxabi share a library 51 set(LIBCXX_TARGET_INFO "libcxx.test.target_info.LocalTI" CACHE STRING 56 set(AUTO_GEN_COMMENT "## Autogenerated by libcxx configuration.\n# Do not edit!") 70 "Running libcxx tests" 74 add_custom_target(check-libcxx DEPENDS check-cxx)
|
D | lit.cfg | 25 import libcxx.test.config 26 libcxx.test.config.loadSiteConfig(lit_config, config, 'libcxx_site_config', 37 obj_root = tempfile.mkdtemp(prefix='libcxx-testsuite-') 43 cfg_variant = getattr(config, 'configuration_variant', 'libcxx')
|
/external/libcxxabi/www/ |
D | index.html | 25 <a href="https://libcxx.llvm.org/">libc++</a> 26 <a href="http://lists.llvm.org/mailman/listinfo/libcxx-dev">libcxx-dev</a> 27 <a href="http://lists.llvm.org/mailman/listinfo/libcxx-commits">libcxx-commits</a> 52 …<li>Provide a portable sublayer to ease the porting of <a href="http://libcxx.llvm.org/">libc++</a… 95 Check out the <a href="http://libcxx.llvm.org">libcxx source</a> tree. 99 <li><code>cmake -DLIBCXXABI_LIBCXX_PATH=path/to/libcxx .. # on 123 (<a href="http://lists.llvm.org/mailman/listinfo/libcxx-dev">libcxx-dev mailing list</a>).</p>
|
/external/libcxx/utils/libcxx/ |
D | compiler.py | 12 import libcxx.util 157 out, err, rc = libcxx.util.executeCommand(cmd, env=self.compile_env, 163 out, err, rc = libcxx.util.executeCommand(cmd, env=self.compile_env, 169 out, err, rc = libcxx.util.executeCommand(cmd, env=self.compile_env, 176 out, err, rc = libcxx.util.executeCommand(cmd, env=self.compile_env, 186 with_fn = lambda: libcxx.util.guardedTempFilename(suffix='.o') 189 with_fn = lambda: libcxx.util.nullContext(object_file) 219 return libcxx.util.capture(cmd).strip() 278 out, err, rc = libcxx.util.executeCommand( 279 cmd, input=libcxx.util.to_bytes('#error\n'))
|
/external/libcxx/www/ |
D | index.html | 26 <a href="https://lists.llvm.org/mailman/listinfo/libcxx-dev">libcxx-dev</a> 27 <a href="https://lists.llvm.org/mailman/listinfo/libcxx-commits">libcxx-commits</a> 29 <a href="https://llvm.org/svn/llvm-project/libcxx/trunk/">Browse SVN</a> 30 <a href="https://llvm.org/viewvc/llvm-project/libcxx/trunk/">Browse ViewVC</a> 53 <p><a href="https://libcxx.llvm.org/docs/"> 159 <li><a href="http://lab.llvm.org:8080/green/view/Libcxx/"> 173 <li><a href="https://libcxx.llvm.org/docs/UsingLibcxx.html"> 176 <li><a href="https://libcxx.llvm.org/docs/BuildingLibcxx.html"> 179 <li><a href="https://libcxx.llvm.org/docs/TestingLibcxx.html"> 203 <a href="https://lists.llvm.org/mailman/listinfo/libcxx-dev">libc++ mailing list</a>.</p> [all …]
|
/external/libcxx/utils/libcxx/test/ |
D | format.py | 21 from libcxx.test.executor import LocalExecutor as LocalExecutor 22 import libcxx.util 88 is_libcxx_test = test.path_in_suite[0] == 'libcxx' 172 libcxx.util.cleanFile(exec_path) 181 libcxx.util.mkdir_p(os.path.dirname(tmpBase)) 189 report = libcxx.util.makeReport(cmd, out, err, rc) 210 report += libcxx.util.makeReport(cmd, out, err, rc) 222 libcxx.util.cleanFile(object_path) 258 report = libcxx.util.makeReport(cmd, out, err, rc)
|
/external/libcxx/benchmarks/ |
D | CMakeLists.txt | 26 ExternalProject_Add(google-benchmark-libcxx 29 PREFIX benchmark-libcxx 31 INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx 72 set(BENCHMARK_LIBCXX_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx) 138 add_dependencies(${libcxx_target} cxx cxx-headers google-benchmark-libcxx) 157 OUTPUT_NAME "${name}.libcxx.out" 169 google-benchmark-libcxx) 220 "Running libcxx benchmarks tests"
|
/external/google-fruit/extras/scripts/ |
D | travis_ci_install_osx.sh | 35 clang-3.7) install_brew_package llvm@3.7 --with-clang --with-libcxx;; 36 clang-3.8) install_brew_package llvm@3.8 --with-clang --with-libcxx;; 37 clang-3.9) install_brew_package llvm@3.9 --with-clang --with-libcxx;; 38 clang-4.0) install_brew_package llvm --with-clang --with-libcxx;;
|
/external/libcxx/ |
D | lit.site.cfg | 23 config.libcxx_src_root = os.path.join(top, "external/libcxx") 24 config.libcxx_obj_root = os.path.join(top, "external/libcxx") 34 config.configuration_variant = "libcxx.ndk" 42 config, os.path.join(top, "external/libcxx/test/lit.cfg"))
|
/external/libcxx/test/libcxx/ndk/test/ |
D | config.py | 3 import libcxx.test.config 4 import libcxx.android.test.format 7 class Configuration(libcxx.test.config.Configuration): 49 return libcxx.android.test.format.TestFormat(
|
/external/libcxx/utils/libcxx/android/ |
D | executors.py | 3 import libcxx.test.executor 5 from libcxx.android import adb 9 class AdbExecutor(libcxx.test.executor.RemoteExecutor): 19 cmd = 'mktemp -q {} /data/local/tmp/libcxx/temp.XXXXXX'.format(dir_arg)
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/Proposals/ |
D | GitHubMove.rst | 225 clang+llvm+libcxx for example) at a specific revision. 230 *<LLVM-12345, clang-5432, libcxx-123, etc.>*. 427 standalone sub-project, particularly on runtimes like libcxx and compiler-rt 428 that don't rely on LLVM; currently, a fresh clone of libcxx is only 15MB (vs. 458 and keeps sub-projects like libcxx and compiler-rt in their own distinct 551 read the history for a single project (`git log libcxx` for example). 599 git log origin/master@{1}..origin/master -- libcxx 611 Let's look how to assemble llvm+clang+libcxx at a given revision. 622 svn co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx -r $REVISION 640 git clone http://llvm.org/git/libcxx.git [all …]
|
12345678