| 3184 | } |
| 3185 | |
| 3186 | int TypeDecl::findArgumentIndex( const string & name ) const { |
| 3187 | for (size_t index=0, indexs=argNames.size(); index!=indexs; ++index) { |
| 3188 | if (argNames[index] == name) return int(index); |
| 3189 | } |
| 3190 | return -1; |
| 3191 | } |
| 3192 | |
| 3193 | string TypeDecl::findBitfieldName ( uint64_t val ) const { |
| 3194 | if ( argNames.size() ) { |
no test coverage detected