Lines Matching refs:value1
1789 #define EXPECT_STATIC_PRIMITIVE_FIELD(expect_eq, type, field_name, sig, value1, value2) \ argument
1793 env_->SetStatic ## type ## Field(c, fid, value1); \
1794 expect_eq(value1, env_->GetStatic ## type ## Field(c, fid)); \
1802 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1807 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1813 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1817 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1822 #define EXPECT_PRIMITIVE_FIELD(expect_eq, instance, type, field_name, sig, value1, value2) \ argument
1826 env_->Set ## type ## Field(instance, fid, value1); \
1827 expect_eq(value1, env_->Get ## type ## Field(instance, fid)); \
1835 env_->Set ## type ## Field(nullptr, fid, value1); \
1839 env_->Set ## type ## Field(instance, nullptr, value1); \
1844 env_->Set ## type ## Field(nullptr, fid, value1); \
1848 env_->Set ## type ## Field(instance, nullptr, value1); \
1891 #define EXPECT_UNRELATED_FIELD_FAILURE(type, field_name, sig, value1) \ argument
1898 env_->Set ## type ## Field(uc, fid, value1); \