Home
last modified time | relevance | path

Searched refs:Factory (Results 1 – 25 of 62) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp54 static inline CountMap::Factory& GetFactory(void *F) { in GetFactory()
55 return *static_cast<CountMap::Factory*>(F); in GetFactory()
65 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) { in Factory() function in BlockCounter::Factory
66 F = new CountMap::Factory(Alloc); in Factory()
69 BlockCounter::Factory::~Factory() { in ~Factory()
70 delete static_cast<CountMap::Factory*>(F); in ~Factory()
74 BlockCounter::Factory::IncrementCount(BlockCounter BC, in IncrementCount()
83 BlockCounter::Factory::GetEmptyCounter() { in GetEmptyCounter()
H A DRangeConstraintManager.cpp26 void RangeSet::IntersectInRange(BasicValueFactory &BV, Factory &F, in IntersectInRange()
156 RangeSet RangeSet::Intersect(BasicValueFactory &BV, Factory &F, in Intersect()
180 RangeSet RangeSet::Negate(BasicValueFactory &BV, Factory &F) const { in Negate()
284 RangeSet::Factory F;
398 ConstraintRangeTy::Factory &CRFactory = State->get_context<ConstraintRange>(); in removeDeadBindings()
414 RangeSet::Factory &F, in assumeNonZero()
432 RangeSet::Factory &F, in applyBitwiseConstraints()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DImmutableMap.h102 class Factory {
103 typename TreeTy::Factory F;
112 Factory(const Factory &) = delete;
113 Factory &operator=(const Factory &) = delete;
271 FactoryTy *Factory; variable
288 Factory(F.getTreeFactory()) { in ImmutableMapRef()
292 ImmutableMapRef(const ImmutableMapRef &X) : Root(X.Root), Factory(X.Factory) { in ImmutableMapRef()
312 Factory = X.Factory;
331 return ImmutableMapRef(NewT, Factory); in add()
335 TreeTy *NewT = Factory->remove(Root, K); in remove()
[all …]
H A DImmutableSet.h223 Factory *factory;
994 class Factory {
995 typename TreeTy::Factory F;
1005 Factory(const Factory& RHS) = delete;
1044 friend class Factory;
1120 FactoryTy *Factory;
1129 Factory(F) {
1135 Factory(X.Factory) {
1148 Factory = X.Factory;
1158 return ImmutableSetRef(Factory->add(Root, V), Factory);
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h149 using context_type = typename data_type::Factory &;
181 return *((typename data_type::Factory *) p);
185 return new typename data_type::Factory(Alloc);
189 delete (typename data_type::Factory *) Ctx;
197 using context_type = typename data_type::Factory &;
222 return *((typename data_type::Factory *) p);
226 return new typename data_type::Factory(Alloc);
230 delete (typename data_type::Factory *) Ctx;
259 return *((typename data_type::Factory *) p);
263 return new typename data_type::Factory(Alloc);
[all …]
H A DBlockCounter.h41 class Factory {
44 Factory(llvm::BumpPtrAllocator& Alloc);
45 ~Factory();
53 friend class Factory; variable
H A DRangedConstraintManager.h70 typedef PrimRangeSet::Factory Factory; typedef
77 RangeSet addRange(Factory &F, const RangeSet &RS) { in addRange()
90 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) in RangeSet()
105 void IntersectInRange(BasicValueFactory &BV, Factory &F,
115 RangeSet Intersect(BasicValueFactory &BV, Factory &F, llvm::APSInt Lower,
118 RangeSet Negate(BasicValueFactory &BV, Factory &F) const;
H A DBasicValueFactory.h118 llvm::ImmutableList<SVal>::Factory SValListFactory;
119 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
H A DEnvironment.h102 using FactoryTy = Environment::BindingsTy::Factory;
/freebsd-12.1/sys/contrib/zstd/contrib/pzstd/utils/
H A DResourcePool.h34 using Factory = std::function<T*()>; variable
40 Factory factory_;
52 ResourcePool(Factory factory, Free free) in ResourcePool()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h158 FieldChain::Factory &ChainFactory;
161 FieldChainInfo(FieldChain::Factory &F, FieldChain NewChain) in FieldChainInfo()
168 FieldChainInfo(FieldChain::Factory &F) : ChainFactory(F) {} in FieldChainInfo()
197 FieldChainInfo::FieldChain::Factory ChainFactory;
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h48 class Factory {
52 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
H A Dxray-graph-diff.cpp227 Expected<GraphDiffRenderer> GraphDiffRenderer::Factory::getGraphDiffRenderer() { in getGraphDiffRenderer()
429 std::array<GraphRenderer::Factory, 2> Factories{ in __anon25b2bc730102()
465 GraphDiffRenderer::Factory DGF(Graphs[0], Graphs[1]); in __anon25b2bc730102()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h31 class Factory : public NativeProcessProtocol::Factory {
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h40 const NativeProcessProtocol::Factory &process_factory);
84 const NativeProcessProtocol::Factory &m_process_factory;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp61 typedef process_linux::NativeProcessLinux::Factory NativeProcessFactory;
63 typedef process_netbsd::NativeProcessNetBSD::Factory NativeProcessFactory;
66 class NativeProcessFactory : public NativeProcessProtocol::Factory {
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DParsedAttr.h635 AttributeFactory &Factory; variable
639 return Factory.allocate(size); in allocate()
657 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
661 ~AttributePool() { Factory.reclaimPool(*this); } in ~AttributePool()
666 AttributeFactory &getFactory() const { return Factory; } in getFactory()
669 Factory.reclaimPool(*this); in clear()
/freebsd-12.1/contrib/tzdata/
H A Dfactory12 Zone Factory 0 - "Local time zone must be set--use tzsetup"
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h246 class Factory {
248 virtual ~Factory();
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp78 llvm::ImmutableSet<const Stmt *>::Factory SSetFact;
79 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
80 llvm::ImmutableSet<const BindingDecl *>::Factory BSetFact;
255 llvm::ImmutableSet<const Stmt *>::Factory &F, in AddLiveStmt()
/freebsd-12.1/sys/gnu/dts/mips/
H A DBROADWAY.dts62 label = "Factory Reset button";
H A DMZK-W04N-XX.dts37 label = "Factory";
H A DM2M.dts71 label = "Factory";
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DInnerPointerChecker.cpp212 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkPostCall()
238 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkDeadSymbols()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIReadMe.txt22 registered in the MI Driver's Command Factory will be rejected and an error message

123