/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | TaggedObject.java | 35 public long objectID; field in TaggedObject 42 objectID = 0; in TaggedObject() 48 public TaggedObject(byte tag, long objectID) { in TaggedObject() argument 50 this.objectID = objectID; in TaggedObject()
|
D | VmMirror.java | 2232 public final long getReferenceType(long objectID) { in getReferenceType() argument 2236 command.setNextValueAsObjectID(objectID); in getReferenceType() 2296 public final Value[] getObjectReferenceValues(long objectID, long[] fieldIDs) { in getObjectReferenceValues() argument 2305 command.setNextValueAsReferenceTypeID(objectID); in getObjectReferenceValues() 2372 return taggedObject.objectID; in getThisObject() 2512 public final String getStringValue(long objectID) { in getStringValue() argument 2516 command.setNextValueAsObjectID(objectID); in getStringValue() 2528 public Value[] getArrayValues(long objectID) { in getArrayValues() argument 2532 command.setNextValueAsArrayID(objectID); in getArrayValues() 2543 command.setNextValueAsArrayID(objectID); in getArrayValues() [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | InvokeMethodTest.java | 140 + newObject.tag + " newObject.objectID=" + newObject.objectID); in makeNewInstance() 144 + exception.tag + " exception.objectID=" + exception.objectID); in makeNewInstance() 147 assertTrue("newObject.objectID must be != 0", newObject.objectID != 0); in makeNewInstance() 153 assertTrue("exception.objectID must be == 0", exception.objectID == 0); in makeNewInstance() 204 packet.setNextValueAsObjectID(newObject.objectID); in testInvokeMethod001() 221 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod001() 227 assertTrue("exception.objectID must be == 0", exception.objectID == 0); in testInvokeMethod001() 238 packet.setNextValueAsObjectID(newObject.objectID); in testInvokeMethod001() 255 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod001() 258 assertTrue("exception.objectID must be != 0", exception.objectID != 0); in testInvokeMethod001() [all …]
|
D | ReferringObjectsTest.java | 145 long objectID = checkedReply.getNextValueAsObjectID(); in DoTestReferringObjects() local 152 ReferringObjectsCommand.setNextValueAsObjectID(objectID); in DoTestReferringObjects() 175 objectID = checkedReply.getNextValueAsObjectID(); in DoTestReferringObjects() 176 logWriter.println("=> ObjectID is: " + objectID); in DoTestReferringObjects() 178 objectID, new long[] { referrerFieldID }); in DoTestReferringObjects() 227 long objectID = checkedReply.getNextValueAsObjectID(); in testReferringObjects_IllegalArgument() local 234 ReferringObjectsCommand.setNextValueAsObjectID(objectID); in testReferringObjects_IllegalArgument()
|
D | InvokeMethod002Test.java | 160 … assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); in testInvokeMethod_null_argument() 165 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod_null_argument()
|
D | InvokeMethod003Test.java | 169 … assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); in testInvokeMethod_toString() 174 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod_toString()
|
D | DisableCollectionTest.java | 179 private void disableCollection(long objectID, int expectedErrorCode) { in disableCollection() argument 183 command.setNextValueAsObjectID(objectID); in disableCollection()
|
D | EnableCollectionTest.java | 184 private void enableCollection(long objectID, int expectedErrorCode) { in enableCollection() argument 188 command.setNextValueAsObjectID(objectID); in enableCollection()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | ThisObjectTest.java | 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() 175 if (thisObject.objectID != 0) { in testThisObjectTest001()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/ |
D | InstancesTest.java | 137 long objectID = checkedReply.getNextValueAsObjectID(); in runTestInstances() local 138 logWriter.println("=> ObjectID is: " + objectID); in runTestInstances() 140 objectID, new long[] { mockClassFieldID }); in runTestInstances() 259 long objectID = checkedReply.getNextValueAsObjectID(); in testInstances_String() local 260 logWriter.println("=> ObjectID is: " + objectID); in testInstances_String() 319 long objectID = checkedReply.getNextValueAsObjectID(); in testInstances_Array() local 320 logWriter.println("=> ObjectID is: " + objectID); in testInstances_Array()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
D | InvokeMethodTest.java | 185 … assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); in testInvokeMethod001() 190 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod001() 213 … assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID != 0); in testInvokeMethod001() 218 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod001() 355 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod002() 356 if ( exception.objectID != 0 ) { in testInvokeMethod002() 357 String exceptionSignature = getObjectSignature(exception.objectID); in testInvokeMethod002() 482 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod003() 483 if ( exception.objectID != 0 ) { in testInvokeMethod003() 484 String exceptionSignature = getObjectSignature(exception.objectID); in testInvokeMethod003()
|
D | NewInstanceTest.java | 178 + newObject.tag + "; newObject.objectID=" + newObject.objectID); in testNewInstance001() 181 + exception.tag + "; exception.objectID=" + exception.objectID); in testNewInstance001() 184 assertTrue("newObject.objectID is 0", newObject.objectID != 0); in testNewInstance001() 190 …assertEquals("ClassType::NewInstance returned invalid exception.objectID,", 0, exception.objectID); in testNewInstance001() 198 packet.setNextValueAsObjectID(newObject.objectID); in testNewInstance001() 229 + newObject.tag + "; newObject.objectID=" + newObject.objectID); in testNewInstance001() 232 + exception.tag + "; exception.objectID=" + exception.objectID); in testNewInstance001() 235 0, newObject.objectID); in testNewInstance001() 243 exception.objectID != 0); in testNewInstance001()
|
D | NewInstance002Test.java | 132 + newObject.tag + "; newObject.objectID=" + newObject.objectID); in testNewInstance_null_argument() 135 + exception.tag + "; exception.objectID=" + exception.objectID); in testNewInstance_null_argument() 138 assertTrue("newObject.objectID is 0", newObject.objectID != 0); in testNewInstance_null_argument() 144 …assertEquals("ClassType::NewInstance returned invalid exception.objectID,", 0, exception.objectID); in testNewInstance_null_argument()
|
D | InvokeMethod003Test.java | 132 … assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); in testInvokeMethod_null_argument() 137 + exception.tag + " exception.objectID=" + exception.objectID); in testInvokeMethod_null_argument()
|
/external/clang/test/CodeGenCXX/ |
D | debug-info-dup-fwd-decl.cpp | 11 return reserved->objectID; in getID() 15 unsigned objectID; member
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | InstanceOnlyModifierTest.java | 288 long objectID = getInstanceObjectId(); in testEventWithInstanceOnlyModifier() local 289 builder.setInstanceOnly(objectID); in testEventWithInstanceOnlyModifier() 296 checkThisObject(eventThread, objectID); in testEventWithInstanceOnlyModifier() 301 private void checkThisObject(EventThreadLocation eventThread, long objectID) { in checkThisObject() argument 328 objectID, thisObjectID); in checkThisObject()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ExceptionTest.java | 86 …riter.println(">> testExceptionEvent: returnedException.objectID = " + returnedException.objectID); in testExceptionEvent() 87 assertTrue("Returned exception object is null.", returnedException.objectID != 0); in testExceptionEvent() 90 … logWriter.println(">> testExceptionEvent: returnedException.tag = " + returnedException.objectID); in testExceptionEvent() 94 long typeID = getObjectReferenceType(returnedException.objectID); in testExceptionEvent()
|
/external/clang/test/Index/ |
D | comment-cplus-decls.cpp | 27 return reserved->objectID; in getID() 35 unsigned objectID; member
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | OwnedMonitorsTest.java | 101 + "ID: " + tobj.objectID); in testOwnedMonitors001() 106 packet.setNextValueAsObjectID(tobj.objectID); in testOwnedMonitors001()
|
D | ForceEarlyReturn006Test.java | 67 long objectID = checkedReply.getNextValueAsObjectID(); in getObjectID() local 68 return objectID; in getObjectID()
|
D | CurrentContendedMonitorTest.java | 98 + "ID: " + tobj.objectID); in testCurrentContendedMonitor001() 103 packet.setNextValueAsObjectID(tobj.objectID); in testCurrentContendedMonitor001()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/ |
D | NewInstanceTest.java | 111 + newArray.tag + " newArray.objectID=" + newArray.objectID); in testNewInstance001() 123 packet.setNextValueAsObjectID(newArray.objectID); in testNewInstance001()
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-09-10-LoadFoldingBug.ll | 12 define i32 @t(i32 %clientPort, i32 %pluginID, i32 %requestID, i32 %objectID, i64 %serverIdentifier,… 24 …%5 = invoke zeroext i8 @invoke(i8* %3, i32 %objectID, i8* undef, i64 %argumentsData, i32 %argument…
|
/external/eigen/unsupported/test/ |
D | openglsupport.cpp | 57 void printInfoLog(GLuint objectID) in printInfoLog() argument 61 glGetProgramiv(objectID,GL_INFO_LOG_LENGTH, &infologLength); in printInfoLog() 65 glGetProgramInfoLog(objectID, infologLength, &charsWritten, infoLog); in printInfoLog()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
D | JDWPTestCase.java | 154 protected String getObjectSignature(long objectID) { in getObjectSignature() argument 155 long classID = getObjectReferenceType(objectID); in getObjectSignature() 166 protected long getObjectReferenceType(long objectID) { in getObjectReferenceType() argument 170 command.setNextValueAsReferenceTypeID(objectID); in getObjectReferenceType()
|