Searched defs:s2 (Results 1 - 4 of 4) sorted by relevance

/art/test/Statics/
H A DStatics.java20 static final char s2 = 'a'; field in class:Statics
35 return s2;
/art/runtime/
H A Dclass_linker_test.cc875 mirror::ArtField* s2 = statics->FindStaticField("s2", "C"); local
876 fh.ChangeField(s2);
878 EXPECT_EQ('a', s2->GetChar(statics));
879 s2->SetChar(statics, 'b');
921 EXPECT_EQ('b', s2->GetChar(statics));
H A Djni_internal_test.cc1429 jstring s2 = env_->NewStringUTF("world"); local
1430 ASSERT_TRUE(s2 != NULL);
1439 env_->SetStaticObjectField(c, s_fid, s2);
1440 ASSERT_TRUE(env_->IsSameObject(s2, env_->GetStaticObjectField(c, s_fid)));
1444 env_->SetObjectField(o, i_fid, s2);
1445 ASSERT_TRUE(env_->IsSameObject(s2, env_->GetObjectField(o, i_fid)));
H A Druntime.cc260 char* s2; local
261 size_t val = strtoul(s, &s2, 10);
262 if (s2 != s) {
263 // s2 should be pointing just after the number.
268 if (*s2 != '\0') {
272 char c = *s2++;
273 if (*s2 == '\0') {

Completed in 104 milliseconds