Home
last modified time | relevance | path

Searched refs:new_content (Results 1 – 11 of 11) sorted by relevance

/external/skia/tools/
Dsanitize_source_files.py62 new_content = ''.join(new_lines)
64 new_content = modifier(new_content, full_item_path)
65 if new_content != old_content:
72 f.write(new_content)
/external/skqp/tools/
Dsanitize_source_files.py62 new_content = ''.join(new_lines)
64 new_content = modifier(new_content, full_item_path)
65 if new_content != old_content:
72 f.write(new_content)
/external/deqp-deps/SPIRV-Tools/utils/
Dupdate_build_version.py137 new_content = '"{}", "SPIRV-Tools {} {}"\n'.format(
143 if new_content == f.read():
147 f.write(new_content)
/external/swiftshader/third_party/SPIRV-Tools/utils/
Dupdate_build_version.py137 new_content = '"{}", "SPIRV-Tools {} {}"\n'.format(
143 if new_content == f.read():
147 f.write(new_content)
/external/googletest/googlemock/scripts/
Dupload.py702 base_content, new_content, is_binary, status = files[filename]
710 if new_content != None:
711 UploadFile(filename, file_id, new_content, is_binary, status, False)
901 new_content = None
915 new_content = self.ReadFile(filename)
942 new_content = self.ReadFile(filename)
945 new_content = RunShell(["svn", "cat", url],
982 return base_content, new_content, is_binary, status[0:5]
1029 new_content = None
1039 return (base_content, new_content, is_binary, status)
[all …]
/external/google-breakpad/src/testing/gtest/scripts/
Dupload.py702 base_content, new_content, is_binary, status = files[filename]
710 if new_content != None:
711 UploadFile(filename, file_id, new_content, is_binary, status, False)
901 new_content = None
915 new_content = self.ReadFile(filename)
942 new_content = self.ReadFile(filename)
945 new_content = RunShell(["svn", "cat", url],
982 return base_content, new_content, is_binary, status[0:5]
1029 new_content = None
1039 return (base_content, new_content, is_binary, status)
[all …]
/external/google-breakpad/src/testing/scripts/
Dupload.py702 base_content, new_content, is_binary, status = files[filename]
710 if new_content != None:
711 UploadFile(filename, file_id, new_content, is_binary, status, False)
901 new_content = None
915 new_content = self.ReadFile(filename)
942 new_content = self.ReadFile(filename)
945 new_content = RunShell(["svn", "cat", url],
982 return base_content, new_content, is_binary, status[0:5]
1029 new_content = None
1039 return (base_content, new_content, is_binary, status)
[all …]
/external/googletest/googletest/scripts/
Dupload.py702 base_content, new_content, is_binary, status = files[filename]
710 if new_content != None:
711 UploadFile(filename, file_id, new_content, is_binary, status, False)
901 new_content = None
915 new_content = self.ReadFile(filename)
942 new_content = self.ReadFile(filename)
945 new_content = RunShell(["svn", "cat", url],
982 return base_content, new_content, is_binary, status[0:5]
1029 new_content = None
1039 return (base_content, new_content, is_binary, status)
[all …]
/external/python/httplib2/python3/httplib2/
D__init__.py434 def _decompressContent(response, new_content): argument
435 content = new_content
440 content = gzip.GzipFile(fileobj=io.BytesIO(new_content)).read()
1835 (response, new_content) = self.request(
1875 (response, new_content) = self._request(
1906 content = new_content
1909 content = new_content
/external/python/httplib2/python2/httplib2/
D__init__.py514 def _decompressContent(response, new_content): argument
515 content = new_content
520 content = gzip.GzipFile(fileobj=StringIO.StringIO(new_content)).read()
2044 (response, new_content) = self.request(
2084 (response, new_content) = self._request(
2115 content = new_content
2118 content = new_content
/external/libxml2/
Dtriostr.c1300 char *new_content; variable
1307 new_content = (char *)TRIO_REALLOC(self->content, new_size);
1308 if (new_content)
1310 self->content = new_content;