| 1134 | } |
| 1135 | |
| 1136 | size_t string::length() const |
| 1137 | { |
| 1138 | if (scan_ptr_) { |
| 1139 | return LEN(vbf_) - (scan_ptr_ - STR(vbf_)); |
| 1140 | } |
| 1141 | return LEN(vbf_); |
| 1142 | } |
| 1143 | |
| 1144 | size_t string::size() const |
| 1145 | { |
no outgoing calls
no test coverage detected