Home
last modified time | relevance | path

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

123

/netbsd-src/external/apache2/llvm/dist/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.cpp109 RangeSet::ContainerType RangeSet::Factory::EmptySet{};
111 RangeSet RangeSet::Factory::add(RangeSet Original, Range Element) { in add()
123 RangeSet RangeSet::Factory::add(RangeSet Original, const llvm::APSInt &Point) { in add()
127 RangeSet RangeSet::Factory::getRangeSet(Range From) { in getRangeSet()
133 RangeSet RangeSet::Factory::makePersistent(ContainerType &&From) { in makePersistent()
151 RangeSet::ContainerType *RangeSet::Factory::construct(ContainerType &&From) { in construct()
156 RangeSet RangeSet::Factory::add(RangeSet LHS, RangeSet RHS) { in add()
275 RangeSet RangeSet::Factory::intersect(RangeSet What, llvm::APSInt Lower, in intersect()
318 RangeSet RangeSet::Factory::intersect(const RangeSet::ContainerType &LHS, in intersect()
401 RangeSet RangeSet::Factory::intersect(RangeSet LHS, RangeSet RHS) { in intersect()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DImmutableMap.h82 class Factory {
83 typename TreeTy::Factory F;
87 Factory(bool canonicalize = true) : Canonicalize(canonicalize) {} in Canonicalize()
89 Factory(BumpPtrAllocator &Alloc, bool canonicalize = true)
92 Factory(const Factory &) = delete;
93 Factory &operator=(const Factory &) = delete;
108 typename TreeTy::Factory *getTreeFactory() const { in getTreeFactory()
109 return const_cast<typename TreeTy::Factory *>(&F); in getTreeFactory()
248 using FactoryTy = typename TreeTy::Factory;
252 FactoryTy *Factory; variable
[all …]
H A DImmutableSet.h47 using Factory = ImutAVLFactory<ImutInfo>; variable
222 Factory *factory;
244 ImutAVLTree(Factory *f, ImutAVLTree* l, ImutAVLTree* r, value_type_ref v, in ImutAVLTree()
986 class Factory {
987 typename TreeTy::Factory F;
991 Factory(bool canonicalize = true)
994 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true)
997 Factory(const Factory& RHS) = delete;
998 void operator=(const Factory& RHS) = delete;
1031 typename TreeTy::Factory *getTreeFactory() const {
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h148 using context_type = typename data_type::Factory &;
180 return *((typename data_type::Factory *) p);
184 return new typename data_type::Factory(Alloc);
188 delete (typename data_type::Factory *) Ctx;
196 using context_type = typename data_type::Factory &;
221 return *((typename data_type::Factory *) p);
225 return new typename data_type::Factory(Alloc);
229 delete (typename data_type::Factory *) Ctx;
238 using context_type = typename data_type::Factory &;
258 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.h72 class Factory;
120 class Factory {
122 Factory(BasicValueFactory &BV) : ValueFactory(BV) {} in Factory() function
244 RangeSet(Factory &F, const llvm::APSInt &From, const llvm::APSInt &To) in RangeSet()
248 RangeSet(Factory &F, const llvm::APSInt &Point) in RangeSet()
307 friend class Factory; variable
H A DCoreEngine.h85 BlockCounter::Factory BCounterFactory;
101 NoteTag::Factory NoteTags;
203 NoteTag::Factory &getNoteTags() { return NoteTags; } in getNoteTags()
H A DBasicValueFactory.h117 llvm::ImmutableList<SVal>::Factory SValListFactory;
118 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
H A DEnvironment.h101 using FactoryTy = Environment::BindingsTy::Factory;
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dallocator_list.d65 struct AllocatorList(Factory, BookkeepingAllocator = GCAllocator)
79 alias Allocator = typeof(Factory.init(1));
113 static if (stateSize!Factory)
115 Factory factory;
120 static if (stateSize!Factory)
126 private auto make(size_t n) { Factory f; return f(n); } in make()
133 static if (stateSize!Factory)
134 this(ref Factory plant) in this()
139 static if (stateSize!Factory)
140 this(Factory plant) in this()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dshowcase.d62 static struct Factory in mmapRegionList() struct
83 auto shop = Factory(bytesPerRegion); in mmapRegionList()
84 return AllocatorList!(Factory, NullAllocator)(shop); in mmapRegionList()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/
H A Dshowcase.d61 static struct Factory in mmapRegionList() struct
82 auto shop = Factory(bytesPerRegion); in mmapRegionList()
83 return AllocatorList!(Factory, NullAllocator)(shop); in mmapRegionList()
/netbsd-src/external/apache2/llvm/dist/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;
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dallocator_list.d69 struct AllocatorList(Factory, BookkeepingAllocator = GCAllocator)
83 alias Allocator = typeof(Factory.init(1));
117 static if (stateSize!Factory)
119 Factory factory;
124 static if (stateSize!Factory)
130 private auto make(size_t n) { Factory f; return f(n); } in make()
137 static if (stateSize!Factory)
138 this(ref Factory plant) in this()
143 static if (stateSize!Factory)
144 this(Factory plant) in this()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h47 class Factory {
51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
H A Dxray-graph-diff.cpp213 Expected<GraphDiffRenderer> GraphDiffRenderer::Factory::getGraphDiffRenderer() { in getGraphDiffRenderer()
414 std::array<GraphRenderer::Factory, 2> Factories{ in __anon59b846d90102()
450 GraphDiffRenderer::Factory DGF(Graphs[0], Graphs[1]); in __anon59b846d90102()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DLiveVariables.cpp30 llvm::ImmutableSet<const Expr *>::Factory ESetFact;
31 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
32 llvm::ImmutableSet<const BindingDecl *>::Factory BSetFact;
206 llvm::ImmutableSet<const Expr *>::Factory &F, in AddLiveExpr()
/netbsd-src/external/public-domain/tz/dist/
H A Dfactory12 Zone Factory 0 - -00
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DParsedAttr.h743 AttributeFactory &Factory; variable
747 return Factory.allocate(size); in allocate()
765 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
769 ~AttributePool() { Factory.reclaimPool(*this); } in ~AttributePool()
774 AttributeFactory &getFactory() const { return Factory; } in getFactory()
777 Factory.reclaimPool(*this); in clear()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DInnerPointerChecker.cpp245 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkPostCall()
265 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkDeadSymbols()
H A DCheckObjCDealloc.cpp269 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in checkBeginFunction()
508 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in diagnoseMissingReleases()
866 SymbolSet::Factory &F = State->getStateManager().get_context<SymbolSet>(); in removeValueRequiringRelease()
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Darmada-xp-axpwifiap.dts80 label = "Factory Reset Button";
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h2437 template <int&... ExplicitParameterBarrier, typename Factory>
2440 const char* file, int line, Factory factory) { in RegisterTest()
2445 explicit FactoryImpl(Factory f) : factory_(std::move(f)) {} in RegisterTest()
2449 Factory factory_; in RegisterTest()

123