/external/v8/src/ |
type-cache.cc | 15 base::LazyInstance<TypeCache>::type kCache = LAZY_INSTANCE_INITIALIZER; 21 TypeCache const& TypeCache::Get() { return kCache.Get(); }
|
typing-asm.h | 18 class TypeCache; 117 TypeCache const& cache_;
|
type-cache.h | 13 class TypeCache final { 19 static TypeCache const& Get(); 21 TypeCache() = default;
|
/external/clang/lib/CodeGen/ |
CGBuilder.h | 56 const CodeGenTypeCache &TypeCache; 58 CGBuilderTy(const CodeGenTypeCache &TypeCache, llvm::LLVMContext &C) 59 : CGBuilderBaseTy(C), TypeCache(TypeCache) {} 60 CGBuilderTy(const CodeGenTypeCache &TypeCache, 63 : CGBuilderBaseTy(C, F, Inserter), TypeCache(TypeCache) {} 64 CGBuilderTy(const CodeGenTypeCache &TypeCache, llvm::Instruction *I) 65 : CGBuilderBaseTy(I), TypeCache(TypeCache) {} [all...] |
CodeGenTypes.cpp | 245 if (TypeCache.count(ED->getTypeForDecl())) { 250 TypeCache.clear(); 359 TypeCache.clear(); 378 llvm::DenseMap<const Type *, llvm::Type *>::iterator TCI = TypeCache.find(Ty); 380 if (TCI != TypeCache.end()) 635 TypeCache[Ty] = ResultType; 700 TypeCache.clear();
|
CGDebugInfo.cpp | [all...] |
CodeGenTypes.h | 163 llvm::DenseMap<const Type *, llvm::Type *> TypeCache;
|
CGDebugInfo.h | 84 llvm::DenseMap<const void *, llvm::TrackingMDRef> TypeCache; 174 /// Look up the completed type for a self pointer in the TypeCache and
|
/external/v8/src/compiler/ |
js-global-object-specialization.h | 16 class TypeCache; 72 TypeCache const& type_cache_;
|
typer.h | 17 class TypeCache; 57 TypeCache const& cache_;
|
js-intrinsic-lowering.h | 16 class TypeCache; 92 TypeCache const& type_cache() const { return type_cache_; } 96 TypeCache const& type_cache_;
|
access-builder.cc | 29 MaybeHandle<Name>(), TypeCache().Get().kFloat64, 82 TypeCache const& type_cache = TypeCache::Get(); 107 MaybeHandle<Name>(), TypeCache::Get().kInt8, 171 TypeCache::Get().kFixedArrayLengthType, MachineType::AnyTagged()}; 197 TypeCache::Get().kUint8, MachineType::Uint8()}; 205 TypeCache::Get().kInt32, MachineType::Int32()}; 221 TypeCache::Get().kUint8, MachineType::Uint8()}; 237 TypeCache::Get().kStringLengthType, 342 TypeCache::Get().kFloat64, MachineType::Float64()} [all...] |
simplified-lowering.h | 17 class TypeCache; 49 TypeCache const& type_cache_;
|
js-native-context-specialization.h | 18 class TypeCache; 105 TypeCache const& type_cache_;
|
access-info.h | 20 class TypeCache; 154 TypeCache const& type_cache_;
|
js-typed-lowering.h | 18 class TypeCache; 129 TypeCache const& type_cache_;
|
js-global-object-specialization.cc | 37 type_cache_(TypeCache::Get()) {}
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
PackageRemapper.java | 32 private final Map<String, String> typeCache = new HashMap<String, String>(); 48 String s = typeCache.get(key); 53 typeCache.put(key, s);
|
/prebuilts/go/darwin-x86/src/debug/dwarf/ |
type.go | 278 return d.readType("info", d.Reader(), off, d.typeCache) 283 func (d *Data) readType(name string, r typeReader, off Offset, typeCache map[Offset]Type) (Type, error) { 284 if t, ok := typeCache[off]; ok { 298 // Must always set typeCache[off] before calling 348 if t, err = d.readType(name, r.clone(), toff, typeCache); err != nil { 374 typeCache[off] = t 460 typeCache[off] = typ 485 typeCache[off] = t 557 typeCache[off] = t 581 typeCache[off] = [all...] |
open.go | 28 typeCache map[Offset]Type 52 typeCache: make(map[Offset]Type),
|
/prebuilts/go/linux-x86/src/debug/dwarf/ |
type.go | 278 return d.readType("info", d.Reader(), off, d.typeCache) 283 func (d *Data) readType(name string, r typeReader, off Offset, typeCache map[Offset]Type) (Type, error) { 284 if t, ok := typeCache[off]; ok { 298 // Must always set typeCache[off] before calling 348 if t, err = d.readType(name, r.clone(), toff, typeCache); err != nil { 374 typeCache[off] = t 460 typeCache[off] = typ 485 typeCache[off] = t 557 typeCache[off] = t 581 typeCache[off] = [all...] |
open.go | 28 typeCache map[Offset]Type 52 typeCache: make(map[Offset]Type),
|
/libcore/ojluni/src/main/java/java/util/ |
Scanner.java | 389 private Object typeCache = null; 781 typeCache = null; 788 typeCache = null; 798 typeCache = null; [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
heapdump.go | 107 var typecache [typeCacheBuckets]typeCacheBucket var 157 b := &typecache[t.hash&(typeCacheBuckets-1)] 649 memclr(unsafe.Pointer(&typecache), unsafe.Sizeof(typecache))
|
/prebuilts/go/linux-x86/src/runtime/ |
heapdump.go | 107 var typecache [typeCacheBuckets]typeCacheBucket var 157 b := &typecache[t.hash&(typeCacheBuckets-1)] 649 memclr(unsafe.Pointer(&typecache), unsafe.Sizeof(typecache))
|