Searched refs:getAllocator (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.h261 pool_allocator(const pool_allocator<Other>& p) : allocator(&p.getAllocator()) { }
268 return getAllocator().allocate(n);
271 return getAllocator().allocate(n);
276 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
279 return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T)));
287 bool operator==(const pool_allocator& rhs) const { return &getAllocator() == &rhs.getAllocator(); }
288 bool operator!=(const pool_allocator& rhs) const { return &getAllocator() != &rhs.getAllocator(); }
294 TPoolAllocator& getAllocator() cons function in class:pool_allocator
[all...]
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp262 CodeCompletionAllocator &getAllocator() const { return Allocator; } function in class:__anon18020::ResultBuilder
1299 CodeCompletionBuilder Builder(Results.getAllocator(),
1410 CodeCompletionBuilder Builder(Results.getAllocator(),
1504 CodeCompletionAllocator &Allocator = Results.getAllocator();
1520 CodeCompletionAllocator &Allocator = Results.getAllocator();
2086 Result.getAllocator()));
2265 CodeCompletionBuilder Opt(Result.getAllocator(),
2290 Result.getAllocator().CopyString(PlaceholderStr));
2357 CodeCompletionBuilder Opt(Result.getAllocator(),
2376 Result.getAllocator()
[all...]
H A DCodeCompleteConsumer.cpp332 void *Mem = getAllocator().Allocate(
450 = Results[I].CreateCodeCompletionString(SemaRef, getAllocator(),
468 = Results[I].CreateCodeCompletionString(SemaRef, getAllocator(),
494 getAllocator(), CCTUInfo)) {
/external/clang/lib/AST/
H A DRawCommentList.cpp149 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
153 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
158 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
/external/llvm/include/llvm/ADT/
H A DImmutableList.h151 BumpPtrAllocator& getAllocator() const { function in class:llvm::ImmutableListFactory
163 if (ownsAllocator()) delete &getAllocator();
177 BumpPtrAllocator& A = getAllocator();
H A DScopedHashTable.h171 AllocatorTy &getAllocator() { return Allocator; } function in class:llvm::ScopedHashTable
172 const AllocatorTy &getAllocator() const { return Allocator; } function in class:llvm::ScopedHashTable
250 ThisEntry->Destroy(HT.getAllocator());
H A DImmutableSet.h381 BumpPtrAllocator& getAllocator() const { function in class:llvm::ImutAVLFactory
397 if (ownsAllocator()) delete &getAllocator();
464 BumpPtrAllocator& A = getAllocator();
1010 BumpPtrAllocator& getAllocator() { return F.getAllocator(); } function in class:llvm::ImmutableSet::Factory
H A DStringMap.h253 AllocatorTy &getAllocator() { return Allocator; } function in class:llvm::StringMap
254 const AllocatorTy &getAllocator() const { return Allocator; } function in class:llvm::StringMap
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h537 CodeCompletionAllocator &getAllocator() const {
589 CodeCompletionAllocator &getAllocator() const { return Allocator; }
946 virtual CodeCompletionAllocator &getAllocator() = 0;
976 CodeCompletionAllocator &getAllocator() override {
977 return CCTUInfo.getAllocator();
/external/clang/include/clang/Basic/
H A DIdentifierTable.h440 llvm::BumpPtrAllocator& getAllocator() { function in class:clang::IdentifierTable
441 return HashTable.getAllocator();
464 void *Mem = getAllocator().Allocate<IdentifierInfo>();
496 void *Mem = getAllocator().Allocate<IdentifierInfo>();
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h49 llvm::BumpPtrAllocator &getAllocator() { return *Alloc.getPointer(); } function in class:clang::BumpVectorContext
223 T *NewElts = C.getAllocator().template Allocate<T>(NewCapacity);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h360 llvm::BumpPtrAllocator & getAllocator() { return BVC.getAllocator(); } function in class:clang::ento::ExplodedGraph
H A DCoreEngine.h115 BCounterFactory(G->getAllocator()),
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp253 V = G.getAllocator().Allocate<ExplodedNodeVector>();
319 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
/external/llvm/lib/Support/
H A DYAMLParser.cpp1626 BumpPtrAllocator &Node::getAllocator() { function in class:Node
1825 return Key = new (getAllocator()) NullNode(Doc);
1834 return Key = new (getAllocator()) NullNode(Doc);
1846 return Value = new (getAllocator()) NullNode(Doc);
1856 return Value = new (getAllocator()) NullNode(Doc);
1861 return Value = new (getAllocator()) NullNode(Doc);
1869 return Value = new (getAllocator()) NullNode(Doc);
1893 CurrentEntry = new (getAllocator()) KeyValueNode(Doc);
/external/chromium_org/third_party/skia/include/core/
H A DSkImageDecoder.h177 SkBitmap::Allocator* getAllocator() const { return fAllocator; } function in class:SkImageDecoder
/external/skia/include/core/
H A DSkImageDecoder.h208 SkBitmap::Allocator* getAllocator() const { return fAllocator; } function in class:SkImageDecoder
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp545 = Results[I].CreateCodeCompletionString(S, getAllocator(),
621 = Candidates[I].CreateSignatureString(CurrentArg, S, getAllocator(),
631 CodeCompletionAllocator &getAllocator() override {
H A DCXCursor.cpp1113 unit->getCodeCompletionTUInfo().getAllocator(),
1127 unit->getCodeCompletionTUInfo().getAllocator(),
/external/clang/lib/Lex/
H A DHeaderSearch.cpp727 copyString(Filename, LookupFileCache.getAllocator());
1082 + LookupFileCache.getAllocator().getTotalMemory()
1083 + FrameworkMap.getAllocator().getTotalMemory();
/external/clang/lib/Basic/
H A DIdentifierTable.cpp285 HashTable.getAllocator().PrintStats();
/external/llvm/include/llvm/Support/
H A DYAMLParser.h140 BumpPtrAllocator &getAllocator();
/external/llvm/unittests/ADT/
H A DStringMapTest.cpp203 testMap.getAllocator(), 1u));
/external/clang/include/clang/Analysis/
H A DCFG.h956 llvm::BumpPtrAllocator& getAllocator() { function in class:clang::CFGBlock::CFG
957 return BlkBVC.getAllocator();
/external/llvm/lib/IR/
H A DType.cpp450 ((EntryTy *)SymbolTableEntry)->Destroy(SymbolTable.getAllocator());
481 ((EntryTy *)SymbolTableEntry)->Destroy(SymbolTable.getAllocator());

Completed in 1977 milliseconds

12