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

1 2 3 4 5

  /cts/suite/audio_quality/test/
SimpleScriptExecTest.cpp 33 android::String8 match1; local
34 ASSERT_TRUE(SimpleScriptExec::checkIfPassed(pass1, match1));
37 ASSERT_TRUE(!SimpleScriptExec::checkIfPassed(fail1, match1));
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
PhoneNumberMatchTest.java 34 PhoneNumberMatch match1 = new PhoneNumberMatch(10, "1 800 234 45 67", number); local
37 assertEquals(match1, match2);
38 assertEquals(match1.hashCode(), match2.hashCode());
39 assertEquals(match1.start(), match2.start());
40 assertEquals(match1.end(), match2.end());
41 assertEquals(match1.number(), match2.number());
42 assertEquals(match1.rawString(), match2.rawString());
43 assertEquals("1 800 234 45 67", match1.rawString());
  /external/libgdx/extensions/gdx-bullet/jni/src/custom/gdx/collision/
ContactListener.cpp 25 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject); local
26 return (!match0 && !match1) ? false :
27 currentContactAddedListener->onContactAdded(cp, *colObj0Wrap, partId0, index0, match0, *colObj1Wrap, partId1, index1, match1);
31 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject); local
32 return (!match0 && !match1) ? false :
33 currentContactAddedListener->onContactAdded(cp, colObj0Wrap->m_collisionObject, partId0, index0, match0, colObj1Wrap->m_collisionObject, partId1, index1, match1);
37 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject); local
38 return (!match0 && !match1) ? false :
43 partId1, index1, match1);
62 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject) local
68 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject); local
74 const bool match1 = gdxCheckFilter(colObj1Wrap->m_collisionObject, colObj0Wrap->m_collisionObject); local
95 const bool match1 = gdxCheckFilter((btCollisionObject*)body1, (btCollisionObject*)body0); local
102 const bool match1 = gdxCheckFilter((btCollisionObject*)body1, (btCollisionObject*)body0); local
121 const bool match1 = gdxCheckFilter((btCollisionObject*)body1, (btCollisionObject*)body0); local
128 const bool match1 = gdxCheckFilter((btCollisionObject*)body1, (btCollisionObject*)body0); local
156 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
162 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
168 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
188 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
194 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
200 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
    [all...]
ContactCache.h 58 virtual void onContactStarted(btPersistentManifold* manifold, const bool &match0, const bool &match1) = 0;
59 //virtual void onContactStarted(const btCollisionObject* colObj0, const bool &match0, const btCollisionObject* colObj1, const bool &match1) = 0;
60 //virtual void onContactStarted(const int &userValue0, const bool &match0, const int &userValue1, const bool &match1) = 0;
66 //virtual void onContactEnded(btPersistentManifold* manifold, const bool &match0, const bool &match1) = 0;
67 virtual void onContactEnded(const btCollisionObject* colObj0, const bool &match0, const btCollisionObject* colObj1, const bool &match1) = 0;
68 //virtual void onContactEnded(const int &userValue0, const bool &match0, const int &userValue1, const bool &match1) = 0;
ContactListener.h 113 const btCollisionObjectWrapper &colObj1Wrap,int partId1,int index1,bool match1) = 0;
115 const btCollisionObject* colObj1,int partId1,int index1,bool match1) = 0;
117 int userValue1,int partId1,int index1,bool match1) = 0;
127 const btCollisionObjectWrapper &colObj1Wrap,int partId1,int index1,bool match1) = 0;
129 const btCollisionObject* colObj1,int partId1,int index1,bool match1) = 0;
131 int userValue1,int partId1,int index1,bool match1) = 0;
140 virtual void onContactProcessed(btManifoldPoint& cp, const btCollisionObject* colObj0, bool match0, const btCollisionObject* colObj1, bool match1) = 0;
141 virtual void onContactProcessed(btManifoldPoint& cp, int userValue0, bool match0, int userValue1, bool match1) = 0;
146 virtual void onContactProcessed(const btCollisionObject* colObj0, bool match0, const btCollisionObject* colObj1, bool match1) = 0;
147 virtual void onContactProcessed(int userValue0, bool match0, int userValue1, bool match1) = 0
    [all...]
