Home | History | Annotate | Download | only in scripts

Lines Matching refs:lines

87 def FindBuildFingerprint(lines):
88 """Searches the given file (array of lines) for the build fingerprint."""
90 for line in lines:
238 def ConvertTrace(lines):
249 # Examples of matched trace lines include lines from tombstone files like:
251 # Or lines from AndroidFeedback crash report system logs like:
255 # Examples of matched value lines include:
260 # Lines from 'code around' sections of the output will be matched before
261 # value lines because otheriwse the 'code around' sections will be confused as
262 # value lines.
272 for ln in lines:
320 # Code lines should be ignored. If this were exluded the 'code around'
395 lines = f.readlines()
400 fingerprint = FindBuildFingerprint(lines)
407 ConvertTrace(lines)