Home
last modified time | relevance | path

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

123

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp53 static inline CountMap::Factory& GetFactory(void *F) { in GetFactory()
54 return *static_cast<CountMap::Factory*>(F); in GetFactory()
64 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) { in Factory() function in BlockCounter::Factory
65 F = new CountMap::Factory(Alloc); in Factory()
68 BlockCounter::Factory::~Factory() { in ~Factory()
69 delete static_cast<CountMap::Factory*>(F); in ~Factory()
73 BlockCounter::Factory::IncrementCount(BlockCounter BC, in IncrementCount()
82 BlockCounter::Factory::GetEmptyCounter() { in GetEmptyCounter()
H A DRangeConstraintManager.cpp112 RangeSet::ContainerType RangeSet::Factory::EmptySet{};
114 RangeSet RangeSet::Factory::add(RangeSet LHS, RangeSet RHS) { in add()
122 RangeSet RangeSet::Factory::add(RangeSet Original, Range Element) { in add()
134 RangeSet RangeSet::Factory::add(RangeSet Original, const llvm::APSInt &Point) { in add()
138 RangeSet RangeSet::Factory::unite(RangeSet LHS, RangeSet RHS) { in unite()
143 RangeSet RangeSet::Factory::unite(RangeSet Original, Range R) { in unite()
150 RangeSet RangeSet::Factory::unite(RangeSet Original, llvm::APSInt Point) { in unite()
154 RangeSet RangeSet::Factory::unite(RangeSet Original, llvm::APSInt From, in unite()
166 RangeSet::ContainerType RangeSet::Factory::unite(const ContainerType &LHS, in unite()
318 RangeSet RangeSet::Factory::getRangeSet(Range From) { in getRangeSet()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DImmutableMap.h83 class Factory {
84 typename TreeTy::Factory F;
88 Factory(bool canonicalize = true) : Canonicalize(canonicalize) {} in Canonicalize()
90 Factory(BumpPtrAllocator &Alloc, bool canonicalize = true)
93 Factory(const Factory &) = delete;
94 Factory &operator=(const Factory &) = delete;
109 typename TreeTy::Factory *getTreeFactory() const { in getTreeFactory()
110 return const_cast<typename TreeTy::Factory *>(&F); in getTreeFactory()
212 using FactoryTy = typename TreeTy::Factory;
216 FactoryTy *Factory; variable
[all …]
H A DImmutableSet.h48 using Factory = ImutAVLFactory<ImutInfo>; variable
209 Factory *factory;
231 ImutAVLTree(Factory *f, ImutAVLTree* l, ImutAVLTree* r, value_type_ref v, in ImutAVLTree()
973 class Factory {
974 typename TreeTy::Factory F;
978 Factory(bool canonicalize = true)
981 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true)
984 Factory(const Factory& RHS) = delete;
985 void operator=(const Factory& RHS) = delete;
1018 typename TreeTy::Factory *getTreeFactory() const {
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h151 using context_type = typename data_type::Factory &;
183 return *((typename data_type::Factory *) p);
187 return new typename data_type::Factory(Alloc);
191 delete (typename data_type::Factory *) Ctx;
199 using context_type = typename data_type::Factory &;
224 return *((typename data_type::Factory *) p);
228 return new typename data_type::Factory(Alloc);
232 delete (typename data_type::Factory *) Ctx;
241 using context_type = typename data_type::Factory &;
261 return *((typename data_type::Factory *) p);
[all …]
H A DBlockCounter.h40 class Factory {
43 Factory(llvm::BumpPtrAllocator& Alloc);
44 ~Factory();
52 friend class Factory; variable
H A DRangedConstraintManager.h73 class Factory;
121 class Factory {
123 Factory(BasicValueFactory &BV) : ValueFactory(BV) {} in Factory() function
314 RangeSet(Factory &F, const llvm::APSInt &From, const llvm::APSInt &To) in RangeSet()
318 RangeSet(Factory &F, const llvm::APSInt &Point) in RangeSet()
401 friend class Factory; variable
H A DCoreEngine.h86 BlockCounter::Factory BCounterFactory;
103 DataTag::Factory DataTags;
208 DataTag::Factory &getDataTags() { return DataTags; } in getDataTags()
H A DBasicValueFactory.h124 llvm::ImmutableList<SVal>::Factory SValListFactory;
125 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DInlineAdvisor.h299 PluginInlineAdvisorAnalysis(AdvisorFactory Factory) : Factory(Factory) { in PluginInlineAdvisorAnalysis() argument
301 assert(Factory != nullptr && in PluginInlineAdvisorAnalysis()
306 AdvisorFactory Factory; member
309 Result run(Module &M, ModuleAnalysisManager &MAM) { return {Factory}; } in run()
310 Result getResult() { return {Factory}; } in getResult()
313 AdvisorFactory Factory;
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h165 FieldChain::Factory &ChainFactory;
168 FieldChainInfo(FieldChain::Factory &F, FieldChain NewChain) in FieldChainInfo()
175 FieldChainInfo(FieldChain::Factory &F) : ChainFactory(F) {} in FieldChainInfo()
204 FieldChainInfo::FieldChain::Factory ChainFactory;
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp67 typedef process_linux::NativeProcessLinux::Factory NativeProcessFactory;
69 typedef process_freebsd::NativeProcessFreeBSD::Factory NativeProcessFactory;
71 typedef process_netbsd::NativeProcessNetBSD::Factory NativeProcessFactory;
73 typedef process_openbsd::NativeProcessOpenBSD::Factory NativeProcessFactory;
75 typedef NativeProcessWindows::Factory NativeProcessFactory;
78 class NativeProcessFactory : public NativeProcessProtocol::Factory {
/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h47 class Factory {
51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
/openbsd-src/gnu/llvm/clang/tools/clang-rename/
H A DClangRename.cpp186 std::unique_ptr<tooling::FrontendActionFactory> Factory = in main() local
191 ExitCode = Tool.runAndSave(Factory.get()); in main()
193 ExitCode = Tool.run(Factory.get()); in main()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeProcessOpenBSD.h31 class Factory : public NativeProcessProtocol::Factory {
H A DNativeProcessOpenBSD.cpp66 NativeProcessOpenBSD::Factory::Launch(ProcessLaunchInfo &launch_info, in Launch()
120 NativeProcessOpenBSD::Factory::Attach( in Attach()
145 NativeProcessOpenBSD::Factory::GetSupportedExtensions() const { in GetSupportedExtensions()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h30 class Factory : public NativeProcessProtocol::Factory {
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.h33 class Factory : public NativeProcessProtocol::Factory {
/openbsd-src/share/zoneinfo/datfiles/
H A Dfactory12 # TZ="Factory" was added to TZDB in 1989, and in 2016 its abbreviation
16 # TZ="Factory" is a valid timezone, so tzalloc("Factory") succeeds, whereas
18 # Also, a downstream distributor could modify Factory to be a
23 Zone Factory 0 - -00
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.h34 class Factory : public NativeProcessProtocol::Factory {
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.h43 class Factory : public NativeProcessProtocol::Factory {
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DParsedAttr.h795 AttributeFactory &Factory; variable
799 return Factory.allocate(size); in allocate()
817 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
821 ~AttributePool() { Factory.reclaimPool(*this); } in ~AttributePool()
826 AttributeFactory &getFactory() const { return Factory; } in getFactory()
829 Factory.reclaimPool(*this); in clear()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DLiveVariables.cpp31 llvm::ImmutableSet<const Expr *>::Factory ESetFact;
32 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
33 llvm::ImmutableSet<const BindingDecl *>::Factory BSetFact;
212 llvm::ImmutableSet<const Expr *>::Factory &F, in AddLiveExpr()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DInnerPointerChecker.cpp242 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkPostCall()
262 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkDeadSymbols()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h38 const NativeProcessProtocol::Factory &process_factory);
102 const NativeProcessProtocol::Factory &m_process_factory;

123