/third_party/python/Lib/distutils/tests/ |
D | test_archive_util.py | 111 base_name = os.path.join(tmpdir2, target_name) 115 make_tarball(splitdrive(base_name)[1], 'dist', **kwargs) 118 tarball = base_name + suffix 153 base_name = os.path.join(tmpdir2, 'archive') 157 make_tarball(base_name, 'dist') 162 tarball = base_name + '.tar.gz' 183 base_name = os.path.join(tmpdir2, 'archive') 187 make_tarball(base_name, 'dist', compress=None) 190 tarball = base_name + '.tar' 194 base_name = os.path.join(tmpdir2, 'archive') [all …]
|
/third_party/boost/libs/safe_numerics/ |
D | CMakeLists.txt | 87 function(test_run_pass base_name ) 88 message(STATUS ${base_name}) 89 add_executable(${base_name} ${base_name}.cpp) 90 add_test(NAME ${base_name} COMMAND ${base_name}) 93 function(test_compile_pass base_name ) 94 message(STATUS ${base_name} - compile only) 95 add_library(${base_name} OBJECT ${base_name}) 98 function(test_compile_fail base_name ) 99 message(STATUS ${base_name}) 101 add_executable(${base_name} ${base_name}.cpp) [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBPropertiesExporter.java | 51 …String base_name = file.getName(); // The base name of the files we will write in export() local 52 if (base_name == null || base_name.equals("")) base_name = rbm.getBaseClass(); in export() 53 if (base_name.toLowerCase().endsWith(".properties")) in export() 54 base_name = base_name.substring(0,base_name.length()-11); in export() 60 String base_enc = base_name; in export()
|
D | RBICUExporter.java | 59 …String base_name = file.getName(); // The base name of the files we will write in export() local 60 if (base_name == null || base_name.equals("")) { in export() 61 base_name = rbm.getBaseClass(); in export() 63 if (base_name.toLowerCase().endsWith(".properties")) { in export() 64 base_name = base_name.substring(0,base_name.length()-11); in export() 70 String base_enc = base_name; in export()
|
D | RBJavaExporter.java | 64 …String base_name = file.getName(); // The base name of the files we will write in export() local 65 if (base_name == null || base_name.equals("")) base_name = rbm.getBaseClass(); in export() 66 if (base_name.endsWith(".java")) base_name = base_name.substring(0,base_name.length()-5); in export() 71 String base_enc = base_name; in export()
|
D | RBTMXExporter.java | 143 …String base_name = file.getName(); // The base name of the files we will write 144 if (base_name == null || base_name.equals("")) base_name = rbm.getBaseClass(); 145 if (base_name.endsWith(".tmx")) base_name = base_name.substring(0,base_name.length()-4); 147 String file_name = base_name + ".tmx";
|
D | RBxliffExporter.java | 173 … String base_name = file.getName(); // The base name of the files we will write in export() local 174 if (base_name == null || base_name.equals("")) in export() 175 base_name = rbm.getBaseClass(); in export() 176 if (base_name.endsWith(".xlf")) in export() 177 base_name = base_name.substring(0,base_name.length()-4); in export() 179 String file_name = base_name + ".xlf"; in export() 184 exportFile(rbm, directory, base_name, (Bundle)bundleIter.nextElement()); in export() 246 private void exportFile(RBManager rbm, File directory, String base_name, Bundle main_bundle) in exportFile() argument 371 new FileOutputStream(new File(directory, base_name + suffix + ".xlf")), "UTF-8"); in exportFile()
|
/third_party/curl/docs/examples/ |
D | rtsp.c | 195 char *base_name = NULL; in main() local 204 base_name = strrchr(argv[0], '/'); in main() 205 if(!base_name) { in main() 206 base_name = strrchr(argv[0], '\\'); in main() 208 if(!base_name) { in main() 209 base_name = argv[0]; in main() 212 base_name++; in main() 214 printf("Usage: %s url [transport]\n", base_name); in main() 219 printf("Example: %s rtsp://192.168.0.2/media/video1\n\n", base_name); in main()
|
/third_party/libsoup/tests/ |
D | sniffing-test.c | 53 char *base_name = g_path_get_basename (path); in server_callback() local 55 response = soup_test_load_resource (base_name, &error); in server_callback() 57 g_free (base_name); in server_callback() 67 char *base_name = g_path_get_basename (path); in server_callback() local 69 response = soup_test_load_resource (base_name, &error); in server_callback() 71 g_free (base_name); in server_callback() 78 char *base_name = g_path_get_basename (path); in server_callback() local 80 response = soup_test_load_resource (base_name, &error); in server_callback() 82 g_free (base_name); in server_callback() 92 char *base_name = g_path_get_basename (path); in server_callback() local [all …]
|
/third_party/python/Lib/distutils/ |
D | archive_util.py | 55 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, argument 83 archive_name = base_name + '.tar' 127 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): argument 136 zip_filename = base_name + ".zip" 206 def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, argument 227 base_name = os.path.abspath(base_name) 250 filename = func(base_name, base_dir, **kwargs)
|
/third_party/gettext/gettext-runtime/intl/ |
D | setlocale.c | 1409 const char *base_name; in libintl_setlocale() local 1423 base_name = in libintl_setlocale() 1425 if (base_name == NULL) in libintl_setlocale() 1426 base_name = gl_locale_name_default (); in libintl_setlocale() 1428 if (setlocale_unixlike (LC_ALL, base_name) != NULL) in libintl_setlocale() 1438 base_name = "C"; in libintl_setlocale() 1439 if (setlocale_unixlike (LC_ALL, base_name) == NULL) in libintl_setlocale() 1447 if (strchr (base_name, '.') != NULL in libintl_setlocale() 1463 if (strcmp (name, base_name) != 0 in libintl_setlocale() 1686 const char *base_name; [all …]
|
/third_party/libphonenumber/tools/cpp/src/cpp-build/ |
D | generate_geocoding_data.cc | 288 void WriteCppHeader(const string& base_name, FILE* output) { in WriteCppHeader() argument 290 base_name.c_str()); in WriteCppHeader() 561 bool WriteSource(const string& data_path, const string& base_name, in WriteSource() argument 564 WriteCppHeader(base_name, output); in WriteSource() 645 string base_name = source_path; in Main() local 646 if (base_name.rfind('/') != string::npos) { in Main() 647 base_name = base_name.substr(base_name.rfind('/') + 1); in Main() 649 base_name = base_name.substr(0, base_name.rfind('.')); in Main() 657 if (!WriteSource(root_path, base_name, accessor_prefix, in Main()
|
/third_party/glib/gio/xdgmime/ |
D | xdgmimeint.c | 139 const char *base_name; in _xdg_get_base_name() local 144 base_name = strrchr (file_name, '/'); in _xdg_get_base_name() 146 if (base_name == NULL) in _xdg_get_base_name() 149 return base_name + 1; in _xdg_get_base_name()
|
/third_party/e2fsprogs/lib/et/ |
D | et_h.awk | 77 base_name = $2 80 base_name = table_name 82 for(i=1; i<=length(base_name); i++) { 83 table_number=(table_number*char_shift)+c2n[substr(base_name,i,1)]
|
D | et_c.awk | 77 base_name = $2 80 base_name = table_name 82 for(i=1; i<=length(base_name); i++) { 83 table_number=(table_number*char_shift)+c2n[substr(base_name,i,1)]
|
/third_party/mesa3d/src/gtest/src/ |
D | gtest-filepath.cc | 180 const FilePath& base_name, in MakeFileName() argument 185 file = base_name.string() + "." + extension; in MakeFileName() 187 file = base_name.string() + "_" + StreamableToString(number) in MakeFileName() 280 const FilePath& base_name, in GenerateUniqueFileName() argument 285 full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); in GenerateUniqueFileName()
|
/third_party/googletest/googletest/src/ |
D | gtest-filepath.cc | 181 const FilePath& base_name, in MakeFileName() argument 186 file = base_name.string() + "." + extension; in MakeFileName() 188 file = base_name.string() + "_" + StreamableToString(number) in MakeFileName() 281 const FilePath& base_name, in GenerateUniqueFileName() argument 286 full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); in GenerateUniqueFileName()
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
D | objectivec_primitive_field.cc | 175 string base_name = PrimitiveArrayTypeName(descriptor); in RepeatedPrimitiveFieldGenerator() local 176 if (base_name.length()) { in RepeatedPrimitiveFieldGenerator() 177 variables_["array_storage_type"] = "GPB" + base_name + "Array"; in RepeatedPrimitiveFieldGenerator()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
D | namer.cc | 107 std::string Namer::FindUnusedDerivedName(const std::string& base_name) const { in FindUnusedDerivedName() 113 new_name_stream << base_name; in FindUnusedDerivedName() 123 std::string Namer::MakeDerivedName(const std::string& base_name) { in MakeDerivedName() argument 124 auto result = FindUnusedDerivedName(base_name); in MakeDerivedName()
|
/third_party/mindspore/mindspore/lite/tools/optimizer/fusion/ |
D | tf_bidirection_gru_fusion.h | 50 const std::string &base_name, int var_offset) const; 53 const std::string &base_name); 79 … const AnfNodePtr &bw_init_state, const std::string &base_name);
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-filepath.h | 91 const FilePath& base_name, 110 const FilePath& base_name,
|
/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-filepath.h | 91 const FilePath& base_name, 110 const FilePath& base_name,
|
/third_party/unity/auto/ |
D | parse_output.rb | 92 base_name = test_name[test_name.size - 1].split('.')[0] 95 return unless base_name.to_s != @test_suite.to_s 97 @test_suite = base_name
|
/third_party/boost/tools/build/src/engine/ |
D | class.cpp | 61 OBJECT * base_name; member 77 string_append ( qualified_name, object_str( d->base_name ) ); in import_base_rule() 113 d.base_name = base; in import_base_rules()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLMain.cpp | 15 static SkSL::String base_name(const char* fpPath, const char* prefix, const char* suffix) { in base_name() function 123 if (!program || !compiler.toH(*program, base_name(argv[1], "Gr", ".fp"), out)) { in main() 140 if (!program || !compiler.toCPP(*program, base_name(argv[1], "Gr", ".fp"), out)) { in main()
|