HomeSort by relevance Sort by last modified time
    Searched refs:objectId (Results 26 - 50 of 120) sorted by null

12 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 62 const String& objectId,
83 void getProperties(ErrorString*, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >* result);
84 void getInternalProperties(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >* result);
85 Node* nodeForObjectId(const String& objectId);
86 void releaseObject(const String& objectId);
93 ScriptValue findObjectById(const String& objectId) const;
InspectorRuntimeAgent.h 69 const String& objectId,
77 virtual void releaseObject(ErrorString*, const String& objectId);
78 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties);
InjectedScript.cpp 71 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
74 function.appendArgument(objectId);
179 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties)
182 function.appendArgument(objectId);
195 void InjectedScript::getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties)
198 function.appendArgument(objectId);
211 Node* InjectedScript::nodeForObjectId(const String& objectId)
217 function.appendArgument(objectId);
226 void InjectedScript::releaseObject(const String& objectId)
229 function.appendArgument(objectId);
    [all...]
InjectedScriptSource.js 185 var objectId = this._wrapObject(object, "");
200 InjectedScriptHost.inspect(objectId, hints);
237 var objectId = "{\"injectedScriptId\":" + injectedScriptId + ",\"id\":" + id + "}";
247 return objectId;
251 * @param {string} objectId
254 _parseObjectId: function(objectId)
256 return InjectedScriptHost.evaluate("(" + objectId + ")");
289 * @param {string} objectId
294 getProperties: function(objectId, ownProperties, accessorPropertiesOnly)
296 var parsedObjectId = this._parseObjectId(objectId);
    [all...]
InjectedScriptHost.idl 38 [Custom] void inspect(any objectId, any hints);
  /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/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
ConeJoint.java 89 setLimit(objectId, swingSpan1, swingSpan2, twistSpan);
92 private native void setLimit(long objectId, float swingSpan1, float swingSpan2, float twistSpan);
96 setAngularOnly(objectId, value);
99 private native void setAngularOnly(long objectId, boolean value);
129 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB);
130 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Joint {0}", Long.toHexString(objectId));
131 setLimit(objectId, swingSpan1, swingSpan2, twistSpan);
132 setAngularOnly(objectId, angularOnly);
SixDofJoint.java 84 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA);
85 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Joint {0}", Long.toHexString(objectId));
99 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA);
100 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Joint {0}", Long.toHexString(objectId));
106 RotationalLimitMotor rmot = new RotationalLimitMotor(getRotationalLimitMotor(objectId, i));
109 translationalMotor = new TranslationalLimitMotor(getTranslationalLimitMotor(objectId));
112 private native long getRotationalLimitMotor(long objectId, int index);
114 private native long getTranslationalLimitMotor(long objectId);
137 setLinearUpperLimit(objectId, vector);
144 setLinearLowerLimit(objectId, vector)
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteMethodCallMessage.java 53 public int objectId;
76 sb.append("RemoteMethodCallMessage[objectID=").append(objectId).append(", methodID=")
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...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
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...]
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...]
BoxCollisionShape.java 82 objectId = createShape(halfExtents);
83 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
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);
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);
SphereCollisionShape.java 80 objectId = createShape(radius);
81 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
83 // objectId.setLocalScaling(Converter.convert(getScale()));
84 // objectId.setMargin(margin);
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);
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);
GImpactCollisionShape.java 145 // objectId = new GImpactMeshShape(tiv);
146 // objectId.setLocalScaling(Converter.convert(worldScale));
147 // ((GImpactMeshShape)objectId).updateBound();
148 // objectId.setLocalScaling(Converter.convert(getScale()));
149 // objectId.setMargin(margin);
152 objectId = createShape(meshId);
153 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
167 private native void finalizeNative(long objectId);
  /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...]
  /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_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationService.java 21 import com.google.ipc.invalidation.external.client.types.ObjectId;
115 public void invalidateUnknownVersion(ObjectId objectId, byte[] ackHandle) {
116 requestSync(objectId, null, null);
128 byte[] clientId, ObjectId objectId, boolean isTransient, String errorMessage) {
129 Log.w(TAG, "Registration failure on " + objectId + " ; transient = " + isTransient
134 List<ObjectId> objectIdAsList = Lists.newArrayList(objectId);
135 if (readRegistrationsFromPrefs().contains(objectId)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RemoteObject.js 33 * @param {string|undefined} objectId
40 WebInspector.RemoteObject = function(objectId, type, subtype, value, description, preview)
44 if (objectId) {
46 this._objectId = objectId;
109 return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.subtype, payload.value, payload.description, payload.preview);
130 get objectId()
251 if (result.objectId)
252 RuntimeAgent.releaseObject(result.objectId);
449 * @param {string|undefined} objectId
457 WebInspector.ScopeRemoteObject = function(objectId, scopeRef, type, subtype, value, description, preview
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 403 + objectId(contextClassLoader));
690 logDiagnostic("Releasing factory for classloader " + objectId(classLoader));
    [all...]

Completed in 196 milliseconds

12 3 4 5