/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip.cc | 124 bool Zip(const ZipParams& params) { in Zip() function 161 // No source items are specified. Zip the entire source directory. in Zip() 247 return Zip({.src_dir = src_dir, in ZipWithFilterCallback() 252 bool Zip(const base::FilePath& src_dir, in Zip() function 255 return Zip({.src_dir = src_dir, in Zip() 265 return Zip({.src_dir = src_dir, in ZipFiles()
|
H A D | zip_unittest.cc | 343 // and zip::Zip() the clock can advance a bit, hence the use of EXPECT_GE. in TestTimeStamp() 354 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true)); in TestTimeStamp() 1010 TEST_F(ZipTest, Zip) { in TEST_F() 1017 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/true)); in TEST_F() 1028 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/false)); in TEST_F() 1043 EXPECT_TRUE(zip::Zip(src_dir_russian, zip_file, true)); in TEST_F() 1126 ASSERT_TRUE(zip::Zip(params)); in TEST_F() 1171 EXPECT_TRUE(zip::Zip({.src_dir = src_dir, in TEST_F() 1208 EXPECT_TRUE(zip::Zip({.src_dir = src_dir, in TEST_F() 1233 EXPECT_TRUE(zip::Zip({ in TEST_F() [all...] |
H A D | zip.h | 31 // Abstraction for file access operation required by Zip(). 142 // Zip files specified into a ZIP archives. The source files and ZIP destination 144 bool Zip(const ZipParams& params); 146 // Zip the contents of src_dir into dest_file. src_path must be a directory. 158 bool Zip(const base::FilePath& src_dir,
|
/third_party/node/deps/zlib/google/ |
H A D | zip.cc | 124 bool Zip(const ZipParams& params) { in Zip() function 161 // No source items are specified. Zip the entire source directory. in Zip() 250 return Zip({.src_dir = src_dir, in ZipWithFilterCallback() 255 bool Zip(const base::FilePath& src_dir, in Zip() function 258 return Zip({.src_dir = src_dir, in Zip() 268 return Zip({.src_dir = src_dir, in ZipFiles()
|
H A D | zip_unittest.cc | 343 // and zip::Zip() the clock can advance a bit, hence the use of EXPECT_GE. in TestTimeStamp() 354 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true)); in TestTimeStamp() 1010 TEST_F(ZipTest, Zip) { in TEST_F() 1017 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/true)); in TEST_F() 1028 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/false)); in TEST_F() 1043 EXPECT_TRUE(zip::Zip(src_dir_russian, zip_file, true)); in TEST_F() 1126 ASSERT_TRUE(zip::Zip(params)); in TEST_F() 1171 EXPECT_TRUE(zip::Zip({.src_dir = src_dir, in TEST_F() 1208 EXPECT_TRUE(zip::Zip({.src_dir = src_dir, in TEST_F() 1233 EXPECT_TRUE(zip::Zip({ in TEST_F() [all...] |
H A D | zip.h | 31 // Abstraction for file access operation required by Zip(). 142 // Zip files specified into a ZIP archives. The source files and ZIP destination 144 bool Zip(const ZipParams& params); 146 // Zip the contents of src_dir into dest_file. src_path must be a directory. 158 bool Zip(const base::FilePath& src_dir,
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | zip.cc | 117 bool Zip(const ZipParams& params) { in Zip() function 246 return Zip(params); in ZipWithFilterCallback() 249 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, in Zip() function 267 return Zip(params); in ZipFiles()
|
H A D | zip_unittest.cc | 267 // and zip::Zip() the clock can advance a bit, hence the use of EXPECT_GE. in TestTimeStamp() 278 EXPECT_TRUE(zip::Zip(src_dir, zip_file, true)); in TestTimeStamp() 412 TEST_F(ZipTest, Zip) { in TEST_F() 421 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/true)); in TEST_F() 434 EXPECT_TRUE(zip::Zip(src_dir, zip_file, /*include_hidden_files=*/false)); in TEST_F() 451 EXPECT_TRUE(zip::Zip(src_dir_russian, zip_file, true)); in TEST_F() 540 ASSERT_TRUE(zip::Zip(params)); in TEST_F()
|
H A D | zip.h | 24 // Abstraction for file access operation required by Zip(). 119 // Zip files specified into a ZIP archives. The source files and ZIP destination 121 bool Zip(const ZipParams& params); 123 // Zip the contents of src_dir into dest_file. src_path must be a directory. 136 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
|
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
H A D | 114-paste-integer-tokens.c | 6 6: Zip code for Nortonville, KS: PASTE5(__LINE__, __LINE__, __FILE__, __LINE__, __FILE__)
|
/third_party/lzma/CPP/7zip/ |
H A D | 7zip.mak | 126 $(ZIP_OBJS): ../../Archive/Zip/$(*B).cpp
228 {../../Archive/Zip}.cpp{$O}.obj::
|
H A D | 7zip_gcc.mak | 642 $O/ZipAddCommon.o: ../../Archive/Zip/ZipAddCommon.cpp
644 $O/ZipHandler.o: ../../Archive/Zip/ZipHandler.cpp
646 $O/ZipHandlerOut.o: ../../Archive/Zip/ZipHandlerOut.cpp
648 $O/ZipIn.o: ../../Archive/Zip/ZipIn.cpp
650 $O/ZipItem.o: ../../Archive/Zip/ZipItem.cpp
652 $O/ZipOut.o: ../../Archive/Zip/ZipOut.cpp
654 $O/ZipUpdate.o: ../../Archive/Zip/ZipUpdate.cpp
656 $O/ZipRegister.o: ../../Archive/Zip/ZipRegister.cpp
|
/third_party/node/deps/v8/src/compiler/ |
H A D | persistent-map.h | 29 // - Zip: O(n) 81 for (std::tuple<Key, Value, Value> triple : Zip(other)) { in operator ==() 115 ZipIterable Zip(const PersistentMap& other) const { return {*this, other}; } in Zip() function
|
H A D | store-store-elimination.cc | 526 for (auto triple : set()->Zip(*other.set())) { in Intersect()
|
/third_party/node/deps/v8/src/execution/arm/ |
H A D | simulator-arm.cc | 4014 void Zip(Simulator* simulator, int Vd, int Vm) { in Zip() function 4708 Zip<uint8_t, kSimd128Size>(this, Vd, Vm); in DecodeAdvancedSIMDTwoOrThreeRegisters() 4711 Zip<uint16_t, kSimd128Size>(this, Vd, Vm); in DecodeAdvancedSIMDTwoOrThreeRegisters() 4714 Zip<uint32_t, kSimd128Size>(this, Vd, Vm); in DecodeAdvancedSIMDTwoOrThreeRegisters() 4742 Zip<uint8_t, kDoubleSize>(this, Vd, Vm); in DecodeAdvancedSIMDTwoOrThreeRegisters() 4745 Zip<uint16_t, kDoubleSize>(this, Vd, Vm); in DecodeAdvancedSIMDTwoOrThreeRegisters()
|