/external/skia/tools/ |
sanitize_source_files.py | 62 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)
|
/art/runtime/base/unix_file/ |
random_access_file_test.h | 126 std::string new_content; local 127 ASSERT_TRUE(ReadString(file.get(), &new_content)); 128 ASSERT_EQ(content.substr(0, 2), new_content); 134 ASSERT_TRUE(ReadString(file.get(), &new_content)); 135 ASSERT_EQ('\0', new_content[new_length - 1]); 154 std::string new_content; local 155 ASSERT_TRUE(ReadString(file.get(), &new_content)); 156 ASSERT_EQ(new_content, content); 168 ASSERT_TRUE(ReadString(file.get(), &new_content)); 169 ASSERT_EQ(std::string("hello\0hello", new_length), new_content); [all...] |
/external/google-breakpad/src/testing/gtest/scripts/ |
upload.py | 629 A tuple (base_content, new_content, is_binary, status) 631 new_content: For text files, this is empty. For binary files, this is 702 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) [all...] |
/external/google-breakpad/src/testing/scripts/ |
upload.py | 629 A tuple (base_content, new_content, is_binary, status) 631 new_content: For text files, this is empty. For binary files, this is 702 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) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
upload-diffs.py | 855 A tuple (base_content, new_content, is_binary, status) 857 new_content: For text files, this is empty. For binary files, this is [all...] |
/external/autotest/client/common_lib/ |
cartesian_config.py | 240 # new_content and unpack conditional blocks if appropriate. 242 # becomes irrelevant and is not appended to new_content. 244 # unpacked into new_content. 251 new_content.append(t) 279 new_content.append(t) 326 # Check content and unpack it into new_content 327 new_content = [] 340 for d in self.get_dicts(n, ctx, new_content, shortname, dep): 347 for filename, linenum, op in new_content:
|
/external/libxml2/ |
triostr.c | 1300 char *new_content; local 1307 new_content = (char *)TRIO_REALLOC(self->content, new_size); 1308 if (new_content) 1310 self->content = new_content; [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/ |
__init__.py | 395 def _decompressContent(response, new_content): 396 content = new_content 401 content = gzip.GzipFile(fileobj=StringIO.StringIO(new_content)).read() [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/ |
__init__.py | 324 def _decompressContent(response, new_content): 325 content = new_content 330 content = gzip.GzipFile(fileobj=io.BytesIO(new_content)).read() [all...] |
/external/regex-re2/lib/codereview/ |
codereview.py | [all...] |