search for: itrend2

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

Did you mean: trend2
2006 Mar 19
1
[LLVMdev] Idioms for retrieving global symbols and inheritance
...egin(), 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 is produced by itr1 // cerr << itr2->seco...