HomeSort by relevance Sort by last modified time
    Searched refs:_contents (Results 1 - 4 of 4) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/common/
array_stream.py 43 self._contents = []
47 self._contents.append(msg)
51 return self._contents
55 self._contents = []
59 return (len(self._contents) == 0)
66 return '<ArrayStream: ' + str(self._contents) + '>'
  /external/webkit/Tools/Scripts/webkitpy/common/system/
fileset.py 34 self._contents = None
44 if self._contents is None:
45 self._contents = self._fileset.read(self._filename)
46 return self._contents
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 50 self._contents = contents
55 match = re.match(self.date_line_regexp, self._contents, re.MULTILINE)
57 log("WARNING: Creating invalid ChangeLogEntry:\n%s" % self._contents)
59 # FIXME: group("name") does not seem to be Unicode? Probably due to self._contents not being unicode.
63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period
87 return self._contents
90 return parse_bug_id_from_changelog(self._contents)
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutput_unittest.py 35 self._contents = contents
41 return self._contents
47 self._contents = contents
57 return self._contents
60 return FakeTestOutput(platform, self._output_type, self._contents, self._is_expected)

Completed in 65 milliseconds