Lines Matching full:identifierinfo
85 IdentifierInfo *II = PTHMgr.GetIdentifierInfo(IdentifierID-1);
177 // This saves some copies and it also reduces IdentifierInfo* lookup.
418 IdentifierInfo** perIDCache,
531 // Pre-allocate the persistent ID -> IdentifierInfo* cache. We use calloc()
534 IdentifierInfo** PerIDCache = 0;
537 PerIDCache = (IdentifierInfo**)calloc(NumIds, sizeof(*PerIDCache));
555 IdentifierInfo* PTHManager::LazilyCreateIdentifierInfo(unsigned PersistentID) {
556 // Look in the PTH file for the string data for the IdentifierInfo object.
563 std::pair<IdentifierInfo,const unsigned char*> *Mem =
564 Alloc.Allocate<std::pair<IdentifierInfo,const unsigned char*> >();
568 IdentifierInfo *II = new ((void*) Mem) IdentifierInfo();
570 // Store the new IdentifierInfo in the cache.
576 IdentifierInfo* PTHManager::get(StringRef Name) {