Lines Matching refs:value1
1921 #define EXPECT_STATIC_PRIMITIVE_FIELD(expect_eq, type, field_name, sig, value1, value2) \ argument
1925 env_->SetStatic ## type ## Field(c, fid, value1); \
1926 expect_eq(value1, env_->GetStatic ## type ## Field(c, fid)); \
1934 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1939 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1945 env_->SetStatic ## type ## Field(nullptr, fid, value1); \
1949 env_->SetStatic ## type ## Field(c, nullptr, value1); \
1954 #define EXPECT_PRIMITIVE_FIELD(expect_eq, instance, type, field_name, sig, value1, value2) \ argument
1958 env_->Set ## type ## Field(instance, fid, value1); \
1959 expect_eq(value1, env_->Get ## type ## Field(instance, fid)); \
1967 env_->Set ## type ## Field(nullptr, fid, value1); \
1971 env_->Set ## type ## Field(instance, nullptr, value1); \
1976 env_->Set ## type ## Field(nullptr, fid, value1); \
1980 env_->Set ## type ## Field(instance, nullptr, value1); \
2023 #define EXPECT_UNRELATED_FIELD_FAILURE(type, field_name, sig, value1) \ argument
2030 env_->Set ## type ## Field(uc, fid, value1); \