Home | History | Annotate | Download | only in Sema

Lines Matching refs:Cache

209   void threadSafetyCleanup(BeforeSet* Cache);
237 /// A single-element cache based on the file ID.
241 } Cache;
245 // Check the single-element cache.
246 if (file == Cache.File)
247 return Cache.Nullability;
249 // It's not in the single-element cache; flush the cache if we have one.
250 if (!Cache.File.isInvalid()) {
251 Map[Cache.File] = Cache.Nullability;
254 // Pull this entry into the cache.
255 Cache.File = file;
256 Cache.Nullability = Map[file];
257 return Cache.Nullability;
464 /// element, which is used to cache a single FunctionScopeInfo
939 /// \brief A cache of special member function overload resolution results
943 /// \brief A cache of the flags available in enumerations with the flag_bits
6734 /// \brief Cache of additional modules that should be used for name lookup
7016 /// \brief A cache containing identifiers for which typo correction failed and