Home
last modified time | relevance | path

Searched refs:tag_path (Results 1 – 25 of 34) sorted by relevance

12

/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmdata/apps/
H A Dmdfdsman.cc257 rpos=tag_path.size()-1; in splitTagPath()
259 if (tag_path[rpos]==')') in splitTagPath()
263 if (tag_path[lpos]!='(') in splitTagPath()
269 tag_path.erase(lpos,tag_path.length()-lpos); in splitTagPath()
271 if ( !tag_path.empty() && (tag_path[tag_path.length()-1]=='.')) in splitTagPath()
272 tag_path.erase(tag_path.length()-1,1); in splitTagPath()
281 while ( (lpos>0) && (((tag_path[lpos] >= 'a')&&(tag_path[lpos] <= 'z')) || in splitTagPath()
282 ((tag_path[lpos] >= 'A')&&(tag_path[lpos] <= 'Z')) || in splitTagPath()
283 ((tag_path[lpos] >= '0')&&(tag_path[lpos] <= '9'))) in splitTagPath()
287 tag_path.erase(lpos,tag_path.length()-lpos); in splitTagPath()
[all …]
H A Dmdfdsman.h82 OFCondition modifyOrInsertPath(OFString tag_path,
104 OFCondition modifyOrInsertFromFile(OFString tag_path,
121 OFCondition modifyAllTags(OFString tag_path,
135 OFCondition deleteTag(OFString tag_path,
H A Dmdfconen.cc388 OFString option_value, tag_path, tag_value; in parseCommandLine() local
418 splitPathAndValue(option_value, tag_path, tag_value); in parseCommandLine()
419 aJob.path = tag_path; in parseCommandLine()
/dports/devel/pijul/pijul-1.0.0.a55/src/commands/
H A Dtag.rs87 let mut tag_path = repo.path.join(libpijul::DOT_DIR); in run() localVariable
88 tag_path.push("tags"); in run()
89 std::fs::create_dir_all(&tag_path)?; in run()
91 let mut temp_path = tag_path.clone(); in run()
98 std::fs::create_dir_all(tag_path.parent().unwrap())?; in run()
99 std::fs::rename(&temp_path, &tag_path)?; in run()
110 let mut tag_path = repo.path.join(libpijul::DOT_DIR); in run() localVariable
111 tag_path.push("tags"); in run()
116 super::find_hash(&mut tag_path, &tag)? in run()
129 let f = libpijul::tag::OpenTagFile::open(&tag_path)?; in run()
[all …]
/dports/devel/svk/SVK-v2.2.3/lib/SVK/
H A DProject.pm261 my ($project_name, $trunk_path, $branch_path, $tag_path) =
272 tag_location => $tag_path,
283 for my $_path ($trunk_path, $branch_path, $tag_path) {
302 my ($trunk_path, $branch_path, $tag_path);
317 ($trunk_path, $branch_path, $tag_path) =
320 $tag_path = '' if $result == 2;
335 ($trunk_path, $branch_path, $tag_path) =
343 $tag_path = '' if $result == 2;
396 sub tag_path { subroutine
399 $tag_path =
[all …]
/dports/textproc/translate-toolkit/translate-toolkit-3.5.1/translate/storage/
H A Dhtml.py150 self.tag_path = []
190 ".".join(self.tag_path),
348 ".".join(self.tag_path) + "[" + attrname + "]",
382 if self.tag_path and self.tag_path[-1] in self.EMPTY_HTML_ELEMENTS:
383 self.tag_path.pop()
397 self.tag_path.append(tag)
414 popped = self.tag_path.pop()
420 popped = self.tag_path.pop()
431 if any(t in self.TRANSLATABLE_ELEMENTS for t in self.tag_path):
436 self.tag_path.append(tag)
[all …]
/dports/textproc/p5-Lingua-EN-Tagger/Lingua-EN-Tagger-0.31/
H A DMakefile.PL41 my $tag_path = File::Spec->catfile( $lex_dir, 'pos_tags.hash' );
43 unless( -f $word_path and -f $tag_path ){
49 nstore \%_HMM, $tag_path;
52 if( -f $word_path and -f $tag_path ){
H A DTagger.pm22 our ($lexpath, $word_path, $tag_path);
47 $tag_path = File::Spec->catfile($lexpath, 'pos_tags.hash');
151 tag_path => $tag_path,
/dports/databases/mantis/mantisbt-2.25.2/plugins/SourceSVN/
H A DSourceSVN.php90 $t_tag_path = isset( $p_repo->info['tag_path'] ) ? $p_repo->info['tag_path'] : '';
128 <td class="category"><?php echo plugin_lang_get( 'tag_path' ) ?></td>
151 $p_repo->info['tag_path'] = gpc_get_string( 'tag_path' );
/dports/deskutils/calibre/calibre-src-5.34.0/src/pyj/book_list/
H A Dsearch.pyj67 path = path or state.tag_path
76 if state.tag_path and state.tag_path.length:
77 …brary_id': current_library_id(), 'vl': current_virtual_library(), 'tag_path': list(state.tag_path)}
180 state.tag_path.append(i)
314 if not state.tag_path.length:
322 state.tag_path = state.tag_path[:i+1]
336 for i, index in enumerate(state.tag_path):
347 # If a saved tag_path is no longer valid
348 state.tag_path = []
392 state.tag_path = list(last_accepted_search.tag_path)
[all …]
/dports/devel/svk/SVK-v2.2.3/lib/SVK/Command/
H A DBranch.pm204 $proj->tag_path($branch_name);
330 $proj->tag_path($self->{fromtag}) :
614 $dst = $self->arg_depotpath($proj->tag_path($dst_bname));
624 $proj->tag_path($self->{fromtag}) :
655 $src = $self->arg_depotpath($proj->tag_path($src_bname));
867 $tag_path = '/'.$proj->tag_location;
868 $tag_path =~ s{^/?$preceding_path}{};
903 $tag_path ||= $target->_to_pclass($trunk_path)->parent->subdir('tags');
910 $tag_path = $ans;
911 $tag_path = '' if lc($ans) eq 's';
[all …]
/dports/lang/py-hy/hy-0.19.0/hy/
H A Dcompleter.py44 self.tag_path = []
50 self.tag_path.append(namespace['__tags__'])
90 for p in self.tag_path:
/dports/lang/ruby26/ruby-2.6.9/lib/rexml/parsers/
H A Dstreamparser.rb24 tag_path = "/" + @tag_stack.join("/")
25 raise ParseException.new("Missing end tag for '#{tag_path}'",
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/module_utils/network/nso/
H A Dnso.py313 self.tag_path = ValueBuilder.PATH_RE.sub('', path)
319 if self.tag_path in self.deps:
320 self.deps.remove(self.tag_path)
438 def get_node(tag_path): argument
440 if m.v.tag_path == tag_path), None)
443 visited.add(n.v.tag_path)
469 if m.v.tag_path in n.v.deps:
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/cisco/nso/plugins/module_utils/
H A Dnso.py323 self.tag_path = ValueBuilder.PATH_RE.sub('', path)
329 if self.tag_path in self.deps:
330 self.deps.remove(self.tag_path)
448 def get_node(tag_path): argument
450 if m.v.tag_path == tag_path), None)
453 visited.add(n.v.tag_path)
479 if m.v.tag_path in n.v.deps:
/dports/databases/p5-SQL-Translator/SQL-Translator-1.62/lib/SQL/Translator/Parser/XML/
H A DSQLFairy.pm275 my $tag_path = "$thisns$_";
284 elsif ( $found = $xp->find($tag_path,$node) ) {
/dports/security/barnyard2-sguil/barnyard2-2-1.13/src/output-plugins/
H A Dspo_sguil.c73 char *tag_path; member
574 if(num_stoks > 1 && ssd_data->tag_path == NULL) in ParseSguilArgs()
575 ssd_data->tag_path = SnortStrdup(stoks[1]); in ParseSguilArgs()
1223 if (ssd_data->tag_path) in SguilCleanExitFunc()
1224 free(ssd_data->tag_path); in SguilCleanExitFunc()
1256 if (ssd_data->tag_path) in SguilRestartFunc()
1257 free(ssd_data->tag_path); in SguilRestartFunc()
/dports/security/barnyard2/barnyard2-2-1.13/src/output-plugins/
H A Dspo_sguil.c73 char *tag_path; member
574 if(num_stoks > 1 && ssd_data->tag_path == NULL) in ParseSguilArgs()
575 ssd_data->tag_path = SnortStrdup(stoks[1]); in ParseSguilArgs()
1223 if (ssd_data->tag_path) in SguilCleanExitFunc()
1224 free(ssd_data->tag_path); in SguilCleanExitFunc()
1256 if (ssd_data->tag_path) in SguilRestartFunc()
1257 free(ssd_data->tag_path); in SguilRestartFunc()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/helpers/
H A Dtags_helper.rb4 def tag_path(tag) method
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/presenters/
H A Drelease_presenter.rb18 def tag_path method in ReleasePresenter
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libdevcore/
H A DExceptions.h80 using errinfo_path = boost::error_info<struct tag_path, std::string>;
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/io/mhdf/src/
H A Dtags.c157 const char* tag_path, in get_tag_type() argument
174 tag_id = H5Gopen2( group_id, tag_path, H5P_DEFAULT ); in get_tag_type()
176 tag_id = H5Gopen( group_id, tag_path ); in get_tag_type()
181 mhdf_setFail( status, "Failed to open group for tag \"%s\".", tag_path ); in get_tag_type()
193 mhdf_setFail( status, "Failed to open type data for tag \"%s\".", tag_path ); in get_tag_type()
/dports/deskutils/zim/zim-0.74.3/zim/notebook/index/
H A Dtags.py668 tag_path = treepath[:-1]
669 tag_iter = self.get_mytreeiter(tag_path) # recurs
682 mytreepath = tag_path + (offset + i,)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/presenters/
H A Drelease_presenter_spec.rb47 subject { presenter.tag_path }
/dports/net/zebra-server/idzebra-2.0.55/index/
H A Drecgrs.c484 static void index_xpath_attr(char *tag_path, char *name, char *value, in index_xpath_attr() argument
490 wrd->term_buf = tag_path; in index_xpath_attr()
491 wrd->term_len = strlen(tag_path); in index_xpath_attr()
503 wrd->term_buf = tag_path; in index_xpath_attr()
504 wrd->term_len = strlen(tag_path); in index_xpath_attr()

12