| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BlockCounter.cpp | 53 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 D | RangeConstraintManager.cpp | 111 RangeSet::ContainerType RangeSet::Factory::EmptySet{}; 129 RangeSet RangeSet::Factory::getRangeSet(Range From) { in getRangeSet() 419 RangeSet RangeSet::Factory::negate(RangeSet What) { in negate() 594 getDisequalClasses(DisequalityMapTy Map, ClassSet::Factory &Factory) const; 1216 RangeSet::Factory &RangeFactory; 1501 RangeSet::Factory &F) in ConstraintAssignor() 1583 RangeSet::Factory &RangeFactory; 1667 RangeSet::Factory F; 1957 inline SymbolSet::Factory & 2125 ClassSet::Factory &Factory) const { in getDisequalClasses() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ImmutableMap.h | 82 class Factory { 83 typename TreeTy::Factory F; 92 Factory(const Factory &) = delete; 93 Factory &operator=(const Factory &) = delete; 108 typename TreeTy::Factory *getTreeFactory() const { in getTreeFactory() 248 using FactoryTy = typename TreeTy::Factory; 252 FactoryTy *Factory; variable 260 : Root(const_cast<TreeTy *>(R)), Factory(F) {} in ImmutableMapRef() 281 return ImmutableMapRef(NewT, Factory); in add() 285 TreeTy *NewT = Factory->remove(Root.get(), K); in remove() [all …]
|
| H A D | ImmutableSet.h | 47 using Factory = ImutAVLFactory<ImutInfo>; variable 222 Factory *factory; 986 class Factory { 987 typename TreeTy::Factory F; 991 Factory(bool canonicalize = true) 997 Factory(const Factory& RHS) = delete; 1036 friend class Factory; 1107 using FactoryTy = typename TreeTy::Factory; 1111 FactoryTy *Factory; 1125 return ImmutableSetRef(Factory->add(Root.get(), V), Factory); [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ProgramStateTrait.h | 148 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; 258 return *((typename data_type::Factory *) p); 262 return new typename data_type::Factory(Alloc); [all …]
|
| H A D | BlockCounter.h | 40 class Factory { 43 Factory(llvm::BumpPtrAllocator& Alloc); 44 ~Factory(); 52 friend class Factory; variable
|
| H A D | RangedConstraintManager.h | 72 class Factory; 120 class Factory { 122 Factory(BasicValueFactory &BV) : ValueFactory(BV) {} in Factory() function 247 RangeSet(Factory &F, const llvm::APSInt &From, const llvm::APSInt &To) in RangeSet() 251 RangeSet(Factory &F, const llvm::APSInt &Point) in RangeSet() 310 friend class Factory; variable
|
| H A D | CoreEngine.h | 85 BlockCounter::Factory BCounterFactory; 102 DataTag::Factory DataTags; 204 DataTag::Factory &getDataTags() { return DataTags; } in getDataTags()
|
| H A D | Environment.h | 101 using FactoryTy = Environment::BindingsTy::Factory;
|
| H A D | BasicValueFactory.h | 119 llvm::ImmutableList<SVal>::Factory SValListFactory; 120 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/ |
| H A D | UninitializedObject.h | 165 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;
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-graph-diff.h | 47 class Factory { 51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
|
| H A D | xray-graph-diff.cpp | 213 Expected<GraphDiffRenderer> GraphDiffRenderer::Factory::getGraphDiffRenderer() { in getGraphDiffRenderer() 414 std::array<GraphRenderer::Factory, 2> Factories{ in __anonb07244a20102() 450 GraphDiffRenderer::Factory DGF(Graphs[0], Graphs[1]); in __anonb07244a20102()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/nvmem/ |
| H A D | st,stm32-romem.yaml | 7 title: STMicroelectronics STM32 Factory-programmed data bindings 10 This represents STM32 Factory-programmed read only non-volatile area: locked
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 66 typedef process_linux::NativeProcessLinux::Factory NativeProcessFactory; 68 typedef process_freebsd::NativeProcessFreeBSD::Factory NativeProcessFactory; 70 typedef process_netbsd::NativeProcessNetBSD::Factory NativeProcessFactory; 72 typedef NativeProcessWindows::Factory NativeProcessFactory; 75 class NativeProcessFactory : public NativeProcessProtocol::Factory {
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.h | 30 class Factory : public NativeProcessProtocol::Factory {
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.h | 33 class Factory : public NativeProcessProtocol::Factory {
|
| /freebsd-13.1/contrib/tzdata/ |
| H A D | factory | 12 Zone Factory 0 - "Local time zone must be set--use tzsetup"
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/clock/ |
| H A D | clps711x-clock.txt | 6 - startup-frequency: Factory set CPU startup frequency in HZ.
|
| H A D | silabs,si570.txt | 19 - factory-fout: Factory set default frequency. This frequency is part specific.
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.h | 37 const NativeProcessProtocol::Factory &process_factory); 90 const NativeProcessProtocol::Factory &m_process_factory;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 30 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 743 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | InnerPointerChecker.cpp | 245 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkPostCall() 265 PtrSet::Factory &F = State->getStateManager().get_context<PtrSet>(); in checkDeadSymbols()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 257 class Factory { 259 virtual ~Factory();
|