/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
AlgorithmIdentifier.java | 17 private ASN1ObjectIdentifier objectId; 52 ASN1ObjectIdentifier objectId) 54 this.objectId = objectId; 59 * @param objectId 62 String objectId) 64 this.objectId = new ASN1ObjectIdentifier(objectId); 69 * @param objectId 72 DERObjectIdentifier objectId) [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
SliderJoint.java | 83 return getLowerLinLimit(objectId); 86 private native float getLowerLinLimit(long objectId); 89 setLowerLinLimit(objectId, lowerLinLimit); 92 private native void setLowerLinLimit(long objectId, float value); 95 return getUpperLinLimit(objectId); 98 private native float getUpperLinLimit(long objectId); 101 setUpperLinLimit(objectId, upperLinLimit); 104 private native void setUpperLinLimit(long objectId, float value); 107 return getLowerAngLimit(objectId); 110 private native float getLowerAngLimit(long objectId); [all...] |
HingeJoint.java | 77 enableMotor(objectId, enable, targetVelocity, maxMotorImpulse); 80 private native void enableMotor(long objectId, boolean enable, float targetVelocity, float maxMotorImpulse); 83 return getEnableAngularMotor(objectId); 86 private native boolean getEnableAngularMotor(long objectId); 89 return getMotorTargetVelocity(objectId); 92 private native float getMotorTargetVelocity(long objectId); 95 return getMaxMotorImpulse(objectId); 98 private native float getMaxMotorImpulse(long objectId); 101 setLimit(objectId, low, high); 104 private native void setLimit(long objectId, float low, float high) [all...] |
Point2PointJoint.java | 66 setDamping(objectId, value); 69 private native void setDamping(long objectId, float value); 72 setImpulseClamp(objectId, value); 75 private native void setImpulseClamp(long objectId, float value); 78 setTau(objectId, value); 81 private native void setTau(long objectId, float value); 84 return getDamping(objectId); 87 private native float getDamping(long objectId); 90 return getImpulseClamp(objectId); 93 private native float getImpulseClamp(long objectId); [all...] |
/dalvik/vm/ |
Debugger.h | 100 ObjectId exceptObj; 163 ObjectId dvmDbgGetClassObject(RefTypeId id); 165 ObjectId dvmDbgGetClassLoader(RefTypeId id); 169 void dvmDbgGetVisibleClassList(ObjectId classLoaderId, u4* pNumClasses, 175 void dvmDbgGetObjectType(ObjectId objectId, u1* pRefTypeTag, 180 const char* dvmDbgGetObjectTypeName(ObjectId objectId); 181 u1 dvmDbgGetObjectTag(ObjectId objectId); [all...] |
/external/chromium_org/sync/notifier/ |
invalidation_util.h | 25 class ObjectId; 28 SYNC_EXPORT_PRIVATE void PrintTo(const invalidation::ObjectId& id, 38 bool operator()(const invalidation::ObjectId& lhs, 39 const invalidation::ObjectId& rhs) const; 47 typedef std::set<invalidation::ObjectId, ObjectIdLessThan> ObjectIdSet; 50 invalidation::ObjectId* object_id); 52 bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id, 57 const invalidation::ObjectId& object_id); 60 invalidation::ObjectId* out); 63 const invalidation::ObjectId& object_id) [all...] |
ack_handler.h | 13 class ObjectId; 31 const invalidation::ObjectId& id, 36 const invalidation::ObjectId& id,
|
invalidation_util.cc | 18 void PrintTo(const invalidation::ObjectId& id, std::ostream* os) { 25 bool ObjectIdLessThan::operator()(const invalidation::ObjectId& lhs, 26 const invalidation::ObjectId& rhs) const { 51 invalidation::ObjectId* object_id) { 61 bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id, 67 const invalidation::ObjectId& object_id) { 75 invalidation::ObjectId* out) { 76 *out = invalidation::ObjectId(); 83 *out = invalidation::ObjectId(source, name); 88 const invalidation::ObjectId& object_id) [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/ |
PhysicsGhostObject.java | 78 if (objectId == 0) { 80 objectId = createGhostObject(); 81 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Ghost Object {0}", Long.toHexString(objectId)); 82 setGhostFlags(objectId); 89 attachCollisionShape(objectId, collisionShape.getObjectId()); 94 private native void setGhostFlags(long objectId); 99 if (objectId == 0) { 102 attachCollisionShape(objectId, collisionShape.getObjectId()); 111 setPhysicsLocation(objectId, location); 114 private native void setPhysicsLocation(long objectId, Vector3f location) [all...] |
PhysicsRigidBody.java | 96 if (objectId != 0) { 97 if (isInWorld(objectId)) { 101 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Clearing RigidBody {0}", Long.toHexString(objectId)); 102 finalizeNative(objectId); 105 objectId = createRigidBody(mass, motionState.getObjectId(), collisionShape.getObjectId()); 106 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created RigidBody {0}", Long.toHexString(objectId)); 120 setStatic(objectId, true); 122 setStatic(objectId, false); 135 return isInWorld(objectId); 138 private native boolean isInWorld(long objectId); [all...] |
PhysicsCharacter.java | 79 if (objectId == 0) { 80 objectId = createGhostObject(); 81 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Creating GhostObject {0}", Long.toHexString(objectId)); 84 setCharacterFlags(objectId); 85 attachCollisionShape(objectId, collisionShape.getObjectId()); 87 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Clearing Character {0}", Long.toHexString(objectId)); 90 characterId = createCharacterObject(objectId, collisionShape.getObjectId(), stepHeight); 96 private native void setCharacterFlags(long objectId); 98 private native long createCharacterObject(long objectId, long shapeId, float stepHeight); 206 if (objectId == 0) [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CollisionShape.java | 48 protected long objectId = 0; 58 // public void calculateLocalInertia(long objectId, float mass) { 59 // if (this.objectId == 0) { 65 // calculateLocalInertia(objectId, this.objectId, mass); 66 //// objectId.calculateLocalInertia(mass, vector); 70 // private native void calculateLocalInertia(long objectId, long shapeId, float mass); 76 return objectId; 83 this.objectId = id; 88 setLocalScaling(objectId, scale) [all...] |
SimplexCollisionShape.java | 74 objectId = createShape(vector1, vector2, vector3, vector4); 75 // objectId = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3), Converter.convert(vector4)); 77 objectId = createShape(vector1, vector2, vector3); 78 // objectId = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.convert(vector3)); 80 objectId = createShape(vector1, vector2); 81 // objectId = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2)); 83 objectId = createShape(vector1); 84 // objectId = new BU_Simplex1to4(Converter.convert(vector1)); 86 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 87 // objectId.setLocalScaling(Converter.convert(getScale())) [all...] |
ConeCollisionShape.java | 65 objectId = createShape(axis, radius, height); 66 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 68 // objectId = new ConeShapeX(radius, height); 70 // objectId = new ConeShape(radius, height); 72 // objectId = new ConeShapeZ(radius, height); 74 // objectId.setLocalScaling(Converter.convert(getScale())); 75 // objectId.setMargin(margin);
|
/external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/ |
TestableInvalidationService.java | 12 import com.google.ipc.invalidation.external.client.types.ObjectId; 29 final List<List<ObjectId>> mRegistrations = new ArrayList<List<ObjectId>>(); 32 final List<List<ObjectId>> mUnregistrations = new ArrayList<List<ObjectId>>(); 38 final Set<ObjectId> mCurrentRegistrations = new HashSet<ObjectId>(); 63 public void register(byte[] clientId, Iterable<ObjectId> objectIds) { 64 List<ObjectId> objectIdList = CollectionUtil.newArrayList(objectIds); 71 public void unregister(byte[] clientId, Iterable<ObjectId> objectIds) [all...] |
/external/clang/test/CodeGenCXX/ |
debug-info-dup-fwd-decl.cpp | 11 return reserved->objectID; 15 unsigned objectID;
|
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_objects_PhysicsGhostObject.cpp | 66 (JNIEnv *env, jobject object, jlong objectId) { 67 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); 82 (JNIEnv *env, jobject object, jlong objectId, jobject value) { 83 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); 98 (JNIEnv *env, jobject object, jlong objectId, jobject value) { 99 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); 114 (JNIEnv *env, jobject object, jlong objectId, jobject value) { 115 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); 130 (JNIEnv *env, jobject object, jlong objectId, jobject value) { 131 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); [all...] |
com_jme3_bullet_objects_PhysicsCharacter.cpp | 81 (JNIEnv *env, jobject object, jlong objectId, jlong shapeId, jfloat stepHeight) { 82 btPairCachingGhostObject* ghost = reinterpret_cast<btPairCachingGhostObject*>(objectId); 100 (JNIEnv *env, jobject object, jlong objectId, jobject vector) { 101 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); 118 (JNIEnv *env, jobject object, jlong objectId, jobject vector) { 119 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); 136 (JNIEnv *env, jobject object, jlong objectId, jint value) { 137 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); 152 (JNIEnv *env, jobject object, jlong objectId, jfloat value) { 153 btKinematicCharacterController* character = reinterpret_cast<btKinematicCharacterController*>(objectId); [all...] |
com_jme3_bullet_collision_PhysicsCollisionObject.cpp | 50 (JNIEnv * env, jobject object, jlong objectId, jlong shapeId) { 51 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 72 (JNIEnv * env, jobject object, jlong objectId) { 73 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 91 (JNIEnv *env, jobject object, jlong objectId, jint group, jint groups) { 92 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 115 (JNIEnv *env, jobject object, jlong objectId, jint group) { 116 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 133 (JNIEnv *env, jobject object, jlong objectId, jint groups) { 134 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); [all...] |
/art/runtime/ |
debugger.h | 77 JDWP::ObjectId exception; 133 static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& class_object_id) 150 static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) 156 static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t& tag) 160 static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int& length) 162 static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count, 165 static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count, 169 static JDWP::ObjectId CreateString(const std::string& str) 171 static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId& new_object) 174 JDWP::ObjectId& new_array [all...] |
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
InvalidationService.java | 19 import com.google.ipc.invalidation.external.client.types.ObjectId; 116 public void invalidateUnknownVersion(ObjectId objectId, byte[] ackHandle) { 117 requestSync(objectId, null, null); 129 byte[] clientId, ObjectId objectId, boolean isTransient, String errorMessage) { 130 Log.w(TAG, "Registration failure on " + objectId + " ; transient = " + isTransient 135 List<ObjectId> objectIdAsList = CollectionUtil.newArrayList(objectId); 136 if (readRegistrationsFromPrefs().contains(objectId)) { [all...] |
/art/runtime/jdwp/ |
object_registry.h | 44 JDWP::ObjectId id; 57 JDWP::ObjectId Add(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 60 template<typename T> T Get(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { 71 void DisableCollection(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 72 void EnableCollection(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 74 bool IsCollected(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 76 void DisposeObject(JDWP::ObjectId id, uint32_t reference_count) 84 jobject GetJObject(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 87 JDWP::ObjectId InternalAdd(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 88 mirror::Object* InternalGet(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
PBES2Algorithms.java | 18 private ASN1ObjectIdentifier objectId; 29 objectId = (ASN1ObjectIdentifier)e.nextElement(); 51 return objectId; 69 v.add(objectId);
|
/external/yaffs2/yaffs2/ |
yaffs_packedtags1.c | 9 pt->objectId = t->objectId; 29 t->objectId = pt->objectId;
|
yaffs_packedtags2.h | 11 unsigned objectId;
|