Home
last modified time | relevance | path

Searched refs:tables_ (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/
Ddescriptor.cc581 pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name); in FindByNameHelper()
756 tables_(new Tables), in DescriptorPool()
766 tables_(new Tables), in DescriptorPool()
776 tables_(new Tables), in DescriptorPool()
793 return tables_->FindFile(filename) != NULL; in InternalIsFileLoaded()
872 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName()
879 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName()
888 Symbol result = tables_->FindSymbol(symbol_name); in FindFileContainingSymbol()
896 Symbol result = tables_->FindSymbol(symbol_name); in FindFileContainingSymbol()
904 Symbol result = tables_->FindByNameHelper(this, name); in FindMessageTypeByName()
[all …]
Ddescriptor.h892 const FileDescriptorTables* tables_; variable
1162 scoped_ptr<Tables> tables_; variable
/external/v8/src/
Dcompilation-cache.cc81 if (tables_[generation]->IsUndefined()) { in GetTable()
83 tables_[generation] = *result; in GetTable()
86 CompilationCacheTable::cast(tables_[generation]); in GetTable()
95 tables_[i] = tables_[i - 1]; in Age()
99 tables_[0] = isolate()->heap()->undefined_value(); in Age()
106 if (tables_[i] != undefined) { in IterateFunctions()
107 reinterpret_cast<CompilationCacheTable*>(tables_[i])->IterateElements(v); in IterateFunctions()
114 v->VisitPointers(&tables_[0], &tables_[generations_]); in Iterate()
119 MemsetPointer(tables_, isolate()->heap()->undefined_value(), generations_); in Clear()
Dcompilation-cache.h46 tables_ = NewArray<Object*>(generations); in CompilationSubCache()
49 ~CompilationSubCache() { DeleteArray(tables_); } in ~CompilationSubCache()
63 tables_[kFirstGeneration] = *value; in SetFirstTable()
89 Object** tables_; // Compilation cache tables - one for each generation. variable