Home | History | Annotate | Download | only in profile_resetter

Lines Matching refs:program_

465       : program_(program),
471 while (next_instruction_index_ < program_.size() && !sentence_ended) {
631 return next_instruction_index_ < program_.size();
638 if (next_instruction_index_ + 1u > program_.size())
640 *out = static_cast<uint8>(program_[next_instruction_index_]);
648 if (next_instruction_index_ + 4u > program_.size())
653 *out |= static_cast<uint8>(program_[next_instruction_index_]) << 24;
665 program_.size())
667 *out = program_.substr(next_instruction_index_,
688 std::string program_;
700 program_(program),
711 Parser parser(program_);
744 crypto::SHA256HashString(program_, digest, arraysize(digest));