Lines Matching refs:index

304     const size_t& index, Error* error) {  in ClearMappedProperty()  argument
305 CHECK(index < arraysize(kProperties)); in ClearMappedProperty()
307 const Property& property = kProperties[index]; in ClearMappedProperty()
337 const size_t& index, Error* error) { in ClearMappedSavedProperty() argument
342 const size_t& index, Error* error) { in GetMappedInt32Property() argument
343 CHECK(index < arraysize(kProperties)); in GetMappedInt32Property()
345 const string& key = kProperties[index].name; in GetMappedInt32Property()
354 const size_t& index, Error* error) { in GetMappedSavedInt32Property() argument
355 CHECK(index < arraysize(kProperties)); in GetMappedSavedInt32Property()
357 const string& key = kProperties[index].name; in GetMappedSavedInt32Property()
366 const size_t& index, Error* error) { in GetMappedStringProperty() argument
367 CHECK(index < arraysize(kProperties)); in GetMappedStringProperty()
369 const string& key = kProperties[index].name; in GetMappedStringProperty()
378 const size_t& index, Error* error) { in GetMappedSavedStringProperty() argument
379 CHECK(index < arraysize(kProperties)); in GetMappedSavedStringProperty()
381 const string& key = kProperties[index].name; in GetMappedSavedStringProperty()
390 const size_t& index, Error* error) { in GetMappedStringsProperty() argument
391 CHECK(index < arraysize(kProperties)); in GetMappedStringsProperty()
393 const string& key = kProperties[index].name; in GetMappedStringsProperty()
402 const size_t& index, Error* error) { in GetMappedSavedStringsProperty() argument
403 CHECK(index < arraysize(kProperties)); in GetMappedSavedStringsProperty()
405 const string& key = kProperties[index].name; in GetMappedSavedStringsProperty()
414 const size_t& index, const int32_t& value, Error* error) { in SetMappedInt32Property() argument
415 CHECK(index < arraysize(kProperties)); in SetMappedInt32Property()
416 if (args_.ContainsInt(kProperties[index].name) && in SetMappedInt32Property()
417 args_.GetInt(kProperties[index].name) == value) { in SetMappedInt32Property()
420 args_.SetInt(kProperties[index].name, value); in SetMappedInt32Property()
425 const size_t& index, const int32_t& value, Error* error) { in SetMappedSavedInt32Property() argument
431 const size_t& index, const string& value, Error* error) { in SetMappedStringProperty() argument
432 CHECK(index < arraysize(kProperties)); in SetMappedStringProperty()
433 if (args_.ContainsString(kProperties[index].name) && in SetMappedStringProperty()
434 args_.GetString(kProperties[index].name) == value) { in SetMappedStringProperty()
437 args_.SetString(kProperties[index].name, value); in SetMappedStringProperty()
442 const size_t& index, const string& value, Error* error) { in SetMappedSavedStringProperty() argument
448 const size_t& index, const string& value, Error* error) { in SetMappedStringsProperty() argument
449 CHECK(index < arraysize(kProperties)); in SetMappedStringsProperty()
453 if (args_.ContainsStrings(kProperties[index].name) && in SetMappedStringsProperty()
454 args_.GetStrings(kProperties[index].name) == string_list) { in SetMappedStringsProperty()
458 args_.SetStrings(kProperties[index].name, string_list); in SetMappedStringsProperty()
463 const size_t& index, const string& value, Error* error) { in SetMappedSavedStringsProperty() argument