Lines Matching defs:GetLength
169 int String::GetLength() const
180 if (index < 0 || index >= GetLength()) {
193 if ((size_t)GetLength() != strlen(string)) {
209 if (GetLength() != other.GetLength()) {
240 } else if (fromIndex >= GetLength()) {
245 char* end = string_ + GetLength();
263 } else if (fromIndex >= GetLength()) {
279 } else if (fromIndex >= GetLength()) {
295 } else if (fromIndex == 0 || fromIndex >= GetLength()) {
296 fromIndex = GetLength() - 1;
316 } else if (fromIndex == 0 || fromIndex >= GetLength()) {
317 fromIndex = GetLength() - 1;
331 } else if (fromIndex == 0 || fromIndex >= GetLength()) {
332 fromIndex = GetLength() - 1;
340 int sourceLen = GetLength();
385 if (count > (size_t)GetLength()) {
402 int count = other.GetLength();
403 if (count > GetLength()) {
421 size_t len = static_cast<size_t>(GetLength());
439 int count = other.GetLength();
440 int len = GetLength();
454 int size = GetLength();
473 int size = GetLength();
488 if (begin < 0 || begin >= GetLength()) {
497 if (begin < 0 || end > GetLength() || begin > end) {
510 int size = GetLength();
563 int step = target.GetLength();
619 int thisSize = GetLength();
641 int thisSize = GetLength();
642 int newSize = thisSize + other.GetLength();