Lines Matching refs:debugLocation

391             for (DebugLocation debugLocation : sourceLocations) {  in prepareDefaultPatchedClassFile_Type1()
392 … smapStratum.addLineData(debugLocation.inputLine, sourceName, 1, debugLocation.outputLine, 1); in prepareDefaultPatchedClassFile_Type1()
501 for (DebugLocation debugLocation : locationsData.allLocations) { in prepareDefaultPatchedClassFile_Type2()
503 debugLocation.inputLine, in prepareDefaultPatchedClassFile_Type2()
504 debugLocation.sourceName, in prepareDefaultPatchedClassFile_Type2()
506 debugLocation.outputLine, in prepareDefaultPatchedClassFile_Type2()
582 for (DebugLocation debugLocation : locationsData.allLocations) { in prepareDefaultPatchedClassFile_Type3()
583 … smapStratum.addLineData(debugLocation.inputLine, sourceName, 1, debugLocation.outputLine, 1); in prepareDefaultPatchedClassFile_Type3()
672 for (DebugLocation debugLocation : testStratumData.get(stratum).allLocations) in prepareDefaultPatchedClassFile_Type4()
674 debugLocation.inputLine, in prepareDefaultPatchedClassFile_Type4()
675 debugLocation.sourceName, in prepareDefaultPatchedClassFile_Type4()
677 debugLocation.outputLine, in prepareDefaultPatchedClassFile_Type4()
781 for (DebugLocation debugLocation : locationsData.allLocations) { in prepareDefaultPatchedClassFile_Type5()
783 debugLocation.inputLine, in prepareDefaultPatchedClassFile_Type5()
784 debugLocation.sourceName, in prepareDefaultPatchedClassFile_Type5()
786 debugLocation.outputLine, in prepareDefaultPatchedClassFile_Type5()
820 for (DebugLocation debugLocation : debugLocations) { in locationsOfMethod()
821 if (debugLocation.methodName.equals(methodName)) in locationsOfMethod()
822 result.add(debugLocation); in locationsOfMethod()
835 for (DebugLocation debugLocation : debugLocations) { in locationsOfLine()
836 if (debugLocation.isConform(sourceName, lineNumber)) in locationsOfLine()
837 result.add(debugLocation); in locationsOfLine()
850 for (DebugLocation debugLocation : debugLocations) { in allUniqueLocations()
851 if (!result.contains(debugLocation)) { in allUniqueLocations()
852 result.add(debugLocation); in allUniqueLocations()