Home
last modified time | relevance | path

Searched refs:file_str (Results 1 – 25 of 274) sorted by relevance

1234567891011

/dports/misc/freeguide/freeguide-0.11.1/xmltv/share/perl5/XMLTV/
H A DValidateFile.pm335 my $file_str = read_file($filename);
340 if( $file_str =~ m/[$unusual]+/ ) {
350 if( $file_str =~ m/[$unused]+/ ) {
366 my $file_str = read_file($filename);
369 if( $file_str =~ m/\xEF\xBF\xBD]/ ) {
378 if( $file_str =~ m/\xC3\xAF\xC2\xBF\xC2\xBD/ ) {
387 if( $file_str =~ m/\xC2[\x80-\x9F]/ ) {
396 if( $file_str =~ m/[\xC0-\xC1]/ ) {
405 if( $file_str =~ m/[\xF5-\xFF]/ ) {
447 my $file_str = read_file($filename);
[all …]
/dports/textproc/p5-xmltv/xmltv-0.5.70/lib/
H A DValidateFile.pm335 my $file_str = read_file($filename);
340 if( $file_str =~ m/[$unusual]+/ ) {
350 if( $file_str =~ m/[$unused]+/ ) {
366 my $file_str = read_file($filename);
369 if( $file_str =~ m/\xEF\xBF\xBD]/ ) {
378 if( $file_str =~ m/\xC3\xAF\xC2\xBF\xC2\xBD/ ) {
387 if( $file_str =~ m/\xC2[\x80-\x9F]/ ) {
396 if( $file_str =~ m/[\xC0-\xC1]/ ) {
405 if( $file_str =~ m/[\xF5-\xFF]/ ) {
447 my $file_str = read_file($filename);
[all …]
/dports/dns/opendnssec2/opendnssec-2.1.10/common/
H A Dfile.c49 static const char* file_str = "file"; variable
93 file_str, strerror(errno)); in ods_fgetc()
173 ods_log_deeebug("[%s] open file %s%s file=%s mode=%s", file_str, in ods_fopen()
188 "failed", file_str, (dir?dir:""), (dir?"/":""), in ods_fopen()
207 file_str, openf[0]?openf:"(null)", in ods_fopen()
292 file_str, file); in ods_file_lastmodified()
514 file_str, file, (signed long) uid, (signed long) gid); in ods_chown()
521 file_str, dir, (signed long) uid, (signed long) gid); in ods_chown()
523 ods_log_error("[%s] chown() %s failed: %s", file_str, in ods_chown()
552 file_str); in ods_str_list_add()
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/command_lib/dataproc/jobs/
H A Dbase.py46 def _GetStagedFile(self, file_str): argument
48 drive, _ = os.path.splitdrive(file_str)
49 uri = six.moves.urllib.parse.urlsplit(file_str, allow_fragments=False)
56 return file_str
58 if not os.path.exists(file_str):
59 raise files.Error('File Not Found: [{0}].'.format(file_str))
68 '- all provided files must be non-local.'.format(file_str))
70 basename = os.path.basename(file_str)
71 self.files_to_stage.append(file_str)
/dports/net-im/profanity/profanity-0.11.1/src/config/
H A Dfiles.c152 GString* file_str = g_string_new(xdg_config); in files_get_config_path() local
153 g_string_append(file_str, "/profanity/"); in files_get_config_path()
154 g_string_append(file_str, config_base); in files_get_config_path()
155 gchar* result = g_strdup(file_str->str); in files_get_config_path()
157 g_string_free(file_str, TRUE); in files_get_config_path()
166 GString* file_str = g_string_new(xdg_data); in files_get_data_path() local
167 g_string_append(file_str, "/profanity/"); in files_get_data_path()
168 g_string_append(file_str, data_base); in files_get_data_path()
169 gchar* result = g_strdup(file_str->str); in files_get_data_path()
171 g_string_free(file_str, TRUE); in files_get_data_path()
/dports/security/picosha2/PicoSHA2-1.0.0-23-gb699e6c/test/
H A Dtest.cpp208 std::string file_str((std::istreambuf_iterator<char>(ifs)), in test()
211 std::size_t block_size = file_str.length()/10; in test()
212 for(i = 0; i+block_size <= file_str.length(); i+=block_size){ in test()
213 hasher.process(file_str.begin()+i, file_str.begin()+i+block_size); in test()
215 hasher.process(file_str.begin()+i, file_str.end()); in test()
221 picosha2::hash256_hex_string(file_str.begin(), file_str.end(), hex_string); in test()
229 std::string file_str((std::istreambuf_iterator<char>(ifs)), in test()
232 std::size_t block_size = file_str.length()/10; in test()
233 for(i = 0; i+block_size <= file_str.length(); i+=block_size){ in test()
234 hasher.process(file_str.begin()+i, file_str.begin()+i+block_size); in test()
[all …]
/dports/audio/mixxx/mixxx-2.3.0/src/library/
H A Dparserm3u.cpp111 bool ParserM3u::writeM3UFile(const QString &file_str, const QList<QString> &items, bool useRelative… in writeM3UFile() argument
112 return writeM3UFile(file_str, items, useRelativePath, false); in writeM3UFile()
115 bool ParserM3u::writeM3U8File(const QString &file_str, const QList<QString> &items, bool useRelativ… in writeM3U8File() argument
116 return writeM3UFile(file_str, items, useRelativePath, true); in writeM3U8File()
119 bool ParserM3u::writeM3UFile(const QString &file_str, const QList<QString> &items, bool useRelative… in writeM3UFile() argument
147 QFile file(file_str); in writeM3UFile()
151 tr("Could not create file") + " " + file_str); in writeM3UFile()
156 QString base = file_str.section('/', 0, -2); in writeM3UFile()
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Darista_pyeapi.py510 file_str = __salt__["cp.get_file_str"](config_file, saltenv=saltenv)
511 if file_str is False:
514 log.debug(file_str)
518 file_str = "\n".join(commands)
521 file_str = __salt__["file.apply_template_on_contents"](
522 file_str, template_engine, context, defaults, saltenv
525 log.debug(file_str)
527 commands = [line for line in file_str.splitlines() if line.strip()]
H A Dnxos_api.py401 file_str = __salt__["cp.get_file_str"](config_file, saltenv=saltenv)
402 if file_str is False:
407 file_str = "\n".join(commands)
410 file_str = __salt__["file.apply_template_on_contents"](
411 file_str, template_engine, context, defaults, saltenv
414 commands = [line for line in file_str.splitlines() if line.strip()]
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/systems/base/
H A Dvoice_cache.cc93 string file_str = file.string(); in FindArchive() local
94 if (iends_with(file_str, "ovk")) { in FindArchive()
96 } else if (iends_with(file_str, "nwk")) { in FindArchive()
98 } else if (iends_with(file_str, "koe")) { in FindArchive()
116 string file_str = file.string(); in FindUnpackedSample() local
118 if (iends_with(file_str, "ogg")) { in FindUnpackedSample()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/core/util/
H A DCaseSensitiveFileMap.java87 private String file_str; field in wrapper
94 file_str = file.toString(); in wrapper()
109 return( file_str.equals(((wrapper)other).file_str )); in equals()
118 return( file_str.hashCode()); in hashCode()
/dports/biology/gemma/GEMMA-0.98.3/src/
H A Dparam.cpp115 string file_str; in ReadFiles() local
1260 string file_str; in ReadGenotypes() local
1280 string file_str; in ReadGenotypes() local
1299 string file_str; in CalcKin() local
1719 string file_str; in CalcS() local
1814 string file_str; in WriteVector() local
1816 file_str += "."; in WriteVector()
1846 file_str += "."; in WriteVar()
1885 string file_str; in WriteMatrix() local
1887 file_str += "."; in WriteMatrix()
[all …]
/dports/sysutils/cdrdao/cdrdao-1.2.4/pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL};
66 void p_stdio(void) { file_str[numfiles++] = NULL;}
67 void p_file(char *s) { file_str[numfiles++] = s;}
89 void p_stdio() { file_str[numfiles++] = NULL;}
90 void p_file(s) char *s; { file_str[numfiles++] = s;}
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/devel/cccc/cccc-3.1.6/pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
208 input_stream = read_stream(file_str[0]);
213 if ( file_str[1]!=NULL ) {
220 output_stream = write_stream(file_str[1]);
/dports/sysutils/edk2/edk2-edk2-stable202102/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Dmain.c35 char *file_str[2] = {NULL, NULL}; variable
66 void p_stdio(void) { file_str[numfiles++] = NULL;} in p_stdio()
67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file()
89 void p_stdio() { file_str[numfiles++] = NULL;} in p_stdio()
90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file()
211 input_stream = read_stream(file_str[0]);
216 if ( file_str[1]!=NULL ) {
223 output_stream = write_stream(file_str[1]);
/dports/print/tex-xetex/texlive-20150521-source/texk/web2c/uptexdir/
H A Dkanji.c407 void init_kanji (const_string file_str, const_string internal_str) in init_kanji() argument
409 if (!set_enc_string (file_str, internal_str)) { in init_kanji()
411 file_str ? file_str : "NULL", in init_kanji()
417 void init_default_kanji (const_string file_str, const_string internal_str) in init_default_kanji() argument
423 init_kanji (file_str, internal_str); in init_default_kanji()

1234567891011