Searched refs:s1 (Results 1 - 13 of 13) sorted by last modified time

/art/test/020-string/src/
H A DMain.java46 String s1 = "\u0c6d\u0cb6\u0d00\u0000\u0080\u0080\u0080\u0000\u0002\u0002\u0002\u0000\u00e9\u00e9\u00e9";
48 System.out.println("Compare unicode: " + s1.compareTo(s2));
/art/test/StackWalk/
H A DStackWalk.java22 String s1 = new String("1");
44 s += s1;
/art/test/Statics/
H A DStatics.java19 static final byte s1 = 5; field in class:Statics
32 return s1;
/art/runtime/arch/mips/
H A Dasm_support_mips.h25 #define rSELF $s1
H A Djni_entrypoints_mips.S41 move $a0, $s1 # pass Thread::Current()
H A Dquick_entrypoints_mips.S53 sw $s1, 24($sp)
245 lw $s1, 68($a0)
412 addiu $sp, $sp, -16 # spill s0, s1, fp, ra
418 sw $s1, 4($sp)
424 move $s1, $a3 # move managed thread pointer into s1
443 lw $s1, 4($sp)
/art/runtime/base/
H A Dlogging.h48 #define CHECK_STROP(s1, s2, sense) \
49 if (UNLIKELY((strcmp(s1, s2) == 0) != sense)) \
51 << "\"" << s1 << "\"" \
55 #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true)
56 #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false)
76 #define DCHECK_STREQ(s1, s2) CHECK_STREQ(s1, s2)
77 #define DCHECK_STRNE(s1, s
[all...]
/art/runtime/
H A Dclass_linker_test.cc869 mirror::ArtField* s1 = statics->FindStaticField("s1", "B"); local
870 fh.ChangeField(s1);
872 EXPECT_EQ(5, s1->GetByte(statics));
873 s1->SetByte(statics, 6);
920 EXPECT_EQ(6, s1->GetByte(statics));
H A Dintern_table_test.cc98 SirtRef<mirror::String> s1(soa.Self(), t.InternWeak(world.get()));
105 p.Expect(s1.get());
H A Djni_internal_test.cc1427 jstring s1 = env_->NewStringUTF("hello"); local
1428 ASSERT_TRUE(s1 != NULL);
1437 env_->SetStaticObjectField(c, s_fid, s1);
1438 ASSERT_TRUE(env_->IsSameObject(s1, env_->GetStaticObjectField(c, s_fid)));
1442 env_->SetObjectField(o, i_fid, s1);
1443 ASSERT_TRUE(env_->IsSameObject(s1, env_->GetObjectField(o, i_fid)));
H A Dstrutil.h26 bool operator()(const char* s1, const char* s2) const { argument
27 return strcmp(s1, s2) < 0;
33 bool operator()(const char* s1, const char* s2) const { argument
34 return strcmp(s1, s2) == 0;
/art/runtime/mirror/
H A Dobject_test.cc96 size_t s1 = a1->SizeOf(); local
98 EXPECT_EQ(s1, clone->SizeOf());
H A Dstring.cc248 extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
251 static uint32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) { argument
253 if (s0[i] != s1[i]) {
254 return static_cast<int32_t>(s0[i]) - static_cast<int32_t>(s1[i]);

Completed in 172 milliseconds