Lines Matching refs:end
32 SafeMap<std::string, std::string>::const_iterator end = variable_data->end(); in ComputeOatHeaderSize() local
33 for ( ; it != end; ++it) { in ComputeOatHeaderSize()
406 static const char* ParseString(const char* start, const char* end) { in ParseString() argument
407 while (start < end && *start != 0) { in ParseString()
415 const char* end = ptr + key_value_store_size_; in GetStoreValueByKey() local
417 while (ptr < end) { in GetStoreValueByKey()
419 const char* str_end = ParseString(ptr, end); in GetStoreValueByKey()
420 if (str_end < end) { in GetStoreValueByKey()
423 if (ParseString(str_end + 1, end) < end) { in GetStoreValueByKey()
428 ptr = ParseString(str_end + 1, end) + 1; in GetStoreValueByKey()
441 const char* end = ptr + key_value_store_size_; in GetStoreKeyValuePairByIndex() local
444 while (ptr < end && counter >= 0) { in GetStoreKeyValuePairByIndex()
446 const char* str_end = ParseString(ptr, end); in GetStoreKeyValuePairByIndex()
447 if (str_end < end) { in GetStoreKeyValuePairByIndex()
449 ptr = ParseString(str_end + 1, end) + 1; in GetStoreKeyValuePairByIndex()
450 if (ptr <= end) { in GetStoreKeyValuePairByIndex()
483 SafeMap<std::string, std::string>::const_iterator end = key_value_store->end(); in Flatten() local
484 for ( ; it != end; ++it) { in Flatten()