HomeSort by: relevance | last modified time | path
    Searched defs:Factory (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 40 class Factory {
43 Factory(llvm::BumpPtrAllocator& Alloc);
44 ~Factory();
52 friend class Factory;
RangedConstraintManager.h 65 /// New RangeSet objects can be ONLY produced by RangeSet::Factory object, which
72 class Factory;
104 // The memory is fully managed by the factory and is alive as long as the
105 // factory itself is alive.
120 class Factory {
122 Factory(BasicValueFactory &BV) : ValueFactory(BV) {}
225 // we need this factory.
244 RangeSet(Factory &F, const llvm::APSInt &From, const llvm::APSInt &To)
248 RangeSet(Factory &F, const llvm::APSInt &Point)
307 friend class Factory;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 53 static inline CountMap::Factory& GetFactory(void *F) {
54 return *static_cast<CountMap::Factory*>(F);
64 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) {
65 F = new CountMap::Factory(Alloc);
68 BlockCounter::Factory::~Factory() {
69 delete static_cast<CountMap::Factory*>(F);
73 BlockCounter::Factory::IncrementCount(BlockCounter BC,
82 BlockCounter::Factory::GetEmptyCounter()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph-diff.h 47 class Factory {
51 template <typename... Ts> Factory(Ts &... Args) : G{{Args...}} {}
xray-graph.h 145 class Factory {
  /src/external/apache2/llvm/dist/clang/tools/clang-rename/
ClangRename.cpp 186 std::unique_ptr<tooling::FrontendActionFactory> Factory =
191 ExitCode = Tool.runAndSave(Factory.get());
193 ExitCode = Tool.run(Factory.get());
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderInternals.h 203 SmallVector<ObjCMethodDecl *, 2> Factory;
ASTWriter.cpp 3000 ObjCMethodList Instance, Factory;
3022 for (const ObjCMethodList *Method = &Methods.Factory; Method;
3059 for (const ObjCMethodList *Method = &Methods.Factory; Method;
3071 unsigned FactoryBits = Methods.Factory.getBits();
3074 Methods.Factory.hasMoreThanOneDecl();
3084 for (const ObjCMethodList *Method = &Methods.Factory; Method;
3097 /// The method pool contains both instance and factory methods, stored
3126 Data.Factory = F->second.second;
3138 for (ObjCMethodList *M = &Data.Factory; !changed && M && M->getMethod();
3145 } else if (Data.Instance.getMethod() || Data.Factory.getMethod())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableMap.h 77 /// should use a Factory object to create maps instead of directly
82 class Factory {
83 typename TreeTy::Factory F;
87 Factory(bool canonicalize = true) : Canonicalize(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
    [all...]
ImmutableSet.h 47 using Factory = ImutAVLFactory<ImutInfo>;
222 Factory *factory; member in class:llvm::ImutAVLTree
238 // Internal methods (node manipulation; used by Factory).
244 ImutAVLTree(Factory *f, ImutAVLTree* l, ImutAVLTree* r, value_type_ref v,
246 : factory(f), left(l), right(r), height(height), IsMutable(true),
268 // methods of a factory object (see below). When a tree
351 factory->Cache[factory->maskCacheIndex(computeDigest())] = next;
357 factory->freeNodes.push_back(this)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 765 class Factory {

Completed in 54 milliseconds