| /openbsd-src/gnu/llvm/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 | 112 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 D | ImmutableMap.h | 83 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 D | ImmutableSet.h | 48 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 D | ProgramStateTrait.h | 151 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 D | BlockCounter.h | 40 class Factory { 43 Factory(llvm::BumpPtrAllocator& Alloc); 44 ~Factory(); 52 friend class Factory; variable
|
| H A D | RangedConstraintManager.h | 73 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 D | CoreEngine.h | 86 BlockCounter::Factory BCounterFactory; 103 DataTag::Factory DataTags; 208 DataTag::Factory &getDataTags() { return DataTags; } in getDataTags()
|
| H A D | BasicValueFactory.h | 124 llvm::ImmutableList<SVal>::Factory SValListFactory; 125 llvm::ImmutableList<const CXXBaseSpecifier *>::Factory CXXBaseListFactory;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | InlineAdvisor.h | 299 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 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;
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 67 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 D | xray-graph-diff.h | 47 class Factory { 51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {} in Factory() function
|
| /openbsd-src/gnu/llvm/clang/tools/clang-rename/ |
| H A D | ClangRename.cpp | 186 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 D | NativeProcessOpenBSD.h | 31 class Factory : public NativeProcessProtocol::Factory {
|
| H A D | NativeProcessOpenBSD.cpp | 66 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 D | NativeProcessNetBSD.h | 30 class Factory : public NativeProcessProtocol::Factory {
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.h | 33 class Factory : public NativeProcessProtocol::Factory {
|
| /openbsd-src/share/zoneinfo/datfiles/ |
| H A D | factory | 12 # 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 D | NativeProcessWindows.h | 34 class Factory : public NativeProcessProtocol::Factory {
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeProcessLinux.h | 43 class Factory : public NativeProcessProtocol::Factory {
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 795 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 D | LiveVariables.cpp | 31 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 D | InnerPointerChecker.cpp | 242 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 D | GDBRemoteCommunicationServerLLGS.h | 38 const NativeProcessProtocol::Factory &process_factory); 102 const NativeProcessProtocol::Factory &m_process_factory;
|