Searched defs:expectedLocation (Results 1 - 5 of 5) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DCombinedEvents003Test.java184 void receiveAndCheckEvents(byte[] EXPECTED_EVENTS_ARRAY, Location expectedLocation) { argument
305 if ( expectedLocation.classID != eventClassID ) {
307 logWriter.println("## Expected ClassID = " + expectedLocation.classID );
314 if ( expectedLocation.methodID != eventMethodID ) {
316 logWriter.println("## Expected MethodID = " + expectedLocation.methodID);
323 if ( expectedLocation.index != eventCodeIndex ) {
326 + expectedLocation.index);
H A DCombinedEventsTest.java907 void receiveAndCheckEvents(byte[] EXPECTED_EVENTS_ARRAY, Location expectedLocation) { argument
1031 if ( expectedLocation.classID != eventClassID ) {
1033 logWriter.println("## Expected ClassID = " + expectedLocation.classID );
1040 if ( expectedLocation.methodID != eventMethodID ) {
1042 logWriter.println("## Expected MethodID = " + expectedLocation.methodID);
1049 if ( expectedLocation.index != eventCodeIndex ) {
1052 + expectedLocation.index);
H A DCombinedEventsTestCase.java198 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...]
/external/skia/tests/
H A DGpuSampleLocationsTest.cpp117 SkPoint expectedLocation = specs.fSampleLocations[i]; local
119 expectedLocation.fY = 1 - expectedLocation.fY;
121 if (pattern[i] != expectedLocation) {
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.cpp609 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);

Completed in 249 milliseconds