HomeSort by relevance Sort by last modified time
    Searched refs:typeA (Results 1 - 22 of 22) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
ContactID.java 59 public byte typeA;
63 return ((int) indexA) << 24 | ((int) indexB) << 16 | ((int) typeA) << 8 | ((int) typeB);
79 typeA = c.typeA;
87 tempA = typeA;
88 typeA = typeB;
98 typeA = 0;
Collision.java 180 vOutNO.id.typeA = (byte) ContactID.Type.VERTEX.ordinal();
535 c0.id.typeA = (byte) ContactID.Type.FACE.ordinal();
545 c1.id.typeA = (byte) ContactID.Type.FACE.ordinal();
770 cf.typeA = (byte) ContactID.Type.VERTEX.ordinal();
805 cf.typeA = (byte) ContactID.Type.VERTEX.ordinal();
837 cf.typeA = (byte) ContactID.Type.FACE.ordinal();
883 id.typeA = c.typeA;
    [all...]
  /frameworks/base/tools/aapt2/diff/
Diff.cpp 138 ResourceTableType* typeA,
150 strStream << "value " << pkgA->name << ":" << typeA->type << "/" << entryA->name
164 ResourceTableType* typeA,
175 strStream << "missing " << pkgA->name << ":" << typeA->type << "/" << entryA->name
180 diff |= emitResourceConfigValueDiff(context, apkA, pkgA, typeA, entryA,
203 ResourceTableType* typeA,
208 for (std::unique_ptr<ResourceEntry>& entryA : typeA->entries) {
212 strStream << "missing " << pkgA->name << ":" << typeA->type << "/" << entryA->name;
218 strStream << pkgA->name << ":" << typeA->type << "/" << entryA->name
237 strStream << pkgA->name << ":" << typeA->type << "/" << entryA->nam
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountTypeManagerTest.java 46 final AccountType typeA = new MockAccountType("type1", null, null);
52 final AccountWithDataSet accountA1 = createAccountWithDataSet("a1", typeA);
71 buildAccountTypes(typeA, typeB)
78 buildAccountTypes(typeA)
106 buildAccountTypes(typeA, typeC)
112 buildAccountTypes(typeA, typeC),
118 buildAccountTypes(typeD, typeA, typeC),
124 buildAccountTypes(typeD, typeA, typeC, typeB),
  /external/neven/Embedded/common/src/b_BasicEm/
Basic.h 118 #define bbs_SIZEOF8( typeA ) ( sizeof( typeA ) << 1 )
119 #define bbs_SIZEOF16( typeA ) ( sizeof( typeA ) )
120 #define bbs_SIZEOF32( typeA ) ( sizeof( typeA ) >> 1 )
122 #define bbs_SIZEOF8( typeA ) ( sizeof( typeA ) )
123 #define bbs_SIZEOF16( typeA ) ( sizeof( typeA ) >> 1
    [all...]
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Feature.h 126 enum bbf_FeatureType typeA );
147 uint32 bbf_featureSizeOf16( struct bbs_Context* cpA, enum bbf_FeatureType typeA );
Feature.c 183 enum bbf_FeatureType typeA )
185 switch( typeA )
313 uint32 bbf_featureSizeOf16( struct bbs_Context* cpA, enum bbf_FeatureType typeA )
315 switch( typeA )
  /external/neven/Embedded/common/src/b_TensorEm/
VectorMap.h 118 enum bts_VectorMapType typeA );
139 uint32 bts_vectorMapSizeOf16( struct bbs_Context* cpA, enum bts_VectorMapType typeA );
VectorMap.c 160 enum bts_VectorMapType typeA )
162 switch( typeA )
249 uint32 bts_vectorMapSizeOf16( struct bbs_Context* cpA, enum bts_VectorMapType typeA )
251 switch( typeA )
  /external/neven/Embedded/common/src/b_APIEm/
FaceFinder.c 181 enum bpi_FaceFinderType typeA )
183 switch( typeA )
250 uint32 bpi_faceFinderSizeOf16( struct bbs_Context* cpA, enum bpi_FaceFinderType typeA )
252 switch( typeA )
FaceFinder.h 135 enum bpi_FaceFinderType typeA );
158 enum bpi_FaceFinderType typeA );
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumDataAdapter.java 119 int typeA = 1;
123 typeA = 0;
130 typeA = 2;
136 if (typeA == typeB) {
139 return (int) Math.signum(typeA - typeB);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2CollidePolygon.cpp 99 c[0].id.cf.typeA = b2ContactFeature::e_face;
105 c[1].id.cf.typeA = b2ContactFeature::e_face;
231 cp->id.cf.typeA = cf.typeB;
232 cp->id.cf.typeB = cf.typeA;
b2CollideEdge.cpp 76 cf.typeA = b2ContactFeature::e_vertex;
114 cf.typeA = b2ContactFeature::e_vertex;
144 cf.typeA = b2ContactFeature::e_face;
501 ie[0].id.cf.typeA = b2ContactFeature::e_face;
507 ie[1].id.cf.typeA = b2ContactFeature::e_face;
534 ie[0].id.cf.typeA = b2ContactFeature::e_vertex;
540 ie[1].id.cf.typeA = b2ContactFeature::e_vertex;
607 cp->id.cf.typeA = clipPoints2[i].id.cf.typeB;
608 cp->id.cf.typeB = clipPoints2[i].id.cf.typeA;
b2Collision.cpp 225 vOut[numOut].id.cf.typeA = b2ContactFeature::e_vertex;
b2Collision.h 48 uint8 typeA; ///< The feature type on shapeA
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/
b2Contact.cpp 116 b2Shape::Type typeA = fixtureA->GetType();
119 b2Assert(0 <= typeA && typeB < b2Shape::e_typeCount);
120 b2Assert(0 <= typeA && typeB < b2Shape::e_typeCount);
122 b2ContactDestroyFcn* destroyFcn = s_registers[typeA][typeB].destroyFcn;
b2Contact.h 180 b2Shape::Type typeA, b2Shape::Type typeB);
183 static void Destroy(b2Contact* contact, b2Shape::Type typeA, b2Shape::Type typeB, b2BlockAllocator* allocator);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2World.cpp 639 b2BodyType typeA = bA->m_type;
641 b2Assert(typeA == b2_dynamicBody || typeB == b2_dynamicBody);
643 bool activeA = bA->IsAwake() && typeA != b2_staticBody;
652 bool collideA = bA->IsBullet() || typeA != b2_dynamicBody;
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
World.java     [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 661 milliseconds