Home
last modified time | relevance | path

Searched refs:new_from (Results 1 – 25 of 150) sorted by relevance

123456

/dports/graphics/dia/dia-0.97.3/plug-ins/xslt/
H A Dxslt.c249 fromxsl_t *new_from = g_new(fromxsl_t,1); in read_configuration() local
250 new_from->next = NULL; in read_configuration()
252 new_from->name = (gchar *)xmlGetProp(cur, (const xmlChar *) "name"); in read_configuration()
255 if (!(new_from->name && new_from->xsl)) { in read_configuration()
257 g_free(new_from); in read_configuration()
258 new_from = NULL; in read_configuration()
261 froms = cur_from = new_from; in read_configuration()
267 cur_from->next = new_from; in read_configuration()
268 cur_from = new_from; in read_configuration()
273 xmlFree(new_from->xsl); in read_configuration()
[all …]
/dports/net-im/freetalk/freetalk-4.1/src/
H A Dcallbacks.c127 char *new_from = NULL; in ft_msg_msg_handler() local
166 new_from = g_strdup (from); in ft_msg_msg_handler()
167 item = ft_roster_lookup (new_from); in ft_msg_msg_handler()
177 scm_from_locale_string (new_from), in ft_msg_msg_handler()
188 PRINTF ("%s: %s", new_from, msg_str); in ft_msg_msg_handler()
193 if (new_from) in ft_msg_msg_handler()
194 g_free (new_from); in ft_msg_msg_handler()
/dports/textproc/p5-Text-Xslate/Text-Xslate-3.4.0/t/200_app/
H A D003_runner.t54 $app = Text::Xslate::Runner->new_from(@argv);
62 $app = Text::Xslate::Runner->new_from(@argv);
70 $app = Text::Xslate::Runner->new_from(@argv);
74 Text::Xslate::Runner->new_from('--help')->run();
82 Text::Xslate::Runner->new_from('--version')->run();
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/util/
H A Dalign_range.hpp250 int new_from = max(GetFirstFrom(), r.GetFrom()); in IntersectWith() local
252 if(new_to < new_from) { in IntersectWith()
253 new_to = new_from - 1; in IntersectWith()
258 m_SecondFrom += new_from - GetFirstFrom(); in IntersectWith()
261 m_FirstFrom = new_from; in IntersectWith()
262 m_Length = new_to - new_from + 1; in IntersectWith()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/include/util/
H A Dalign_range.hpp250 int new_from = max(GetFirstFrom(), r.GetFrom()); in IntersectWith() local
252 if(new_to < new_from) { in IntersectWith()
253 new_to = new_from - 1; in IntersectWith()
258 m_SecondFrom += new_from - GetFirstFrom(); in IntersectWith()
261 m_FirstFrom = new_from; in IntersectWith()
262 m_Length = new_to - new_from + 1; in IntersectWith()
/dports/security/zeronet/ZeroNet-0.7.1/src/util/
H A DDiff.py14 for tag, old_from, old_to, new_from, new_to in matcher.get_opcodes():
16 new_line = new[new_from:new_to]
25 new_lines = new[new_from:new_to]
/dports/x11-toolkits/Xmt/xmt400/Xmt/
H A DColorTblCvt.c75 XrmValue new_from; local
100 new_from.addr = (XPointer) value;
101 new_from.size = strlen(value) + 1;
103 &new_from, to, data);
H A DFontListCvt.c94 XrmValue new_from; local
120 new_from.addr = (XPointer) value;
121 new_from.size = strlen(value) + 1;
123 &new_from, to, converter_data);
/dports/editors/yudit/yudit-3.0.7/bin/obselete/
H A Dshifthex.pl13 $new_from = hex(shift);
29 $in = $in + $new_from-$range_from;
H A Dshiftutf8.pl13 $new_from = hex(shift);
35 return sprintf ("&##%u;", $_[0] + $new_from-$range_from);
/dports/net-mgmt/iprange/iprange-1.0.4/
H A Dipset.h84 in_addr_t new_from = ips->netaddrs[ips->entries].addr; in ipset_added_entry() local
93 fprintf(stderr, "%s (%u) - ", ip2str_r(buf, new_from), new_from); in ipset_added_entry()
/dports/devel/ncurses/ncurses-6.3/ncurses/tty/
H A Dhashmap.c177 int new_from; in cost_effective() local
182 new_from = OLDNUM(sp, from); in cost_effective()
183 if (new_from == _NEWINDEX) in cost_effective()
184 new_from = from; in cost_effective()
192 + update_cost(sp, OLDTEXT(sp, new_from), NEWTEXT(sp, from))) in cost_effective()
193 >= ((new_from == from ? update_cost_from_blank(sp, NEWTEXT(sp, from)) in cost_effective()
194 : update_cost(sp, OLDTEXT(sp, new_from), NEWTEXT(sp, from))) in cost_effective()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/hdrhistogram-6.3.4/src/sync/
H A Dmod.rs53 local: Histogram::new_from(&self.local), in clone()
72 let h = Histogram::new_from(&self.local); in drop()
179 let h = Histogram::new_from(&self.local); in shed()
199 let h = Histogram::new_from(&self.local); in deactivate()
382 local: Histogram::new_from(&self.merged), in recorder()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/okd/plugins/modules/
H A Dk8s.py404 new_from = trigger['imageChangeParams'].get('from', {})
407 new_name = new_from.get('name', True)
408 …add_namespace = existing_namespace and 'namespace' not in new_from.keys() and existing_name == new…
/dports/devel/p5-SDL/SDL-2.548/lib/pods/SDL/
H A DSurface.pod24 my $surface2 = SDL::Surface->new_from($surface, 100, 100, 8, 0, 0, 0, 0);
63 =head2 new_from section
65 my $surface = SDL::Surface->new_from(
/dports/textproc/p5-Text-Xslate/Text-Xslate-3.4.0/script/
H A Dxslate5 my $app = Text::Xslate::Runner->new_from(@ARGV);
/dports/audio/ardour6/Ardour-6.8.0/gtk2_ardour/
H A Dgroup_tabs.cc330 Menu *new_from; in add_new_from_items() local
332 new_from = manage (new Menu); in add_new_from_items()
334 MenuList& f = new_from->items (); in add_new_from_items()
339 items.push_back (MenuElem (_("Create New Group From..."), *new_from)); in add_new_from_items()
341 new_from = manage (new Menu); in add_new_from_items()
343 MenuList& f = new_from->items (); in add_new_from_items()
348 items.push_back (MenuElem (_("Create New Group with Master From..."), *new_from)); in add_new_from_items()
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/coregrind/
H A Dpub_core_redir.h76 extern void VG_(redir_add_ifunc_target)( Addr old_from, Addr new_from );
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/coregrind/
H A Dpub_core_redir.h76 extern void VG_(redir_add_ifunc_target)( Addr old_from, Addr new_from );
/dports/devel/pear-Horde_Core/Horde_Core-2.31.14/lib/Horde/Core/Prefs/
H A DUi.php996 $new_from = $identity->getValue('from_addr');
998 empty($new_from)) {
1001 ($current_from != $new_from) &&
1002 !in_array($new_from, $from_addresses)) {
1004 $identity->verifyIdentity($id, empty($current_from) ? $new_from : $current_from);
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/cargo-0.58.0/src/cargo/ops/tree/
H A Dgraph.rs184 let new_from = new_graph.add_node(node); in from_reachable() localVariable
185 remap[index] = Some(new_from); in from_reachable()
190 new_graph.edges[new_from].add_edge(*edge_kind, new_to_index); in from_reachable()
193 new_from in from_reachable()
/dports/lang/rust/rustc-1.58.1-src/src/tools/cargo/src/cargo/ops/tree/
H A Dgraph.rs184 let new_from = new_graph.add_node(node); in from_reachable() localVariable
185 remap[index] = Some(new_from); in from_reachable()
190 new_graph.edges[new_from].add_edge(*edge_kind, new_to_index); in from_reachable()
193 new_from in from_reachable()
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/cargo-0.55.0/src/cargo/ops/tree/
H A Dgraph.rs184 let new_from = new_graph.add_node(node); in from_reachable() localVariable
185 remap[index] = Some(new_from); in from_reachable()
190 new_graph.edges[new_from].add_edge(*edge_kind, new_to_index); in from_reachable()
193 new_from in from_reachable()
/dports/sysutils/exa/exa-0.10.1/cargo-crates/locale-0.2.2/src/linux/
H A Dmod.rs38 pub fn new_from(mask: ::libc::c_int, locale: &str, mut from: Self) -> Result<CLocale> { in new_from() method
340 if let Ok(m) = CLocale::new_from(ffi::LC_NUMERIC_MASK, "en_GB", l) { in mixed_locale()
343 if let Ok(n) = CLocale::new_from(ffi::LC_TIME_MASK, "de_DE", m.clone()) { in mixed_locale()
/dports/audio/lmms/lmms-1.2.2/plugins/audio_file_processor/
H A Daudio_file_processor.cpp1090 f_cnt_t new_from; in zoom() local
1095 new_from = qBound( 0, m_from + step_from, start ); in zoom()
1098 m_to + f_cnt_t( step_to * ( new_from == m_from ? 1 : comp_ratio ) ), in zoom()
1105 new_from = qBound( in zoom()
1112 if( double( new_to - new_from ) / m_sampleBuffer.sampleRate() > 0.05 ) in zoom()
1114 m_from = new_from; in zoom()

123456