HomeSort by relevance Sort by last modified time
    Searched refs:IsInstanceOf (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/hamcrest/src/org/hamcrest/core/
IsInstanceOf.java 14 public class IsInstanceOf extends BaseMatcher<Object> {
18 * Creates a new instance of IsInstanceOf
23 public IsInstanceOf(Class<?> theClass) {
41 return new IsInstanceOf(type);
Is.java 3 import static org.hamcrest.core.IsInstanceOf.instanceOf;
  /libcore/ojluni/src/main/native/
ObjectStreamClass.c 65 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
94 if (!(*env)->IsInstanceOf(env, th, noSuchMethodErrCl)) {
  /libnativehelper/include/nativehelper/
ScopedBytes.h 36 } else if (mEnv->IsInstanceOf(mObject, JniConstants::byteArrayClass)) {
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 192 SkASSERT(env->IsInstanceOf(obj, gRect_class));
202 SkASSERT(env->IsInstanceOf(obj, gRect_class));
212 SkASSERT(env->IsInstanceOf(obj, gRect_class));
223 SkASSERT(env->IsInstanceOf(obj, gRect_class));
233 SkASSERT(env->IsInstanceOf(obj, gRectF_class));
244 SkASSERT(env->IsInstanceOf(obj, gRect_class));
255 SkASSERT(env->IsInstanceOf(obj, gRectF_class));
265 SkASSERT(env->IsInstanceOf(obj, gPoint_class));
274 SkASSERT(env->IsInstanceOf(obj, gPoint_class));
282 SkASSERT(env->IsInstanceOf(obj, gPointF_class))
    [all...]
Movie.cpp 33 SkASSERT(env->IsInstanceOf(movie, gMovie_class));
  /frameworks/base/core/jni/
android_app_admin_SecurityLog.cpp 86 if (item == NULL || env->IsInstanceOf(item, gStringClass)) {
96 } else if (env->IsInstanceOf(item, gIntegerClass)) {
102 } else if (env->IsInstanceOf(item, gLongClass)) {
108 } else if (env->IsInstanceOf(item, gFloatClass)) {
android_util_EventLog.cpp 123 if (item == NULL || env->IsInstanceOf(item, gStringClass)) {
133 } else if (env->IsInstanceOf(item, gIntegerClass)) {
139 } else if (env->IsInstanceOf(item, gLongClass)) {
145 } else if (env->IsInstanceOf(item, gFloatClass)) {
android_media_AudioSystem.cpp 650 if (env->IsInstanceOf(jAudioPort, gAudioDevicePortClass)) {
652 } else if (env->IsInstanceOf(jAudioPort, gAudioMixPortClass)) {
850 if (env->IsInstanceOf(jAudioPort, gAudioDevicePortClass)) {
854 } else if (env->IsInstanceOf(jAudioPort, gAudioMixPortClass)) {
    [all...]
android_hardware_Radio.cpp 360 if (env->IsInstanceOf(jBandConfig, gRadioFmBandConfigClass)) {
371 } else if (env->IsInstanceOf(jBandConfig, gRadioAmBandConfigClass)) {
391 if (!env->IsInstanceOf(jModules, gArrayListClass)) {
620 if (!env->IsInstanceOf(jConfig, gRadioFmBandConfigClass) &&
621 !env->IsInstanceOf(jConfig, gRadioAmBandConfigClass)) {
    [all...]
android_hardware_SoundTrigger.cpp 394 if (!env->IsInstanceOf(jModules, gArrayListClass)) {
533 if (!env->IsInstanceOf(jSoundModel, gSoundModelClass)) {
539 if (env->IsInstanceOf(jSoundModel, gKeyphraseSoundModelClass)) {
542 } else if (env->IsInstanceOf(jSoundModel, gGenericSoundModelClass)) {
695 if (!env->IsInstanceOf(jConfig, gRecognitionConfigClass)) {
    [all...]
android_util_Binder.cpp 193 if (env->IsInstanceOf(excep, gErrorOffsets.mClass)) {
607 if (env->IsInstanceOf(obj, gBinderOffsets.mClass)) {
613 if (env->IsInstanceOf(obj, gBinderProxyOffsets.mClass)) {
    [all...]
  /art/test/004-JniTest/
jni_test.cc 510 CHECK(env_->IsInstanceOf(super_super, super_));
511 CHECK(!env_->IsInstanceOf(super_super, sub_));
515 CHECK(env_->IsInstanceOf(super_sub, super_));
516 CHECK(!env_->IsInstanceOf(super_sub, sub_));
520 CHECK(env_->IsInstanceOf(sub_super, super_));
521 CHECK(env_->IsInstanceOf(sub_super, sub_));
523 CHECK(env_->IsInstanceOf(sub_sub, super_));
524 CHECK(env_->IsInstanceOf(sub_sub, sub_));
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /frameworks/base/media/jni/
android_media_Utils.cpp 456 if (!env->IsInstanceOf(keyObj, stringClass.get())) {
478 if (env->IsInstanceOf(valueObj, stringClass.get())) {
489 } else if (env->IsInstanceOf(valueObj, integerClass.get())) {
497 } else if (env->IsInstanceOf(valueObj, longClass.get())) {
505 } else if (env->IsInstanceOf(valueObj, floatClass.get())) {
513 } else if (env->IsInstanceOf(valueObj, byteBufClass.get())) {
android_media_MediaCrypto.cpp 126 if (!env->IsInstanceOf(obj, clazz)) {
  /art/runtime/
jni_internal_test.cc 65 EXPECT_TRUE(env_->IsInstanceOf(exception, exception_class));
    [all...]
  /external/libgdx/gdx/jni/iosgl/
iosgl30.cpp 61 if(_env->IsInstanceOf(buffer, byteBufferClass)) return 0;
62 if(_env->IsInstanceOf(buffer, floatBufferClass)) return 2;
63 if(_env->IsInstanceOf(buffer, shortBufferClass)) return 1;
65 if(_env->IsInstanceOf(buffer, charBufferClass)) return 1;
66 if(_env->IsInstanceOf(buffer, intBufferClass)) return 2;
67 if(_env->IsInstanceOf(buffer, longBufferClass)) return 3;
68 if(_env->IsInstanceOf(buffer, doubleBufferClass)) return 3;
    [all...]
iosgl20.cpp 61 if(_env->IsInstanceOf(buffer, byteBufferClass)) return 0;
62 if(_env->IsInstanceOf(buffer, floatBufferClass)) return 2;
63 if(_env->IsInstanceOf(buffer, shortBufferClass)) return 1;
65 if(_env->IsInstanceOf(buffer, charBufferClass)) return 1;
66 if(_env->IsInstanceOf(buffer, intBufferClass)) return 2;
67 if(_env->IsInstanceOf(buffer, longBufferClass)) return 3;
68 if(_env->IsInstanceOf(buffer, doubleBufferClass)) return 3;
    [all...]
  /art/compiler/jni/
jni_compiler_test.cc 206 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
262 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
292 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
323 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
355 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
386 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
416 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_));
473 EXPECT_TRUE(env->IsInstanceOf(JniCompilerTest::jobj_, klass));
500 EXPECT_TRUE(env->IsInstanceOf(JniCompilerTest::jobj_, klass));
603 EXPECT_TRUE(env->IsInstanceOf(JniCompilerTest::jobj_, klass))
    [all...]
  /art/compiler/optimizing/
reference_type_propagation.cc 321 if (lhs->IsInstanceOf() && rhs->IsIntConstant()) {
338 if (lhs->IsInstanceOf() && rhs->IsIntConstant()) {
351 } else if (input->IsInstanceOf()) {
358 if (not_input->IsInstanceOf()) {
    [all...]
  /external/hamcrest/src/org/hamcrest/
CoreMatchers.java 66 return org.hamcrest.core.IsInstanceOf.instanceOf(type);
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 123 return clazz ? env->IsInstanceOf(object, clazz) == JNI_TRUE : false;
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 

Completed in 928 milliseconds

1 2 3 4 5