Home
last modified time | relevance | path

Searched refs:IsPtr (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/gnu/llvm/lldb/include/lldb/DataFormatters/
DValueObjectPrinter.h68 bool IsPtr();
/openbsd/src/gnu/llvm/lldb/source/DataFormatters/
DValueObjectPrinter.cpp183 bool ValueObjectPrinter::IsPtr() { in IsPtr() function in ValueObjectPrinter
487 const bool is_ptr = IsPtr(); in ShouldPrintChildren()
565 ((IsPtr() && !m_options.m_pointer_as_array) || IsRef()); in PrintChild()
/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DSTLExtras.h278 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
280 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
281 using CastT = std::conditional_t<IsPtr, T, T &>;
288 if constexpr (IsPtr) {
322 if constexpr (IsPtr) {