search for: itr2

Displaying 1 result from an estimated 1 matches for "itr2".

Did you mean: itr
2006 Mar 19
1
[LLVMdev] Idioms for retrieving global symbols and inheritance
...r ( SymbolTable::type_iterator itr1 = symbTab.type_begin(), itrend1 = symbTab.type_end(); itr1 != itrend1; itr1++ ) { string typeName = itr1->first; if ( lldbprfx.compare( typeName.substr( 0, 5 ) ) != 0 ) { cerr << typeName << endl; for ( SymbolTable::value_const_iterator itr2 = symbTab.value_begin( itr1->second ), itrend2 = symbTab.value_end( itr1->second ); itr2 != itrend2; itr2++ ) { if ( lldbprfx.compare( ( itr2->first ).substr( 0, 5 ) ) != 0 ) { cerr << "\t" << itr2->first << endl; //Produces same list that...