/external/sfntly/cpp/src/sample/chromium/ |
D | chrome_subsetter.cc | 62 bool SaveFile(const char* output_file_path, const unsigned char* output_buffer, in SaveFile() function 128 int result = SaveFile(argv[2], output_buffer, output_length) ? 1 : 0; in main()
|
/external/flatbuffers/src/ |
D | idl_gen_grpc.cpp | 278 if (!flatbuffers::SaveFile(filename.c_str(), output, false)) return false; in generate() 326 return flatbuffers::SaveFile((path + file_name + ".grpc.fb.h").c_str(), in GenerateCppGRPC() 328 flatbuffers::SaveFile((path + file_name + ".grpc.fb.cc").c_str(), in GenerateCppGRPC() 350 if (!flatbuffers::SaveFile(filename.c_str(), output, false)) return false; in generate()
|
D | idl_gen_fbs.cpp | 135 return SaveFile((path + file_name + ".fbs").c_str(), in GenerateFBS()
|
D | idl_gen_json_schema.cpp | 196 return SaveFile(file_path.c_str(), final_code, false); in generate()
|
D | util.cpp | 112 bool SaveFile(const char *name, const char *buf, size_t len, bool binary) { in SaveFile() function
|
D | idl_gen_python.cpp | 712 SaveFile(init_py_filename.c_str(), "", false); in SaveType() 720 return SaveFile(filename.c_str(), code, false); in SaveType()
|
D | idl_gen_text.cpp | 292 return flatbuffers::SaveFile(TextFileName(path, file_name).c_str(), text, in GenerateTextFile()
|
D | idl_gen_go.cpp | 107 return SaveFile(filename.c_str(), code, false); in generate() 825 return SaveFile(filename.c_str(), code, false); in SaveType()
|
D | idl_gen_lobster.cpp | 356 return SaveFile((path_ + file_name_ + "_generated.lobster").c_str(), in generate()
|
D | idl_gen_general.cpp | 239 return SaveFile(filename.c_str(), code, false); in SaveType() 1572 flatbuffers::SaveFile( in GenerateBinary()
|
D | idl_gen_lua.cpp | 715 return SaveFile(filename.c_str(), code, false); in SaveType()
|
D | idl_gen_dart.cpp | 95 if (!SaveFile( in generate()
|
/external/zopfli/src/zopfli/ |
D | zopfli_bin.c | 71 static void SaveFile(const char* filename, in SaveFile() function 99 SaveFile(outfilename, out, outsize); in CompressFile()
|
/external/flatbuffers/include/flatbuffers/ |
D | util.h | 419 bool SaveFile(const char *name, const char *buf, size_t len, bool binary); 425 inline bool SaveFile(const char *name, const std::string &buf, bool binary) { in SaveFile() function 426 return SaveFile(name, buf.c_str(), buf.size(), binary); in SaveFile()
|
/external/tinyxml2/ |
D | xmltest.cpp | 524 doc->SaveFile( "./resources/out/pretty.xml" ); in main() 526 doc->SaveFile( "./resources/out/compact.xml", true ); in main() 539 doc.SaveFile( "resources/out/dreamout.xml" ); in main() 688 doc.SaveFile( "resources/out/utf8testout.xml" ); in main() 1132 doc.SaveFile( "resources/out/test7.xml" ); in main() 1705 doc.SaveFile( "resources/bomtest.xml" ); in main() 1929 doc.SaveFile( "./no/such/path/pretty.xml" ); in main() 1931 doc.SaveFile( "./resources/out/compact.xml", true ); in main()
|
D | tinyxml2.h | 1714 XMLError SaveFile( const char* filename, bool compact = false ); 1723 XMLError SaveFile( FILE* fp, bool compact = false );
|
D | tinyxml2.cpp | 2255 XMLError XMLDocument::SaveFile( const char* filename, bool compact ) in SaveFile() function in tinyxml2::XMLDocument 2268 SaveFile(fp, compact); in SaveFile() 2274 XMLError XMLDocument::SaveFile( FILE* fp, bool compact ) in SaveFile() function in tinyxml2::XMLDocument
|
D | readme.md | 191 doc.SaveFile( "foo.xml" );
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 1417 bool SaveFile() const; 1421 bool SaveFile( const char * filename ) const; 1429 bool SaveFile( FILE* ) const; 1436 bool SaveFile( const std::string& filename ) const ///< STL std::string version. in SaveFile() function 1438 return SaveFile( filename.c_str() ); in SaveFile()
|
D | tinyxml.cpp | 960 bool TiXmlDocument::SaveFile() const in SaveFile() function in TiXmlDocument 962 return SaveFile( Value() ); in SaveFile() 1084 bool TiXmlDocument::SaveFile( const char * filename ) const in SaveFile() function in TiXmlDocument 1090 bool result = SaveFile( fp ); in SaveFile() 1098 bool TiXmlDocument::SaveFile( FILE* fp ) const in SaveFile() function in TiXmlDocument
|
/external/tinyxml/ |
D | tinyxml.h | 1245 bool SaveFile() const; 1249 bool SaveFile( const char * filename ) const; 1257 bool SaveFile( const std::string& filename ) const ///< STL std::string version. in SaveFile() function 1260 return ( f.buffer && SaveFile( f.buffer )); in SaveFile()
|
D | xmltest.cpp | 134 doc.SaveFile(); in main() 535 doc.SaveFile( "utf8testout.xml" ); in main() 874 doc.SaveFile( "test7.xml" ); in main()
|
D | tinyxml.cpp | 947 bool TiXmlDocument::SaveFile() const in SaveFile() function in TiXmlDocument 952 if ( buf.buffer && SaveFile( buf.buffer ) ) in SaveFile() 1086 bool TiXmlDocument::SaveFile( const char * filename ) const in SaveFile() function in TiXmlDocument
|
/external/syzkaller/pkg/config/ |
D | config.go | 37 func SaveFile(filename string, cfg interface{}) error { func
|
/external/syzkaller/syz-ci/ |
D | manager.go | 277 if err := config.SaveFile(filepath.Join(tmpDir, "tag"), info); err != nil { 465 if err := config.SaveFile(configFile, mgrcfg); err != nil {
|