ContactCache.cpp 87 const bool match1 = gdxCheckFilter(object1, object0); local
88 if (!filter || match0 || match1)
89 onContactEnded(object0, match0, object1, match1);
107 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
108 if (filter && !match0 && !match1)
116 onContactStarted(manifold, match0, match1);
121 const bool match1 = gdxCheckFilter(manifold->getBody1(), manifold->getBody0()); local
122 if (filter && !match0 && !match1)
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
ContactListener.java 120 public boolean onContactAdded(btManifoldPoint cp, btCollisionObjectWrapper colObj0Wrap, int partId0, int index0, boolean match0, btCollisionObjectWrapper colObj1Wrap, int partId1, int index1, boolean match1) {
121 return CollisionJNI.ContactListener_onContactAdded__SWIG_3(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, btCollisionObjectWrapper.getCPtr(colObj0Wrap), colObj0Wrap, partId0, index0, match0, btCollisionObjectWrapper.getCPtr(colObj1Wrap), colObj1Wrap, partId1, index1, match1);
124 public boolean onContactAdded(btManifoldPoint cp, btCollisionObject colObj0, int partId0, int index0, boolean match0, btCollisionObject colObj1, int partId1, int index1, boolean match1) {
125 return CollisionJNI.ContactListener_onContactAdded__SWIG_4(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, btCollisionObject.getCPtr(colObj0), colObj0, partId0, index0, match0, btCollisionObject.getCPtr(colObj1), colObj1, partId1, index1, match1);
128 public boolean onContactAdded(btManifoldPoint cp, int userValue0, int partId0, int index0, boolean match0, int userValue1, int partId1, int index1, boolean match1) {
129 return CollisionJNI.ContactListener_onContactAdded__SWIG_5(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, userValue0, partId0, index0, match0, userValue1, partId1, index1, match1);
144 public boolean onContactAdded(btCollisionObjectWrapper colObj0Wrap, int partId0, int index0, boolean match0, btCollisionObjectWrapper colObj1Wrap, int partId1, int index1, boolean match1) {
145 return CollisionJNI.ContactListener_onContactAdded__SWIG_9(swigCPtr, this, btCollisionObjectWrapper.getCPtr(colObj0Wrap), colObj0Wrap, partId0, index0, match0, btCollisionObjectWrapper.getCPtr(colObj1Wrap), colObj1Wrap, partId1, index1, match1);
148 public boolean onContactAdded(btCollisionObject colObj0, int partId0, int index0, boolean match0, btCollisionObject colObj1, int partId1, int index1, boolean match1) {
149 return CollisionJNI.ContactListener_onContactAdded__SWIG_10(swigCPtr, this, btCollisionObject.getCPtr(colObj0), colObj0, partId0, index0, match0, btCollisionObject.getCPtr(colObj1), colObj1, partId1, index1, match1);
    [all...]
ContactCache.java 106 public void onContactStarted(btPersistentManifold manifold, boolean match0, boolean match1) {
107 CollisionJNI.ContactCache_onContactStarted(swigCPtr, this, btPersistentManifold.getCPtr(manifold), manifold, match0, match1);
110 public void onContactEnded(btCollisionObject colObj0, boolean match0, btCollisionObject colObj1, boolean match1) {
111 CollisionJNI.ContactCache_onContactEnded(swigCPtr, this, btCollisionObject.getCPtr(colObj0), colObj0, match0, btCollisionObject.getCPtr(colObj1), colObj1, match1);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformationStore.java 110 Collection match1 = getSigners(new SignerId(selector.getIssuer(), selector.getSerialNumber())); local
112 if (match1 != null)
114 results.addAll(match1);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
ContactCallbackTest2.java 29 public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) {
35 if (match1) {
43 public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) {
49 if (match1) {
ContactCacheTest.java 43 public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) {
49 if (match1) {
57 public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) {
63 if (match1) {
75 public void onContactStarted (btPersistentManifold manifold, boolean match0, boolean match1) {
83 if (match1) {
91 public void onContactEnded (btCollisionObject colObj0, boolean match0, btCollisionObject colObj1, boolean match1) {
99 if (match1) {
ContactCallbackTest.java 34 public void onContactProcessed (int userValue0, boolean match0, int userValue1, boolean match1) {
42 if (match1) {
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/
collision_wrap.h 348 virtual bool onContactAdded(btManifoldPoint &cp, btCollisionObjectWrapper const &colObj0Wrap, int partId0, int index0, bool match0, btCollisionObjectWrapper const &colObj1Wrap, int partId1, int index1, bool match1);
349 virtual bool onContactAdded(btManifoldPoint &cp, btCollisionObject const *colObj0, int partId0, int index0, bool match0, btCollisionObject const *colObj1, int partId1, int index1, bool match1);
350 virtual bool onContactAdded(btManifoldPoint &cp, int userValue0, int partId0, int index0, bool match0, int userValue1, int partId1, int index1, bool match1);
354 virtual bool onContactAdded(btCollisionObjectWrapper const &colObj0Wrap, int partId0, int index0, bool match0, btCollisionObjectWrapper const &colObj1Wrap, int partId1, int index1, bool match1);
355 virtual bool onContactAdded(btCollisionObject const *colObj0, int partId0, int index0, bool match0, btCollisionObject const *colObj1, int partId1, int index1, bool match1);
356 virtual bool onContactAdded(int userValue0, int partId0, int index0, bool match0, int userValue1, int partId1, int index1, bool match1);
359 virtual void onContactProcessed(btManifoldPoint &cp, btCollisionObject const *colObj0, bool match0, btCollisionObject const *colObj1, bool match1);
360 virtual void onContactProcessed(btManifoldPoint &cp, int userValue0, bool match0, int userValue1, bool match1);
363 virtual void onContactProcessed(btCollisionObject const *colObj0, bool match0, btCollisionObject const *colObj1, bool match1);
364 virtual void onContactProcessed(int userValue0, bool match0, int userValue1, bool match1);
    [all...]
  /bionic/libc/kernel/uapi/linux/
serial.h 87 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /development/ndk/platforms/android-21/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /external/kernel-headers/original/uapi/linux/
serial.h 85 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
serial.h 82 unsigned char mask1, match1; member in struct:serial_multiport_struct

Completed in 194 milliseconds

1 2 3 4 5