Home
last modified time | relevance | path

Searched defs:s2 (Results 1 – 15 of 15) sorted by relevance

/art/test/020-string/src/
DMain.java52 …String s2 = "\u0c6d\u0cb6\u0d00\u0000\u0080\u0080\u0080\u0000\u0002\u0002\u0002\u0000\uffff\uffff\… in basicTest() local
101 String s2 = new String(byteArray); in constructorTest() local
/art/test/580-checker-string-factory-intrinsics/src/
DMain.java74 String s2 = StringFactory.newStringFromString(s1); in testNewStringFromString() local
/art/runtime/base/
Dlogging.h142 #define CHECK_STROP(s1, s2, sense) \ argument
150 #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true) argument
151 #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false) argument
189 #define DCHECK_STREQ(s1, s2) if (::art::kEnableDChecks) CHECK_STREQ(s1, s2) argument
190 #define DCHECK_STRNE(s1, s2) if (::art::kEnableDChecks) CHECK_STRNE(s1, s2) argument
/art/test/Statics/
DStatics.java20 static final char s2 = 'a'; field in Statics
/art/test/004-StackWalk/src/
DMain.java28 String s2 = new String("2"); in shlemiel() local
/art/runtime/arch/
Dmemcmp16_test.cc55 uint16_t *s1, *s2; // Use raw pointers to simplify using clobbered addresses in CheckSeparate() local
/art/test/115-native-bridge/src/
DNativeBridgeMain.java109 …native static short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6, short … in shortMethod()
/art/test/004-JniTest/src/
DMain.java132 …private static native short shortMethod(short s1, short s2, short s3, short s4, short s5, short s6… in shortMethod()
/art/test/004-JniTest/
Djni_test.cc208 extern "C" jshort JNICALL Java_Main_shortMethod(JNIEnv*, jclass, jshort s1, jshort s2, in Java_Main_shortMethod()
599 jstring s2 = reinterpret_cast<jstring>(env->AllocObject(c)); in Java_Main_testNewStringObject() local
/art/test/115-native-bridge/
Dnativebridge.cc153 static jshort trampoline_Java_Main_shortMethod(JNIEnv* env, jclass klass, jshort s1, jshort s2, in trampoline_Java_Main_shortMethod()
/art/runtime/interpreter/mterp/mips/
Dheader.S97 #define s2 $$18 macro
/art/runtime/
Dclass_linker_test.cc947 ArtField* s2 = mirror::Class::FindStaticField(soa.Self(), statics, "s2", "C"); in TEST_F() local
Djni_internal_test.cc1788 jstring s2 = env_->NewStringUTF("world"); in TEST_F() local
/art/runtime/interpreter/mterp/out/
Dmterp_mips.S104 #define s2 $18 macro
/art/compiler/utils/
Dassembler_thumb_test.cc55 int CompareIgnoringSpace(const char* s1, const char* s2) { in CompareIgnoringSpace()