| 195 | } |
| 196 | |
| 197 | void FrameMetaInfo::printFieldNames() const { |
| 198 | SMILE_PRINT(" Field name & dimension:"); |
| 199 | for (int i = 0; i < N; i++) { |
| 200 | SMILE_PRINT(" %s %i", field[i].name, field[i].N); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | // returned *arrIdx will be the real index in the data structure, i.e. named index - arrNameOffset |
| 205 | int FrameMetaInfo::findField(const char*fieldName, int *arrIdx, int *more) const |
no outgoing calls
no test coverage detected