Lines Matching refs:value1
1681 #define EXPECT_STATIC_PRIMITIVE_FIELD(expect_eq, type, field_name, sig, value1, value2) \ argument
1685 env_->SetStatic ## type ## Field(c, fid, value1); \
1686 expect_eq(value1, env_->GetStatic ## type ## Field(c, fid)); \
1694 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1699 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1705 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1709 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1714 #define EXPECT_PRIMITIVE_FIELD(expect_eq, instance, type, field_name, sig, value1, value2) \ argument
1718 env_->Set ## type ## Field(instance, fid, value1); \
1719 expect_eq(value1, env_->Get ## type ## Field(instance, fid)); \
1727 env_->Set ## type ## Field(nullptr, fid, value1); \
1731 env_->Set ## type ## Field(instance, nullptr, value1); \
1736 env_->Set ## type ## Field(nullptr, fid, value1); \
1740 env_->Set ## type ## Field(instance, nullptr, value1); \