Searched refs:isConst (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h198 template <bool isConst, bool isOut> class InOutEdgeView {
200 using iterator = NeighborEdgeIteratorT<isConst, isOut>;
202 using GraphT = std::conditional_t<isConst, const Graph, Graph>;
204 std::conditional_t<isConst, const EdgeMapT, EdgeMapT>;
273 template <bool isConst> class VertexView {
276 std::conditional_t<isConst, ConstVertexIterator, VertexIterator>;
278 using GraphT = std::conditional_t<isConst, const Graph, Graph>;
310 template <bool isConst> class EdgeView {
313 std::conditional_t<isConst, ConstEdgeIterator, EdgeIterator>;
315 using GraphT = std::conditional_t<isConst, cons
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DGlobalMerge.cpp161 Module &M, bool isConst, unsigned AddrSpace) const;
166 const BitVector &GlobalSet, Module &M, bool isConst,
221 Module &M, bool isConst, unsigned AddrSpace) const {
234 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
408 return doMerge(Globals, AllGlobals, M, isConst, AddrSpace);
432 Changed |= doMerge(Globals, UGS.Globals, M, isConst, AddrSpace);
439 const BitVector &GlobalSet, Module &M, bool isConst,
518 M, MergedTy, isConst, MergedLinkage, MergedInit, MergedName, nullptr,
220 doMerge(SmallVectorImpl<GlobalVariable*> &Globals, Module &M, bool isConst, unsigned AddrSpace) const argument
438 doMerge(const SmallVectorImpl<GlobalVariable *> &Globals, const BitVector &GlobalSet, Module &M, bool isConst, unsigned AddrSpace) const argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.h104 bool isConst(unsigned ID) const { function in class:clang::Builtin::Context
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-instr/
H A DInstrument.cpp227 Decl->isConst());
232 Decl->isStatic(), Decl->isConst());
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp63 if (TargetT->isConst())
H A DCallEvent.cpp684 if (!D->isConst())
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.h247 bool isConst() const { function in class:clang::interp::Pointer
H A DInterp.cpp260 if (!Ptr.isConst()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp180 if (Ptr.isConst())
H A DTypeDumpVisitor.cpp368 W->printNumber("IsConst", Ptr.isConst());
H A DTypeRecordMapping.cpp354 if (Record.isConst())
355 Attr += ", isConst";
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DODRHash.cpp550 AddBoolean(Method->isConst());
891 Hash.AddBoolean(T->isConst());
H A DASTStructuralEquivalence.cpp1106 Method1->isConst() == Method2->isConst() &&
H A DDeclPrinter.cpp685 if (FT->isConst())
H A DJSONNodeDumper.cpp516 attributeOnlyIfTrue("const", T->isConst());
H A DTextNodeDumper.cpp1411 if (T->isConst())
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp216 const auto NonConstMethod = cxxMethodDecl(unless(isConst()));
H A DThreadSafety.cpp2039 if (MD->isConst())
2044 if (MD->isConst())
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp372 REGISTER_MATCHER(isConst);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2002 bool isConst() const { return getType()->castAs<FunctionType>()->isConst(); } function in class:clang::CXXMethodDecl
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5335 /// cxxMethodDecl(isConst()) matches A::foo() but not A::bar()
5336 AST_MATCHER(CXXMethodDecl, isConst) {
5337 return Node.isConst();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h331 bool isConst() const { return !!(Attrs & uint32_t(PointerOptions::Const)); } function in class:llvm::codeview::PointerRecord
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp2931 bool isConst(unsigned Reg) const;
2973 bool HexagonLoopRescheduling::isConst(unsigned Reg) const {
3119 if (isConst(PR))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp1006 ExplicitParams, ExplicitResultType, !Method->isConst());
H A DSemaExprCXX.cpp1103 if (CurLSI->CallOperator->isConst())
1129 if (Closure->getLambdaCallOperator()->isConst())
5681 if (Proto->isConst() && !Proto->isVolatile())

Completed in 280 milliseconds

12