Home
last modified time | relevance | path

Searched defs:make_const_ptr (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DSTLExtras.h53 template <typename T> struct make_const_ptr { struct
54 using type = std::add_pointer_t<std::add_const_t<T>>;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DSTLExtras.h53 template <typename T> struct make_const_ptr { struct
54 using type = std::add_pointer_t<std::add_const_t<T>>;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DSTLExtras.h53 template <typename T> struct make_const_ptr { struct
54 using type = std::add_pointer_t<std::add_const_t<T>>;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DSTLExtras.h53 template <typename T> struct make_const_ptr { struct
54 using type = std::add_pointer_t<std::add_const_t<T>>;
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DSTLExtras.h68 template <typename T> struct make_const_ptr { struct
69 using type = std::add_pointer_t<std::add_const_t<T>>;
/aosp_15_r20/external/clang/include/clang/AST/
H A DDeclVisitor.h27 template <typename T> struct make_const_ptr { typedef const T *type; }; argument
H A DCommentVisitor.h20 template <typename T> struct make_const_ptr { typedef const T *type; }; argument
H A DStmtVisitor.h27 template <typename T> struct make_const_ptr { typedef const T *type; }; struct