Lines Matching refs:secondValue

2126     std::vector<zchar> secondValue({U'字', U'符'});
2131 want_->SetParam(emptyStr, secondValue);
2147 std::vector<zchar> secondValue({U'字', U'符'});
2152 want_->SetParam(firstKey, secondValue);
2153 EXPECT_EQ(secondValue, want_->GetCharArrayParam(firstKey));
2231 zchar secondValue = U'文';
2238 want_->SetParam(emptyStr, secondValue);
2253 zchar secondValue = U'文';
2259 want_->SetParam(firstKey, secondValue);
2260 EXPECT_EQ(secondValue, want_->GetCharParam(firstKey, firstDefaultValue));
2671 std::vector<short> secondValue({1, 8, -9});
2676 want_->SetParam(emptyStr, secondValue);
2692 std::vector<short> secondValue({-1, -2, -1, -2, 0});
2697 want_->SetParam(firstKey, secondValue);
2698 EXPECT_EQ(secondValue, want_->GetShortArrayParam(firstKey));
2774 short secondValue = 2;
2781 want_->SetParam(emptyStr, secondValue);
2796 short secondValue = 0;
2803 want_->SetParam(firstKey, secondValue);
2804 EXPECT_EQ(secondValue, want_->GetShortParam(firstKey, firstDefaultValue));
3203 int secondValue = 2;
3210 want_->SetParam(emptyStr, secondValue);
3225 int secondValue = 0;
3232 want_->SetParam(firstKey, secondValue);
3233 EXPECT_EQ(secondValue, want_->GetIntParam(firstKey, firstDefaultValue));
3313 std::vector<int> secondValue({1, 8, -9});
3318 want_->SetParam(emptyStr, secondValue);
3334 std::vector<int> secondValue({-1, -2, -1, -2, 0});
3339 want_->SetParam(firstKey, secondValue);
3340 EXPECT_EQ(secondValue, want_->GetIntArrayParam(firstKey));
3638 std::vector<byte> secondValue({'1', 'd'});
3643 want_->SetParam(emptyStr, secondValue);
3659 std::vector<byte> secondValue({'w', '$'});
3664 want_->SetParam(firstKey, secondValue);
3665 EXPECT_EQ(secondValue, want_->GetByteArrayParam(firstKey));