Lines Matching defs:table
5 #include "src/objects/compilation-cache-table.h"
8 #include "src/objects/compilation-cache-table-inl.h"
219 // Rather than storing the key in the hash table, a pointer to the
248 Handle<CompilationCacheTable> table, Handle<String> src,
252 InternalIndex entry = table->FindEntry(isolate, &key);
255 if (!table->get(index).IsFixedArray()) {
258 Object obj = table->get(index + 1);
266 Handle<CompilationCacheTable> table, Handle<String> src,
274 InternalIndex entry = table->FindEntry(isolate, &key);
278 if (!table->get(index).IsFixedArray()) return empty_result;
279 Object obj = table->get(index + 1);
284 SearchLiteralsMap(*table, index + 2, *native_context);