Searched refs:s2 (Results 1 - 9 of 9) sorted by relevance

/art/runtime/
H A Dstrutil.h26 bool operator()(const char* s1, const char* s2) const {
27 return strcmp(s1, s2) < 0;
33 bool operator()(const char* s1, const char* s2) const {
34 return strcmp(s1, s2) == 0;
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') {
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)));
/art/test/Statics/
H A DStatics.java20 static final char s2 = 'a'; field in class:Statics
35 return s2;
/art/runtime/base/
H A Dlogging.h48 #define CHECK_STROP(s1, s2, sense) \
49 if (UNLIKELY((strcmp(s1, s2) == 0) != sense)) \
53 << "\"" << s2 << "\""
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, s2) CHECK_STRN
[all...]
/art/test/020-string/src/
H A DMain.java47 String s2 = "\u0c6d\u0cb6\u0d00\u0000\u0080\u0080\u0080\u0000\u0002\u0002\u0002\u0000\uffff\uffff\uffff\u00e9\u00e9\u00e9";
48 System.out.println("Compare unicode: " + s1.compareTo(s2));
/art/test/StackWalk/
H A DStackWalk.java23 String s2 = new String("2");
45 s += s2;
67 s += s2;
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S51 sw $s2, 28($sp)
64 * callee-save: $s2-$s8 + $gp + $ra, 9 total + 3 words padding + 4 open words for args
85 sw $s2, 28($sp)
108 * callee-save: $a1-$a3, $s2-$s8 + $gp + $ra, 12 total + 3 words padding + method*
129 sw $s2, 28($sp)
246 lw $s2, 72($a0)

Completed in 186 milliseconds