/external/python/pybind11/docs/advanced/cast/ |
D | overview.rst | 111 | ``std::string`` | STL dynamic UTF-8 string | :file:`pybind11/pybind11.h` | 113 | ``std::u16string`` | STL dynamic UTF-16 string | :file:`pybind11/pybind11.h` | 115 | ``std::u32string`` | STL dynamic UTF-32 string | :file:`pybind11/pybind11.h` | 117 | ``std::wstring`` | STL dynamic wide string | :file:`pybind11/pybind11.h` | 119 | ``std::string_view``, | STL C++17 string views | :file:`pybind11/pybind11.h` | 130 | ``std::array<T, Size>`` | STL static array | :file:`pybind11/stl.h` | 132 | ``std::vector<T>`` | STL dynamic array | :file:`pybind11/stl.h` | 134 | ``std::deque<T>`` | STL double-ended queue | :file:`pybind11/stl.h` | 136 | ``std::valarray<T>`` | STL value array | :file:`pybind11/stl.h` | 138 | ``std::list<T>`` | STL linked list | :file:`pybind11/stl.h` | [all …]
|
D | stl.rst | 1 STL containers 27 example that demonstrates how to pass STL data types in more detail. 99 and return values that are constructed from STL data types such as vectors, 125 As you can see, when passing STL data structures by reference, modifications 127 exposing STL data structures using the ``def_readwrite`` or ``def_readonly`` 197 Binding STL containers 200 The ability to expose STL containers as native Python objects is a fairly 221 When binding STL containers pybind11 considers the types of the container's 251 convenience STL container wrappers.
|
/external/oboe/samples/LiveEffect/src/main/cpp/ |
D | ndk-stl-config.cmake | 1 # Copy shared STL files to Android Studio output directory so they can be 16 message("Configuring STL ${so_base} for ${ANDROID_ABI}") 32 # The GNU STL (shared). 38 message(FATAL_ERROR "STL configuration ANDROID_STL=${ANDROID_STL} is not supported")
|
/external/pigweed/pw_sync_stl/ |
D | BUILD.gn | 52 "The STL pw::sync::BinarySemaphore backend only works with the " + 53 "STL pw::chrono::SystemClock backend.") 77 "The STL pw::sync::CountingSemaphore backend only works with the " + 78 "STL pw::chrono::SystemClock backend.") 111 "The STL pw::sync::TimedMutex backend only works with the STL " +
|
D | docs.rst | 6 This is a set of backends for pw_sync based on the C++ STL. It is not ready for
|
/external/llvm-project/pstl/ |
D | README.md | 1 # Parallel STL 3 Parallel STL is an implementation of the C++ standard library algorithms with support for execution… 7 Parallel STL offers efficient support for both parallel and vectorized execution of algorithms. For… 12 To use Parallel STL, you must have the following software installed:
|
D | CMakeLists.txt | 39 message(STATUS "Parallel STL uses the serial backend") 43 …message(STATUS "Parallel STL uses TBB ${TBB_VERSION} (interface version: ${TBB_INTERFACE_VERSION})… 47 message(FATAL_ERROR "Requested unknown Parallel STL backend '${PSTL_PARALLEL_BACKEND}'.")
|
/external/eigen/doc/ |
D | StlContainers.dox | 3 /** \eigenManualPage TopicStlContainers Using STL Containers with Eigen 9 Using STL containers on \ref TopicFixedSizeVectorizable "fixed-size vectorizable Eigen types", or c… 14 …her Eigen types, such as Vector3f or MatrixXd, no special care is needed when using STL containers. 18 STL containers take an optional template parameter, the allocator type. When using STL containers o…
|
/external/google-fruit/extras/scripts/ |
D | postsubmit.sh | 7 if [ "$STL" != "" ] 9 STLARG="-stdlib=$STL"
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | performance-noexcept-move-constructor.rst | 11 Move constructors of all the types used with STL containers, for example, 12 need to be declared ``noexcept``. Otherwise STL will choose copy constructors
|
/external/compiler-rt/lib/cfi/ |
D | cfi_blocklist.txt | 10 # STL allocators (T *allocator<T *>::allocate(size_type, const void*)). 20 # STL address-of magic (libstdc++, libc++).
|
/external/pigweed/pw_chrono_stl/ |
D | docs.rst | 7 using STL's ``std::chrono`` library. 15 The STL based ``system_clock`` backend implements the ``pw_chrono:system_clock``
|
/external/rust/crates/csv/examples/data/bench/ |
D | nfl.csv | 514 20120909_STL@DET,1,0,0,STL,DET,,,43,G.Zuerlein kicks 73 yards from SL 35 to DET -8. S.Logan Touchba… 515 20120909_STL@DET,1,60,0,DET,STL,1,10,80,(15:00) N.Burleson right end to DET 26 for 6 yards (J.Jenki… 516 20120909_STL@DET,1,59,24,DET,STL,2,4,74,(14:24) (Shotgun) M.Stafford pass short right to C.Johnson … 517 20120909_STL@DET,1,58,45,DET,STL,1,10,70,(13:45) (Shotgun) K.Smith right tackle to DET 36 for 6 yar… 518 20120909_STL@DET,1,58,5,DET,STL,2,4,64,(13:05) (Shotgun) M.Stafford pass short right to W.Heller to… 519 20120909_STL@DET,1,57,28,DET,STL,1,10,59,(12:28) M.Stafford pass short left to N.Burleson to DET 46… 520 20120909_STL@DET,1,56,47,DET,STL,2,5,54,(11:47) (Shotgun) S.Logan right end to DET 47 for 1 yard (C… 521 20120909_STL@DET,1,56,9,DET,STL,3,4,53,(11:09) (Shotgun) M.Stafford pass short left to T.Scheffler … 522 20120909_STL@DET,1,55,40,DET,STL,1,10,43,(10:40) (No Huddle) PENALTY on SL-K.Langford Neutral Zone … 523 20120909_STL@DET,1,55,18,DET,STL,1,5,38,(10:18) (Shotgun) M.Stafford pass short left to B.Pettigrew… [all …]
|
/external/llvm-project/pstl/test/support/stdlib/ |
D | execution | 33 _PSTL_PRAGMA_MESSAGE_POLICIES("The <Parallel STL> execution policies are defined in the namespace _… 37 "The <Parallel STL> execution policies are injected into the standard namespace std::execution")
|
/external/ImageMagick/Magick++/ |
D | README | 16 Magick++ provides integrated support for the Standard Template Library (STL) so 19 STL-compatable template versions of ImageMagick's list-style operations are 20 provided so that operations may be performed on multiple images stored in STL
|
D | ChangeLog | 6 * Add support for the strip() and stripImage() STL methods. 12 * Patch for compile problem in mapImages of the STL header. 63 * lib/Magick++/STL.h (colorHistogram): If map key is not const, 73 * lib/Magick++/STL.h (colorHistogram): Added new template function 75 Verified to work when using STL <vector> and <map> as the target 80 provided in order to reliably sort color objects in STL 158 * lib/Magick++/STL.h (coderInfoList): Use GetMagickInfoArray to 163 * lib/Magick++/STL.h (affineTransformImage): Add function object 198 * lib/Magick++/STL.h (coalesceImages): Replaced implementation 238 * lib/Magick++/STL.h (writeImages): Should have been invoking [all …]
|
D | NEWS | 52 * Added endian method to Image, and endianImage class to STL.h in 107 * Added Image 'opacity' method (and STL opacityImage()) to set, or 110 * Added Image 'type' method (and STL typeImage()) to set image 209 sharpenImage STL functions in order to match equivalent ImageMagick 339 * Added STL function object support for all Image manipulation 341 stored in an STL container. 347 * Changed polygon methods in Drawable to use STL list argument. 348 * Added STL list based draw method to Image. 363 STL containers.
|
/external/eigen/bench/btl/ |
D | CMakeLists.txt | 38 ${PROJECT_SOURCE_DIR}/libs/STL) 102 add_subdirectory(libs/STL)
|
/external/clang/lib/AST/ |
D | Comment.cpp | 282 if (TemplateSpecializationTypeLoc STL = in fill() local 288 if (STL.getNumArgs() != 1) in fill() 290 TemplateArgumentLoc MaybeFunction = STL.getArgLoc(0); in fill()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | AST.cpp | 260 auto STL = TSI->getTypeLoc().getAs<TemplateSpecializationTypeLoc>(); in printTemplateSpecializationArgs() local 262 ArgLocs.reserve(STL.getNumArgs()); in printTemplateSpecializationArgs() 263 for (unsigned I = 0; I < STL.getNumArgs(); ++I) in printTemplateSpecializationArgs() 264 ArgLocs.push_back(STL.getArgLoc(I)); in printTemplateSpecializationArgs()
|
/external/pigweed/pw_thread_stl/ |
D | docs.rst | 6 This is a set of backends for pw_thread based on the C++ STL. It is not ready
|
D | BUILD.gn | 83 "The STL pw::this_thread::sleep_{for,until} backend only works with " + 84 "the STL pw::chrono::SystemClock backend " +
|
/external/llvm-project/clang/lib/AST/ |
D | Comment.cpp | 170 if (TemplateSpecializationTypeLoc STL = in getFunctionTypeLoc() local 176 if (STL.getNumArgs() != 1) in getFunctionTypeLoc() 178 TemplateArgumentLoc MaybeFunction = STL.getArgLoc(0); in getFunctionTypeLoc()
|
/external/tensorflow/tensorflow/core/platform/ |
D | README.md | 5 - STL replacement libraries rest of TensorFlow should depend on.
|
/external/openscreen/platform/base/ |
D | DEPS | 7 # the standard toolchain libraries (C, STL).
|