Lines Matching refs:match_index_
576 match_index_(0), in WeaselsToMoonpiesTest()
648 ++match_index_; in FindNextMoonpie()
670 return weasel_positions_[match_index_]; in CurrentWeaselPosition()
673 return weasel_positions_[match_index_ - 1]; in LastWeaselPosition()
676 return moonpie_positions_[match_index_]; in CurrentMoonpiePosition()
679 return moonpie_positions_[match_index_ - 1]; in LastMoonpiePosition()
682 CHECK_GE(match_index_, 1); in AfterLastWeasel()
683 return after_weasel_[match_index_ - 1]; in AfterLastWeasel()
686 CHECK_GE(match_index_, 2); in AfterPreviousWeasel()
687 return after_weasel_[match_index_ - 2]; in AfterPreviousWeasel()
690 CHECK_GE(match_index_, 1); in AfterLastMoonpie()
691 return after_moonpie_[match_index_ - 1]; in AfterLastMoonpie()
694 CHECK_GE(match_index_, 2); in AfterPreviousMoonpie()
695 return after_moonpie_[match_index_ - 2]; in AfterPreviousMoonpie()
699 weasel_positions_[match_index_] = value; in SetCurrentWeaselPosition()
702 after_weasel_[match_index_] = value; in SetCurrentAfterWeaselPosition()
705 moonpie_positions_[match_index_] = value; in SetCurrentMoonpiePosition()
708 after_moonpie_[match_index_] = value; in SetCurrentAfterMoonpiePosition()
715 CHECK_GE(match_index_, 1); in CurrentBoilerplateLength()
719 CHECK_GE(match_index_, 1); in DistanceFromLastWeasel()
723 CHECK_GE(match_index_, 1); in DistanceFromLastMoonpie()
727 CHECK_GE(match_index_, 2); in DistanceBetweenLastTwoWeasels()
731 CHECK_GE(match_index_, 2); in DistanceBetweenLastTwoMoonpies()
757 int match_index_; member in open_vcdiff::__anon3c7a0c290111::WeaselsToMoonpiesTest