/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
SixDofSpringJoint.java | 67 enableSpring(objectId, index, onOff); 72 setStiffness(objectId, index, stiffness); 77 setDamping(objectId, index, damping); 82 setEquilibriumPoint(objectId); 86 setEquilibriumPoint(objectId, index);
|
/external/jmonkeyengine/engine/src/bullet-native/ |
com_jme3_bullet_PhysicsSpace.cpp | 83 (JNIEnv * env, jobject object, jlong spaceId, jlong objectId) { 85 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 108 (JNIEnv * env, jobject object, jlong spaceId, jlong objectId) { 110 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 180 (JNIEnv * env, jobject object, jlong spaceId, jlong objectId) { 182 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 207 (JNIEnv * env, jobject object, jlong spaceId, jlong objectId) { 209 btCollisionObject* collisionObject = reinterpret_cast<btCollisionObject*>(objectId); 231 (JNIEnv * env, jobject object, jlong spaceId, jlong objectId) { 233 btActionInterface* actionObject = reinterpret_cast<btActionInterface*>(objectId); [all...] |
/external/webkit/Source/WebCore/inspector/ |
InjectedScript.h | 59 void evaluateOn(ErrorString*, const String& objectId, const String& expression, RefPtr<InspectorObject>* result); 61 void getProperties(ErrorString*, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result); 62 Node* nodeForObjectId(const String& objectId); 63 void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const String& expression); 64 void releaseObject(const String& objectId);
|
InjectedScriptSource.js | 74 var objectId = this._wrapObject(object, ""); 89 InjectedScriptHost.inspect(objectId, hints); 99 var objectId = "{\"injectedScriptId\":" + injectedScriptId + ",\"id\":" + id + "}"; 110 return InjectedScript.RemoteObject.fromObject(object, objectId); 116 _parseObjectId: function(objectId) 118 return eval("(" + objectId + ")"); 142 getProperties: function(objectId, ignoreHasOwnProperty) 144 var parsedObjectId = this._parseObjectId(objectId); 179 setPropertyValue: function(objectId, propertyName, expression) 181 var parsedObjectId = this._parseObjectId(objectId); [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/ |
ObjectStore.java | 148 def.objectId = localObj.objectId; 157 localObj.objectId = objectIdCounter++; 170 localObjects.put(localObj.objectId, localObj); 210 short objectId = remoteObj.objectId; 214 call.objectId = objectId; 261 remoteObject.objectId = (short)def.objectId; [all...] |
RemoteMethodCallMessage.java | 53 public int objectId; 76 sb.append("RemoteMethodCallMessage[objectID=").append(objectId).append(", methodID=")
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
ProxyInstance.h | 43 static PassRefPtr<ProxyInstance> create(PassRefPtr<JSC::Bindings::RootObject> rootObject, NetscapePluginInstanceProxy* instanceProxy, uint32_t objectID) 45 return adoptRef(new ProxyInstance(rootObject, instanceProxy, objectID)); 57 uint32_t objectID() const { return m_objectID; } 60 ProxyInstance(PassRefPtr<JSC::Bindings::RootObject>, NetscapePluginInstanceProxy*, uint32_t objectID);
|
/frameworks/wilhelm/src/ut/ |
OpenSLESUT.c | 138 const char *slesutObjectIDToString(SLuint32 objectID) 152 return (0x1001 <= objectID) && (objectID <= 0x100A) ? objectIDstrings[objectID - 0x1001] : NULL;
|
OpenSLESUT.h | 25 extern const char *slesutObjectIDToString(SLuint32 objectID);
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofData.java | 53 public final int objectId; 59 public static ThreadEvent start(int objectId, int threadId, String threadName, 61 return new ThreadEvent(ThreadEventType.START, objectId, threadId, 69 private ThreadEvent(ThreadEventType type, int objectId, int threadId, 75 this.objectId = objectId; 84 this.objectId = -1; 93 result = 31 * result + objectId; 111 && this.objectId == event.objectId [all...] |
/external/chromium/chrome/browser/sync/notifier/ |
cache_invalidation_packet_handler_unittest.cc | 34 MOCK_METHOD1(Register, void(const invalidation::ObjectId&)); 35 MOCK_METHOD1(Unregister, void(const invalidation::ObjectId&));
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MtpSource.java | 54 int objectId = mMatcher.getIntVar(1); 55 return new MtpImage(path, mApplication, deviceId, objectId, mMtpContext);
|
MtpDevice.java | 78 private void collectJpegChildren(int storageId, int objectId, 82 queryChildren(storageId, objectId, result, dirChildren); 90 private void queryChildren(int storageId, int objectId, 93 mDeviceName, storageId, objectId); 114 int objectId) { 116 return mtpContext.getMtpClient().getObjectInfo(deviceName, objectId);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
MeshCollisionShape.java | 140 // objectId = new BvhTriangleMeshShape(tiv, true);
141 // objectId.setLocalScaling(Converter.convert(getScale()));
142 // objectId.setMargin(margin);
145 objectId = createShape(meshId);
146 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
160 private native void finalizeNative(long objectId);
|
BoxCollisionShape.java | 82 objectId = createShape(halfExtents); 83 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
|
/dalvik/vm/ |
Debugger.cpp | 75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread 90 #define THREAD_GROUP_ALL ((ObjectId) 0x12345) // magic, internal-only value 187 static bool lookupId(ObjectId id) 203 * This is used for both ObjectId and RefTypeId. In theory we don't have 209 static ObjectId registerObject(const Object* obj, RegistryType type, bool reg) 211 ObjectId id; 219 id = (ObjectId)(u4)obj | ((u8) type) << 32; 248 * Note this actually takes both ObjectId and RefTypeId. 251 static bool objectIsRegistered(ObjectId id, RegistryType type) 287 * Convert to/from an ObjectId [all...] |
/external/webkit/Tools/MiniBrowser/mac/ |
MainMenu.xib | [all...] |
/frameworks/native/include/binder/ |
Binder.h | 49 virtual void attachObject( const void* objectID, 53 virtual void* findObject(const void* objectID) const; 54 virtual void detachObject(const void* objectID);
|
/frameworks/native/libs/binder/ |
Binder.cpp | 138 const void* objectID, void* object, void* cleanupCookie, 154 e->mObjects.attach(objectID, object, cleanupCookie, func); 157 void* BBinder::findObject(const void* objectID) const 163 return e->mObjects.find(objectID); 166 void BBinder::detachObject(const void* objectID) 172 e->mObjects.detach(objectID);
|
/external/llvm/test/CodeGen/X86/ |
2009-09-10-LoadFoldingBug.ll | 12 define i32 @t(i32 %clientPort, i32 %pluginID, i32 %requestID, i32 %objectID, i64 %serverIdentifier, i64 %argumentsData, i32 %argumentsLength) ssp { 24 %5 = invoke zeroext i8 @invoke(i8* %3, i32 %objectID, i8* undef, i64 %argumentsData, i32 %argumentsLength, i64* undef, i32* undef)
|
/external/javassist/src/main/javassist/tools/rmi/ |
StubGenerator.java | 30 * private int objectId; 31 * public int _getObjectId() { return objectId; } 33 * importer = oi; objectId = id; 44 private static final String fieldObjectId = "objectId";
|
/external/webkit/Source/WebCore/inspector/front-end/ |
RemoteObject.js | 31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren) 33 this._objectId = objectId; 67 return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.description, payload.hasChildren); 85 get objectId()
|
/frameworks/wilhelm/src/ |
classes.c | 504 LI_API const ClassTable *objectIDtoClass(SLuint32 objectID) 509 if ((slObjectID0 <= objectID) && ((slObjectID0 + sizeof(slClasses)/sizeof(slClasses[0])) > 510 objectID)) { 511 return slClasses[objectID - slObjectID0]; 515 if ((xaObjectID0 <= objectID) && ((xaObjectID0 + sizeof(xaClasses)/sizeof(xaClasses[0])) > 516 objectID)) { 517 return xaClasses[objectID - xaObjectID0];
|
/external/grub/stage2/ |
fsys_reiserfs.c | 249 __u32 deh_dir_id; /* objectid of the parent directory of the 251 __u32 deh_objectid;/* objectid of the object, that is referenced by 680 * search_stat(dir_id, objectid) searches for the stat entry (always 820 search_stat (__u32 dir_id, __u32 objectid) 828 printf ("search_stat:\n key %d:%d:0:0\n", dir_id, objectid); 845 && (key->k_objectid > objectid 846 || (key->k_objectid == objectid 868 && ih->ih_key.k_objectid == objectid 998 __u32 dir_id, objectid, parent_dir_id = 0, parent_objectid = 0; local 1007 objectid = REISERFS_ROOT_OBJECTID [all...] |
/dalvik/vm/jdwp/ |
JdwpPriv.h | 82 ObjectId debugThreadId; 113 ObjectId eventThreadId;
|