Lines Matching refs:value

209 	void PushFront(const Value &value)
211 CHK(fMyVector.PushFront(value) == B_OK);
212 fReferenceVector.insert(fReferenceVector.begin(), value);
216 void PushBack(const Value &value)
218 CHK(fMyVector.PushBack(value) == B_OK);
219 fReferenceVector.push_back(value);
237 void Insert(const Value &value, int32 index)
240 CHK(fMyVector.Insert(value, index) == B_OK);
244 fReferenceVector.insert(it, value);
247 CHK(fMyVector.Insert(value, index) == B_BAD_VALUE);
252 void Insert(const Value &value, const Iterator &iterator)
256 CHK(fMyVector.Insert(value, iterator.fMyIterator) == B_BAD_VALUE);
258 CHK(fMyVector.Insert(value, iterator.fMyIterator) == B_OK);
259 fReferenceVector.insert(iterator.fReferenceIterator, value);
264 void Remove(const Value &value)
269 if (*it == value)
275 CHK(fMyVector.Remove(value) == oldCount - newCount);
413 int32 IndexOf(const Value &value, int32 start = 0) const
421 if (*it == value) {
427 CHK(result == fMyVector.IndexOf(value, start));
431 Iterator Find(const Value &value)
437 if (*start.fReferenceIterator == value) {
438 MyIterator myIt = fMyVector.Find(value);
443 CHK(fMyVector.Find(value) == fMyVector.End());
447 CHK(fMyVector.Find(value) == fMyVector.End());
451 Iterator Find(const Value &value, const Iterator &_start)
457 if (*start.fReferenceIterator == value) {
458 MyIterator myIt = fMyVector.Find(value,
464 CHK(fMyVector.Find(value, _start.fMyIterator) == fMyVector.End());
468 CHK(fMyVector.Find(value, start.fMyIterator) == fMyVector.End());
472 ConstIterator Find(const Value &value) const
478 if (*start.fReferenceIterator == value) {
479 MyConstIterator myIt = fMyVector.Find(value);
484 CHK(fMyVector.Find(value) == fMyVector.End());
488 CHK(fMyVector.Find(value) == fMyVector.End());
492 ConstIterator Find(const Value &value, const ConstIterator &_start) const
498 if (*start.fReferenceIterator == value) {
499 MyConstIterator myIt = fMyVector.Find(value,
505 CHK(fMyVector.Find(value, _start.fMyIterator) == fMyVector.End());
509 CHK(fMyVector.Find(value, start.fMyIterator) == fMyVector.End());
726 Value value = v[index];
727 v.Remove(value);
728 v.Remove(value);
890 Value value = strategy.Generate();
891 typename TestVector<Value>::Iterator it = v.Find(value);
892 typename TestVector<Value>::ConstIterator cit = cv.Find(value);