Home
last modified time | relevance | path

Searched refs:new_contents (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceAssembler.cpp124 uintptr_t new_contents = NewContents(Assemblr, new_capacity); in extendCapacity() local
125 memmove(reinterpret_cast<void *>(new_contents), in extendCapacity()
129 intptr_t delta = new_contents - Contents; in extendCapacity()
130 Contents = new_contents; in extendCapacity()
134 Limit = computeLimit(new_contents, new_capacity); in extendCapacity()
/external/libbrillo/brillo/
Dfile_utils_unittest.cc39 std::string new_contents; in ExpectFileContains() local
40 EXPECT_TRUE(base::ReadFileToString(file_path_, &new_contents)); in ExpectFileContains()
41 EXPECT_EQ(contents, new_contents); in ExpectFileContains()
/external/skia/tools/lua/
Dfind_ngrams_on_ct33 new_contents, subd = re.subn(NGRAMS_LUA_SUBSTITUTION_STR,
42 tmp_script.write(new_contents)
/external/skia/infra/bots/
Dwin_toolchain_utils.py46 new_contents = _replace(contents, before, after)
48 json.dump(new_contents, f)
/external/libchrome/base/memory/
Dshared_memory_unittest.cc346 StringPiece new_contents = "Goodbye"; in TEST() local
347 memcpy(writable_shmem.memory(), new_contents.data(), new_contents.size()); in TEST()
348 EXPECT_EQ(new_contents, in TEST()
350 new_contents.size())); in TEST()
/external/python/cpython2/Lib/lib2to3/tests/
Dtest_refactor.py211 new_contents = read_file()
212 self.assertNotEqual(old_contents, new_contents)
213 return new_contents
/external/python/cpython2/Lib/plat-mac/
Dpimp.py751 new_contents = os.listdir(self._db.preferences.installDir)
752 for fn in new_contents: