Home
last modified time | relevance | path

Searched refs:thisObject (Results 1 – 6 of 6) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DThisObjectTest.java131 TaggedObject thisObject = reply.getNextValueAsTaggedObject(); in testThisObjectTest001() local
133 logWriter.println("==> tag=" + thisObject.tag + "(" in testThisObjectTest001()
134 + JDWPConstants.Tag.getName(thisObject.tag) + ")"); in testThisObjectTest001()
135 logWriter.println("==> id=" + thisObject.objectID); in testThisObjectTest001()
136 if (thisObject.objectID != 0) { in testThisObjectTest001()
137 long classID = getObjectReferenceType(thisObject.objectID); in testThisObjectTest001()
144 if (thisObject.objectID == 0) { in testThisObjectTest001()
151 if ( knownMethodsThisObject != thisObject.objectID ) { in testThisObjectTest001()
160 knownMethodsThisObject = thisObject.objectID; in testThisObjectTest001()
163 if (thisObject.tag != JDWPConstants.Tag.OBJECT_TAG) { in testThisObjectTest001()
[all …]
/external/v8/src/inspector/
Dv8-function-call.cc78 v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value); in callWithoutExceptionHandling() local
80 if (!thisObject->Get(m_context, m_name).ToLocal(&value)) in callWithoutExceptionHandling()
101 m_context, thisObject, static_cast<int>(m_arguments.size()), info.get()); in callWithoutExceptionHandling()
Ddebugger-script.js222 var thisObject = frameDetails.receiver();
345 "this": thisObject,
443 "thisObject": thisObject,
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
DDisposeDuringInvokeDebuggee.java34 public static DisposeDuringInvokeDebuggee thisObject; field in DisposeDuringInvokeDebuggee
71 thisObject = this; in run()
/external/pdfium/fxjs/
Dcfxjse_class.cpp229 v8::Local<v8::Object> thisObject = info.This(); in NamedPropertyQueryCallback() local
238 lpThisValue->ForceSetValue(thisObject); in NamedPropertyQueryCallback()
250 v8::Local<v8::Object> thisObject = info.This(); in NamedPropertyDeleterCallback() local
259 lpThisValue->ForceSetValue(thisObject); in NamedPropertyDeleterCallback()
267 v8::Local<v8::Object> thisObject = info.This(); in NamedPropertyGetterCallback() local
274 lpThisValue->ForceSetValue(thisObject); in NamedPropertyGetterCallback()
285 v8::Local<v8::Object> thisObject = info.This(); in NamedPropertySetterCallback() local
292 lpThisValue->ForceSetValue(thisObject); in NamedPropertySetterCallback()
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaPersistModule.java122 public Object invoke(final Object thisObject, final Method method, final Object[] args) in bindFinder()
142 return method.invoke(thisObject, args); in bindFinder()