Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCallingConv.h62 bool IsPtr = I != End && (*I)->isPointerTy(); in CC_M68k_Any_AssignToReg() local
65 IsPtr ? State.AllocateReg(AddrRegList) : State.AllocateReg(DataRegList); in CC_M68k_Any_AssignToReg()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRawPtrRefMemberChecker.cpp316 bool IsPtr = isa<PointerType>(T) || isa<ObjCObjectPointerType>(T); in printPointer() local
317 Os << (IsPtr ? "raw pointer" : "reference") << " to " << typeName() << " "; in printPointer()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DContext.h37 bool IsPtr; member
H A DCompiler.cpp5201 if (this->LambdaThisCapture.IsPtr) in VisitCXXThisExpr()
6582 if (IsReference || !It->second.IsPtr) in visitDeclRef()
6609 auto [Offset, IsPtr] = It->second; in visitDeclRef()
6611 if (IsPtr) in visitDeclRef()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h88 bool IsPtr();
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp197 bool ValueObjectPrinter::IsPtr() { in IsPtr() function in ValueObjectPrinter
512 const bool is_ptr = IsPtr(); in ShouldPrintChildren()
602 ((IsPtr() && !m_options.m_pointer_as_array) || IsRef()); in PrintChild()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h263 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
265 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
266 using CastT = std::conditional_t<IsPtr, T, T &>;
273 if constexpr (IsPtr) {
307 if constexpr (IsPtr) {
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp2377 auto IsPtr = [](const Expr *E, MatchResult &R) { in matches() local
2386 const auto IsPlusOverPtrAndInteger = [&IsPtr](const Expr *E, in matches()
2394 if (isa<IntegerLiteral>(RHS) && IsPtr(LHS, R)) { in matches()
2399 if (isa<IntegerLiteral>(LHS) && IsPtr(RHS, R)) { in matches()