/* */
/* 439 */ for (int i = 0; i < size; i++) {
/* 440 */ Object object = list.get(i);
/* */
/* 442 */ if ((object instanceof ProcessingInstruction)) {
/* 443 */ ProcessingInstruction pi = (ProcessingInstruction)object;
/* */
/* 445 */ if (target.equals(pi.getName())) {
/* 446 */ answer.addLocal(pi);
/* */ }
/* */ }
/* */ }
/* */
/* 451 */ return answer;
/* */ }
/* 453 */ if ((shadow instanceof ProcessingInstruction)) {
/* 454 */ ProcessingInstruction pi = (ProcessingInstruction)shadow;
/* */
/* 456 */ if (target.equals(pi.getName())) {
/* 457 */ return createSingleResultList(pi);
/* */ }
/* */ }
/* */
/* 461 */ return createEmptyList();