| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | BlockCounter.cpp | 54 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 D | RangeConstraintManager.cpp | 26 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 D | ImmutableMap.h | 102 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 D | ImmutableSet.h | 223 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 D | ProgramStateTrait.h | 149 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 D | BlockCounter.h | 41 class Factory { 44 Factory(llvm::BumpPtrAllocator& Alloc); 45 ~Factory(); 53 friend class Factory; variable
|
| H A D | RangedConstraintManager.h | 70 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 D | BasicValueFactory.h | 118 llvm::ImmutableList<SVal>::Factory SValListFactory; 119 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
|
| H A D | Environment.h | 102 using FactoryTy = Environment::BindingsTy::Factory;
|
| /freebsd-12.1/sys/contrib/zstd/contrib/pzstd/utils/ |
| H A D | ResourcePool.h | 34 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 D | UninitializedObject.h | 158 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 D | xray-graph-diff.h | 48 class Factory { 52 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
|
| H A D | xray-graph-diff.cpp | 227 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 D | NativeProcessNetBSD.h | 31 class Factory : public NativeProcessProtocol::Factory {
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.h | 40 const NativeProcessProtocol::Factory &process_factory); 84 const NativeProcessProtocol::Factory &m_process_factory;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 61 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 D | ParsedAttr.h | 635 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 D | factory | 12 Zone Factory 0 - "Local time zone must be set--use tzsetup"
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 246 class Factory { 248 virtual ~Factory();
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 78 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 D | BROADWAY.dts | 62 label = "Factory Reset button";
|
| H A D | MZK-W04N-XX.dts | 37 label = "Factory";
|
| H A D | M2M.dts | 71 label = "Factory";
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | InnerPointerChecker.cpp | 212 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 D | MIReadMe.txt | 22 registered in the MI Driver's Command Factory will be rejected and an error message
|