| 66 | } |
| 67 | |
| 68 | void Set(int index, ValueType val) { |
| 69 | DCHECK(values_); // ensure Init was called. |
| 70 | DCHECK_LT(index, data_.size); |
| 71 | *(values_ + index) = val; |
| 72 | } |
| 73 | |
| 74 | Status Finalize() { |
| 75 | if (inlined()) { |
no outgoing calls
no test coverage detected