Home | History | Annotate | Download | only in Archive

Lines Matching refs:symbols

503 // Look up multiple symbols in the symbol table and return a set of
504 // Modules that define those symbols.
506 Archive::findModulesDefiningSymbols(std::set<std::string>& symbols,
511 *error = "Empty archive invalid for finding modules defining symbols";
534 // If it contains symbols
536 // Get the symbols
537 std::vector<std::string> symbols;
542 symbols, error);
545 // Insert the module's symbols into the symbol table
546 for (std::vector<std::string>::iterator I = symbols.begin(),
547 E=symbols.end(); I != E; ++I ) {
570 // just use it to quickly find the symbols requested.
572 for (std::set<std::string>::iterator I=symbols.begin(),
573 E=symbols.end(); I != E;) {
583 symbols.erase(I++);