Searched refs:expectedLocation (Results 1 - 6 of 6) sorted by relevance
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
H A D | CombinedEventsTestCase.java | 198 protected boolean checkEventLocation(ParsedEvent parsedEvent, Location expectedLocation) { argument 240 if ( expectedLocation != null ) { 241 if ( expectedLocation.classID != eventClassID ) { 243 logWriter.println("## Expected ClassID = " + expectedLocation.classID ); 251 if ( expectedLocation != null ) { 252 if ( expectedLocation.methodID != eventMethodID ) { 254 logWriter.println("## Expected MethodID = " + expectedLocation.methodID); 262 if ( expectedLocation != null ) { 263 if ( expectedLocation.index != eventCodeIndex ) { 266 + expectedLocation 275 checkEventsLocation(ParsedEvent[] parsedEvents, Location expectedLocation) argument [all...] |
H A D | CombinedEvents002Test.java | 269 Location expectedLocation = new Location(JDWPConstants.TypeTag.CLASS, testedClassID, 271 return checkEventLocation(methodEntryEvent, expectedLocation); 277 Location expectedLocation = new Location(JDWPConstants.TypeTag.CLASS, testedClassID, 279 return checkEventLocation(methodExitEvent, expectedLocation); 285 Location expectedLocation = new Location(JDWPConstants.TypeTag.CLASS, testedClassID, 287 boolean result = checkEventLocation(methodExitWithReturnValueEvent, expectedLocation);
|
H A D | CombinedEvents003Test.java | 183 void receiveAndCheckEvents(byte[] EXPECTED_EVENTS_ARRAY, Location expectedLocation) { argument 304 if ( expectedLocation.classID != eventClassID ) { 306 logWriter.println("## Expected ClassID = " + expectedLocation.classID ); 313 if ( expectedLocation.methodID != eventMethodID ) { 315 logWriter.println("## Expected MethodID = " + expectedLocation.methodID); 322 if ( expectedLocation.index != eventCodeIndex ) { 325 + expectedLocation.index);
|
H A D | CombinedEventsTest.java | 906 void receiveAndCheckEvents(byte[] EXPECTED_EVENTS_ARRAY, Location expectedLocation) { argument 1030 if ( expectedLocation.classID != eventClassID ) { 1032 logWriter.println("## Expected ClassID = " + expectedLocation.classID ); 1039 if ( expectedLocation.methodID != eventMethodID ) { 1041 logWriter.println("## Expected MethodID = " + expectedLocation.methodID); 1048 if ( expectedLocation.index != eventCodeIndex ) { 1051 + expectedLocation.index);
|
/external/deqp/modules/glshared/ |
H A D | glsAttributeLocationTests.cpp | 609 const deInt32 expectedLocation = (attrib.getLayoutLocation() != Attribute::LOC_UNDEF ? attrib.getLayoutLocation() : getBoundLocation(bindings, attrib.getName())); local 616 << (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF ? ", expected " + de::toString(expectedLocation) : "") 622 if (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF && expectedLocation != location) 625 isOk &= (attrib.getCondition() == Cond::COND_NEVER || expectedLocation == Attribute::LOC_UNDEF || expectedLocation == location);
|
/external/deqp/modules/gles31/functional/ |
H A D | es31fUniformLocationTests.cpp | 558 int expectedLocation = uniformInfo.location; 567 const float expectedValue = getExpectedValue(scalarType, expectedLocation, typeName); 622 expectedLocation += expectedLocation>=0;
|
Completed in 118 milliseconds