Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/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 …]
H A DZ3CrosscheckVisitor.cpp44 : Constraints(ConstraintMap::Factory().getEmptyMap()), Result(Result), in Z3CrosscheckVisitor()
96 ConstraintMap::Factory &CF = N->getState()->get_context<ConstraintMap>(); in addConstraints()
/freebsd/contrib/llvm-project/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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineOrder.h61 PluginInlineOrderAnalysis(InlineOrderFactory Factory) : Factory(Factory) { in PluginInlineOrderAnalysis() argument
63 assert(Factory != nullptr && in PluginInlineOrderAnalysis()
68 InlineOrderFactory Factory; member
71 Result run(Module &, ModuleAnalysisManager &) { return {Factory}; } in run()
72 Result getResult() { return {Factory}; } in getResult()
79 InlineOrderFactory Factory; variable
H A DInlineAdvisor.h298 PluginInlineAdvisorAnalysis(AdvisorFactory Factory) : Factory(Factory) {
300 assert(Factory != nullptr && in PluginInlineAdvisorAnalysis()
305 AdvisorFactory Factory;
308 Result run(Module &M, ModuleAnalysisManager &MAM) { return {Factory}; }
309 Result getResult() { return {Factory}; } in run()
312 AdvisorFactory Factory;
299 PluginInlineAdvisorAnalysis(AdvisorFactory Factory) PluginInlineAdvisorAnalysis() argument
306 AdvisorFactory Factory; global() member
/freebsd/contrib/llvm-project/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.h87 BlockCounter::Factory BCounterFactory;
104 DataTag::Factory DataTags;
193 DataTag::Factory &getDataTags() { return DataTags; } in getDataTags()
H A DBasicValueFactory.h124 llvm::ImmutableList<SVal>::Factory SValListFactory;
125 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
H A DEnvironment.h101 using FactoryTy = Environment::BindingsTy::Factory;
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h46 class Factory {
50 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {}
51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} Factory() function
H A Dxray-graph-diff.cpp213 Expected<GraphDiffRenderer> GraphDiffRenderer::Factory::getGraphDiffRenderer() { in getGraphDiffRenderer()
414 std::array<GraphRenderer::Factory, 2> Factories{ in __anon0eabb36e0102()
450 GraphDiffRenderer::Factory DGF(Graphs[0], Graphs[1]); in __anon0eabb36e0102()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBlockInCriticalSectionChecker.cpp286 auto &Factory = State->get_context<ActiveCritSections>(); in handleUnlock() local
287 llvm::ImmutableList<CritSectionMarker> NewList = Factory.getEmptyList(); in handleUnlock()
291 NewList = Factory.add(*It, NewList); in handleUnlock()
H A DInnerPointerChecker.cpp234 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkPostCall()
254 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkDeadSymbols()
H A DCheckObjCDealloc.cpp275 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in checkBeginFunction()
516 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in diagnoseMissingReleases()
857 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in removeValueRequiringRelease()
/freebsd/contrib/tzdata/
H A Dfactory11 # TZ="Factory" was added to TZDB in 1989, and in 2016 its abbreviation
15 # TZ="Factory" is a valid timezone, so tzalloc("Factory") succeeds, whereas
17 # Also, a downstream distributor could modify Factory to be a
22 Zone Factory 0 - "Local time zone must be set--use tzsetup"
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dclps711x-clock.txt6 - startup-frequency: Factory set CPU startup frequency in HZ.
H A Dsilabs,si570.txt19 - factory-fout: Factory set default frequency. This frequency is part specific.
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h697 AttributeFactory &Factory; variable
701 return Factory.allocate(size); in allocate()
719 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
726 ~AttributePool() { Factory.reclaimPool(*this); } in ~AttributePool()
735 AttributeFactory &getFactory() const { return Factory; } in getFactory()
738 Factory.reclaimPool(*this); in clear()
/freebsd/contrib/llvm-project/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()
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-xp-axpwifiap.dts78 label = "Factory Reset Button";
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h2298 template <int&... ExplicitParameterBarrier, typename Factory> in GTEST_DISABLE_MSC_WARNINGS_POP_()
2301 const char* file, int line, Factory factory) { in GTEST_DISABLE_MSC_WARNINGS_POP_()
2306 explicit FactoryImpl(Factory f) : factory_(std::move(f)) {} in GTEST_DISABLE_MSC_WARNINGS_POP_()
2310 Factory factory_; in GTEST_DISABLE_MSC_WARNINGS_POP_()

123