Home
last modified time | relevance | path

Searched refs:IsRef (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexingContext.cpp321 bool IsRef, SymbolRoleSet Roles, ArrayRef<SymbolRelation> Relations) { in shouldReportOccurrenceForSystemDeclOnlyMode() argument
322 if (!IsRef) in shouldReportOccurrenceForSystemDeclOnlyMode()
368 bool IsRef, const Decl *Parent, in handleDeclOccurrence() argument
394 if (!shouldReportOccurrenceForSystemDeclOnlyMode(IsRef, Roles, Relations)) in handleDeclOccurrence()
406 if (!IsRef) in handleDeclOccurrence()
414 if (IsRef) in handleDeclOccurrence()
442 if (IsRef || (!isa<ParmVarDecl>(D) && isFunctionLocalSymbol(D))) { in handleDeclOccurrence()
491 bool IndexingContext::shouldIndexMacroOccurrence(bool IsRef, in shouldIndexMacroOccurrence() argument
500 if (!IsRef) in shouldIndexMacroOccurrence()
H A DIndexingContext.h131 bool shouldIndexMacroOccurrence(bool IsRef, SourceLocation Loc);
134 bool IsRef, const Decl *Parent,
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp203 bool ValueObjectPrinter::IsRef() { in IsRef() function in ValueObjectPrinter
511 const bool is_ref = IsRef(); in ShouldPrintChildren()
586 if (IsRef()) { in PrintChildrenPreamble()
602 ((IsPtr() && !m_options.m_pointer_as_array) || IsRef()); in PrintChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DHLSLBuiltinTypeDeclBuilder.h89 bool IsConst, bool IsRef);
H A DSemaCUDA.cpp1141 bool IsRef = Callee->getParamDecl(I)->getType()->isReferenceType(); in recordPotentialODRUsedVariable() local
1142 HostByValue |= CoversHost && !IsRef; in recordPotentialODRUsedVariable()
1143 HostByRef |= CoversHost && IsRef; in recordPotentialODRUsedVariable()
1144 DeviceByValue |= CoversDevice && !IsRef; in recordPotentialODRUsedVariable()
1145 DeviceByRef |= CoversDevice && IsRef; in recordPotentialODRUsedVariable()
H A DHLSLBuiltinTypeDeclBuilder.cpp807 bool IsConst, bool IsRef) { in addHandleAccessFunction() argument
818 if (IsRef) { in addHandleAccessFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp343 for (auto U : PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG)) { in getAllReachingDefsRecImpl()
490 if (!DFG.IsRef<NodeAttrs::Def>(R)) in computePhiInfo()
593 if (!DFG.IsRef<NodeAttrs::Use>(I) || SeenUses.count(I.Id)) in computePhiInfo()
672 NodeList PUs = PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG); in computePhiInfo()
726 NodeList Ds = PA.Addr->members_if(DFG.IsRef<NodeAttrs::Def>, DFG); in computePhiInfo()
807 for (auto U : PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG)) { in computeLiveIns()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h90 bool IsRef();
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h189 static constexpr bool IsRef = std::is_reference<T>::value; variable
192 using storage_type = std::conditional_t<IsRef, wrap, T>;
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp124 bool IsRef = (V.Type == BT::BitValue::Ref); in operator <<() local
126 if (!IsRef && V == SV) in operator <<()
128 if (IsRef && SV.Type == BT::BitValue::Ref && V.RefI.Reg == SV.RefI.Reg) { in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h817 template <uint16_t Kind> static bool IsRef(const Node BA) { in IsRef() function