/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
PlaneCollisionShape.java | 55 objectId = createShape(plane.getNormal(), plane.getConstant()); 56 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 57 // objectId = new StaticPlaneShape(Converter.convert(plane.getNormal()),plane.getConstant()); 58 // objectId.setLocalScaling(Converter.convert(getScale())); 59 // objectId.setMargin(margin);
|
HullCollisionShape.java | 66 // objectId = new ConvexHullShape(pointList);
67 // objectId.setLocalScaling(Converter.convert(getScale()));
68 // objectId.setMargin(margin);
78 objectId = createShape(bbuf);
79 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
|
CompoundCollisionShape.java | 58 objectId = createShape();//new CompoundShape(); 59 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 71 // ((CompoundShape) objectId).addChildShape(transA, shape.getObjectId()); 88 addChildShape(objectId, shape.getObjectId(), location, rotation); 89 // ((CompoundShape) objectId).addChildShape(transA, shape.getObjectId()); 99 addChildShape(objectId, shape.getObjectId(), location, rotation); 100 // ((CompoundShape) objectId).addChildShape(transA, shape.getObjectId()); 108 removeChildShape(objectId, shape.getObjectId()); 109 // ((CompoundShape) objectId).removeChildShape(shape.getObjectId()); 132 private native long addChildShape(long objectId, long childId, Vector3f location, Matrix3f rotation) [all...] |
CapsuleCollisionShape.java | 108 objectId = createShape(axis, radius, height); 109 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 114 // objectId=new CapsuleShapeX(radius,height); 117 // objectId=new CapsuleShape(radius,height); 120 // objectId=new CapsuleShapeZ(radius,height); 123 // objectId.setLocalScaling(Converter.convert(getScale())); 124 // objectId.setMargin(margin);
|
CylinderCollisionShape.java | 100 objectId = createShape(axis, halfExtents); 101 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId)); 104 // objectId = new CylinderShapeX(Converter.convert(halfExtents)); 107 // objectId = new CylinderShape(Converter.convert(halfExtents)); 110 // objectId = new CylinderShapeZ(Converter.convert(halfExtents)); 113 // objectId.setLocalScaling(Converter.convert(getScale())); 114 // objectId.setMargin(margin);
|
/external/chromium_org/chrome/browser/extensions/api/push_messaging/ |
push_messaging_invalidation_handler_unittest.cc | 83 expected_ids.insert(invalidation::ObjectId( 86 expected_ids.insert(invalidation::ObjectId( 89 expected_ids.insert(invalidation::ObjectId( 92 expected_ids.insert(invalidation::ObjectId( 109 invalidation::ObjectId( 117 invalidation::ObjectId( 133 invalidation::ObjectId( 138 invalidation::ObjectId( 143 invalidation::ObjectId( 148 invalidation::ObjectId( [all...] |
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
InvalidationPreferences.java | 16 import com.google.ipc.invalidation.external.client.types.ObjectId; 119 public Set<ObjectId> getSavedObjectIds() { 125 Set<ObjectId> objectIds = new HashSet<ObjectId>(objectIdStrings.size()); 127 ObjectId objectId = getObjectId(objectIdString); 128 if (objectId != null) { 129 objectIds.add(objectId); 136 public void setObjectIds(EditContext editContext, Collection<ObjectId> objectIds) { 139 for (ObjectId objectId : objectIds) [all...] |
/external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/ |
ModelType.java | 10 import com.google.ipc.invalidation.external.client.types.ObjectId; 94 * Returns the {@link ObjectId} representation of this {@link ModelType}. 101 public ObjectId toObjectId() { 102 return ObjectId.newInstance(Types.ObjectSource.Type.CHROME_SYNC.getNumber(), 106 public static ModelType fromObjectId(ObjectId objectId) { 108 return valueOf(new String(objectId.getName())); 142 * Converts a set of sync types {@link String} to a set of {@link ObjectId}. 146 public static Set<ObjectId> syncTypesToObjectIds(Collection<String> syncTypes) { 151 * Converts a set of {@link ModelType} to a set of {@link ObjectId} [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
EncryptionScheme.java | 16 ASN1ObjectIdentifier objectId, 19 this.algId = new AlgorithmIdentifier(objectId, parameters);
|
KeyDerivationFunc.java | 16 ASN1ObjectIdentifier objectId, 19 this.algId = new AlgorithmIdentifier(objectId, parameters);
|
/external/chromium_org/sync/notifier/ |
dropped_invalidation_tracker.cc | 12 const invalidation::ObjectId& id) 18 const invalidation::ObjectId& DroppedInvalidationTracker::object_id() const {
|
sync_invalidation_listener_unittest.cc | 31 using invalidation::ObjectId; 84 virtual void Register(const ObjectId& object_id) OVERRIDE { 93 const invalidation::vector<ObjectId>& object_ids) OVERRIDE { 101 virtual void Unregister(const ObjectId& object_id) OVERRIDE { 110 const invalidation::vector<ObjectId>& object_ids) OVERRIDE { 115 for (invalidation::vector<ObjectId>::const_iterator 144 size_t GetInvalidationCount(const ObjectId& id) const { 153 int64 GetVersion(const ObjectId& id) const { 163 std::string GetPayload(const ObjectId& id) const { 173 bool IsUnknownVersion(const ObjectId& id) const [all...] |
dropped_invalidation_tracker.h | 19 // ObjectId. 24 // invalidations should keep one instance of it per registered ObjectId. 32 explicit DroppedInvalidationTracker(const invalidation::ObjectId& id); 35 const invalidation::ObjectId& object_id() const; 51 invalidation::ObjectId id_;
|
registration_manager.h | 60 typedef std::map<invalidation::ObjectId, 78 void MarkRegistrationLost(const invalidation::ObjectId& id); 85 void DisableId(const invalidation::ObjectId& id); 113 RegistrationStatus(const invalidation::ObjectId& id, 126 const invalidation::ObjectId id; 150 typedef std::map<invalidation::ObjectId, 160 void TryRegisterId(const invalidation::ObjectId& id, 167 void DoRegisterId(const invalidation::ObjectId& id); 170 void UnregisterId(const invalidation::ObjectId& id); 176 bool IsIdRegistered(const invalidation::ObjectId& id) const [all...] |
/art/runtime/jdwp/ |
jdwp_event.h | 45 ObjectId threadId; 76 ObjectId threadId; 82 ObjectId objectId;
|
jdwp.h | 44 * ObjectId and RefTypeId must be the same size. 48 typedef uint64_t ObjectId; /* any object (threadID, stringID, arrayID, etc) */ 49 typedef uint64_t RefTypeId; /* like ObjectID, but unique for Class objects */ 52 ObjectId ReadObjectId(const uint8_t** pBuf); 56 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); } 61 static inline void expandBufAddObjectId(ExpandBuf* pReply, ObjectId id) { expandBufAdd8BE(pReply, id); } 155 // ObjectId GetWaitForEventThread(); 156 void SetWaitForEventThread(ObjectId threadId); 189 bool PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags) 197 bool PostException(const JdwpLocation* pThrowLoc, ObjectId excepId, RefTypeId excepClassId [all...] |
/external/yaffs2/yaffs2/ |
yaffs_packedtags1.h | 12 unsigned objectId:18;
|
/external/chromium/chrome/browser/sync/notifier/ |
invalidation_util.h | 21 invalidation::ObjectId* object_id); 23 bool ObjectIdToRealModelType(const invalidation::ObjectId& object_id, 29 std::string ObjectIdToString(const invalidation::ObjectId& object_id);
|
/external/chromium_org/sync/android/javatests/src/org/chromium/sync/notifier/ |
InvalidationServiceTest.java | 18 import com.google.ipc.invalidation.external.client.types.ObjectId; 81 Set<ObjectId> regAccumulator = new HashSet<ObjectId>(); 82 Set<ObjectId> unregAccumulator = new HashSet<ObjectId>(); 95 InvalidationService.computeRegistrationOps(new HashSet<ObjectId>(), 96 new HashSet<ObjectId>(), regAccumulator, unregAccumulator); 102 Set<ObjectId> desiredTypes = 106 new HashSet<ObjectId>(), 112 new HashSet<ObjectId>(regAccumulator)) [all...] |
/frameworks/wilhelm/tests/sandbox/ |
object.c | 40 SLuint32 objectID; 47 for (objectID = FIRST_VALID - 1; objectID <= LAST_VALID + 1; ++objectID) { 48 printf("object ID %x", objectID); 49 const char *string = slesutObjectIDToString(objectID); 53 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, NULL); 56 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, 61 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, 0, 70 result = (*engineEngine)->QuerySupportedInterfaces(engineEngine, objectID, i, NULL) [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
PhysicsJoint.java | 47 protected long objectId = 0; 71 return getAppliedImpulse(objectId); 74 private native float getAppliedImpulse(long objectId); 80 return objectId; 142 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Finalizing Joint {0}", Long.toHexString(objectId)); 143 finalizeNative(objectId); 146 private native void finalizeNative(long objectId);
|
/external/chromium_org/third_party/sqlite/src/test/ |
tkt1449.test | 35 CREATE TABLE ACLS(ISSUEID text(50) not null, OBJECTID text(50) not null, PARTICIPANTID text(50) not null, PERMISSIONBITS int not null, constraint PK_ACLS primary key (ISSUEID, OBJECTID, PARTICIPANTID)); 36 CREATE TABLE ACTIONITEMSTATUSES(CLASSID int null, SEQNO int not null, LASTMODONNODEID text(50) not null, PREVMODONNODEID text(50) null, ISSUEID text(50) not null, OBJECTID text(50) not null, REVISIONNUM int not null, CONTAINERID text(50) not null, AUTHORID text(50) not null, CREATIONDATE text(25) null, LASTMODIFIEDDATE text(25) null, UPDATENUMBER int null, PREVREVISIONNUM int null, LASTCMD int null, LASTCMDACLVERSION int null, USERDEFINEDFIELD text(300) null, LASTMODIFIEDBYID text(50) null, FRIENDLYNAME text(100) not null, REVISION int not null, SHORTNAME text(30) not null, LONGNAME text(200) not null, ATTACHMENTHANDLING int not null, RESULT int not null, NOTIFYCREATOR text(1) null, NOTIFYASSIGNEE text(1) null, NOTIFYFYI text(1) null, NOTIFYCLOSURETEAM text(1) null, NOTIFYCOORDINATORS text(1) null, COMMENTREQUIRED text(1) not null, constraint PK_ACTIONITEMSTATUSES primary key (ISSUEID, OBJECTID)); 37 CREATE TABLE ACTIONITEMTYPES(CLASSID int null, SEQNO int not null, LASTMODONNODEID text(50) not null, PREVMODONNODEID text(50) null, ISSUEID text(50) not null, OBJECTID text(50) not null, REVISIONNUM int not null, CONTAINERID text(50) not null, AUTHORID text(50) not null, CREATIONDATE text(25) null, LASTMODIFIEDDATE text(25) null, UPDATENUMBER int null, PREVREVISIONNUM int null, LASTCMD int null, LASTCMDACLVERSION int null, USERDEFINEDFIELD text(300) null, LASTMODIFIEDBYID text(50) null, REVISION int not null, LABEL text(200) not null, INSTRUCTIONS text not null, EMAILINSTRUCTIONS text null, ALLOWEDSTATUSES text not null, INITIALSTATUS text(100) not null, COMMENTREQUIRED text(1) not null, ATTACHMENTHANDLING int not null, constraint PK_ACTIONITEMTYPES primary key (ISSUEID, OBJECTID)); 38 CREATE TABLE ATTACHMENTS(TQUNID text(36) not null, OBJECTID text(50) null, ISSUEID text(50) null, DATASTREAM blob not null, CONTENTENCODING text(50) null, CONTENTCHARSET text(50) null, CONTENTTYPE text(100) null, CONTENTID text(100) null, CONTENTLOCATION text(100) null, CONTENTNAME text(100) not null, constraint PK_ATTACHMENTS primary key (TQUNID)); 39 CREATE TABLE COMPLIANCEPOLICIES(CLASSID int null, SEQNO int not null, LASTMODONNODEID text(50) not null, PREVMODONNODEID text(50) null, ISSUEID text(50) not null, OBJECTID text(50) not null, REVISIONNUM int not null, CONTAINERID text(50) not null, AUTHORID text(50) not null, CREATIONDATE text(25) null, LASTMODIFIEDDATE text(25) null, UPDATENUMBER int null, PREVREVISIONNUM int null, LASTCMD int null, LASTCMDACLVERSION int null, USERDEFINEDFIELD text(300) null, LASTMODIFIEDBYID text(50) null, BODY text null, constraint PK_COMPLIANCEPOLICIES primary key (ISSUEID, OBJECTID)); 42 CREATE TABLE DETACHEDATTACHMENTS (TQUNID text(36) not null, ISSUEID text(50) not null, OBJECTID text(50) not null, PATH text(300) not null, DETACHEDFILELASTMODTIMESTAMP text(25) null, CONTENTID (…) [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/ |
PhysicsCollisionObject.java | 57 protected long objectId = 0; 124 if (objectId != 0) { 125 setCollisionGroup(objectId, collisionGroup); 137 if (objectId != 0) { 138 setCollideWithGroups(objectId, this.collisionGroupsMask); 148 if (objectId != 0) { 159 if (objectId != 0) { 160 setCollideWithGroups(objectId, this.collisionGroupsMask); 173 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "initUserPointer() objectId = {0}", Long.toHexString(objectId)); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotProxy.js | 192 var objectId = this._nextObjectId++; 193 var proxy = new WebInspector.HeapSnapshotLoaderProxy(this, objectId, snapshotConstructorName, proxyConstructor); 194 this._postMessage({callId: this._nextCallId++, disposition: "create", objectId: objectId, methodName: "WebInspector.HeapSnapshotLoader"}); 205 disposeObject: function(objectId) 207 this._postMessage({callId: this._nextCallId++, disposition: "dispose", objectId: objectId}); 210 callGetter: function(callback, objectId, getterName) 214 this._postMessage({callId: callId, disposition: "getter", objectId: objectId, methodName: getterName}) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorRuntimeAgent.cpp | 88 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) 90 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId); 105 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown); 113 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) 115 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId); 125 injectedScript.getProperties(errorString, objectId, ownProperties && *ownProperties, accessorPropertiesOnlyValue, &result); 128 injectedScript.getInternalProperties(errorString, objectId, &internalProperties); 134 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId) 136 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId); 138 injectedScript.releaseObject(objectId); [all...] |