Home
last modified time | relevance | path

Searched refs:otherSize (Results 1 – 3 of 3) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DListFieldSchema.java130 int otherSize = other.size(); in mergeListsAt() local
131 if (size > 0 && otherSize > 0) { in mergeListsAt()
173 int otherSize = other.size(); in mergeListsAt() local
174 if (size > 0 && otherSize > 0) { in mergeListsAt()
176 mine = mine.mutableCopyWithCapacity(size + otherSize); in mergeListsAt()
/third_party/icu/icu4c/source/test/intltest/
Dssearch.cpp512 int32_t otherSize = other.size() - 1; in matchesAt() local
514 if (listSize - 1 - offset < otherSize) { in matchesAt()
518 for (int32_t i = offset, j = 0; j < otherSize; i += 1, j += 1) { in matchesAt()
/third_party/jsoncpp/src/lib_json/
Djson_value.cpp526 long unsigned int otherSize = other.value_.map_->size(); in operator <() local
527 if (thisSize != otherSize) in operator <()
528 return thisSize < otherSize; in operator <()