Lines Matching defs:Name
69 SymbolTableImpl(const string &name)
70 : name_(name),
100 istream &strm, const string &name,
147 const string& Name() const { return name_; }
221 // Construct symbol table with an unspecified name.
224 // Construct symbol table with a unique name.
225 SymbolTable(const string& name) : impl_(new SymbolTableImpl(name)) {}
248 // name to give the resulting SymbolTable.
250 istream &strm, const string& name,
252 SymbolTableImpl* impl = SymbolTableImpl::ReadText(strm, name, opts);
329 // return the name of the symbol table
330 virtual const string& Name() const {
331 return impl_->Name();
512 table->Name().empty() ? string() :
513 (string("relabeled_") + table->Name()));