Searched refs:actions (Results 1 - 25 of 158) sorted by relevance

1234567

/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dapi.h142 * 'actions' specifies actions and options of the encoding procedure.
197 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen);
222 * 'actions' specifies actions of the decoding procedure.
251 * 'actions' specifies what actions to take when decoding, and is
274 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen);
291 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen,
H A Dres.h142 * 'actions' specifies actions and options of the encoding procedure.
197 idn_res_encodename(idn_resconf_t ctx, idn_action_t actions, const char *from,
223 * 'actions' specifies actions of the decoding procedure.
252 * 'actions' specifies what actions to take when decoding, and is
275 idn_res_decodename(idn_resconf_t ctx, idn_action_t actions, const char *from,
293 idn_res_decodename2(idn_resconf_t ctx, idn_action_t actions, const char *from,
297 * Convert `actions' t
[all...]
/macosx-10.9.5/libunwind-35.3/testsuite/
H A DUnwind_ForcedUnwind.cxx23 static _Unwind_Reason_Code stop_func(int version, _Unwind_Action actions, uint64_t exceptionClass, argument
26 if ( actions & _UA_END_OF_STACK ) {
H A Dpersonality.cxx93 int version, _Unwind_Action actions, uint64_t exceptionClass,
97 _Unwind_Reason_Code result = (*realPersonality)(version, actions, exceptionClass,
101 //fprintf(stderr, "personality(%d, %s, 0x%llX, %p, %p) => %s\n", version, actionString(actions),
115 if ( shouldBe[count].action != actions ) {
116 fprintf(stderr, "count=%d, actions=%s\n", count, actionString(actions));
92 __gxx_personality_v0( int version, _Unwind_Action actions, uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject, _Unwind_Context* context) argument
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dapi.c139 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen) { argument
144 TRACE(("idn_encodename(actions=%s, from=\"%s\")\n",
145 idn__res_actionstostring(actions),
151 r = idn_res_encodename(default_conf, actions, from, to, tolen);
164 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen) { argument
169 TRACE(("idn_decodename(actions=%s, from=\"%s\", tolen=%d)\n",
170 idn__res_actionstostring(actions),
176 r = idn_res_decodename(default_conf, actions, from, to, tolen);
189 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen, argument
195 TRACE(("idn_decodename2(actions
226 mdn_encodename(int actions, const char *from, char *to, size_t tolen) argument
242 mdn_decodename(int actions, const char *from, char *to, size_t tolen) argument
[all...]
H A Dres.c149 static idn_result_t label_rtcheck(idn_resconf_t ctx, idn_action_t actions,
184 idn_res_encodename(idn_resconf_t ctx, idn_action_t actions, const char *from, argument
198 TRACE(("idn_res_encodename(actions=%s, from=\"%s\", tolen=%d)\n",
199 idn__res_actionstostring(actions),
202 if (actions & ~ENCODE_MASK) {
203 WARNING(("idn_res_encodename: invalid actions 0x%x\n",
204 actions));
211 if (!enabled || actions == 0) {
219 if (actions & IDN_ENCODE_QUERY) {
221 actions |
450 idn_res_decodename(idn_resconf_t ctx, idn_action_t actions, const char *from, char *to, size_t tolen) argument
710 idn_res_decodename2(idn_resconf_t ctx, idn_action_t actions, const char *from, char *to, size_t tolen, const char *auxencoding) argument
1599 label_rtcheck(idn_resconf_t ctx, idn_action_t actions, labellist_t label, const unsigned long *original_name) argument
1676 idn__res_actionstostring(idn_action_t actions) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dposix_signals.c84 static struct sigaction actions[NSIG] = {}; variable in typeref:struct:sigaction
91 actions[signum].sa_handler(signum);
102 actions[i].sa_handler = SIG_DFL;
110 *oact = actions[sig];
122 actions[sig] = *act;
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dmap-ynp.el80 Returns the number of actions taken."
81 (let* ((actions 0)
174 (setq actions (1+ actions)))
181 (setq actions (1+ actions)
193 (setq actions (1+ actions))))
198 (setq actions (1+ actions))))))
[all...]
/macosx-10.9.5/CPANInternal-140/Parse-Yapp/lib/Parse/Yapp/
H A DDriver.pm253 my($actions,$act,$stateno);
256 $actions=$$states[$stateno];
267 if (exists($$actions{ACTIONS})) {
276 $act= exists($$actions{ACTIONS}{$$token})
277 ? $$actions{ACTIONS}{$$token}
278 : exists($$actions{DEFAULT})
279 ? $$actions{DEFAULT}
283 $act=$$actions{DEFAULT};
H A DOptions.pm19 # %actions sub refs to execute if option is set with ($self,$value)
65 my(%actions)= (
112 exists($actions{$key})
113 and &{$actions{$key}}($self,$value);
H A DLalr.pm798 my($actions)=$$state{ACTIONS};
801 for my $term ( keys(%$actions) ) {
802 my($act)=$$actions{$term};
881 # Make default reduce actions #
887 my($actions)=$$state{ACTIONS};
890 exists($$actions{''})
892 $$actions{''}[0] = -$$actions{''}[0];
897 exists($$actions{error})
898 and $$actions{erro
[all...]
/macosx-10.9.5/CPANInternal-140/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DDriver.pm253 my($actions,$act,$stateno);
256 $actions=$$states[$stateno];
267 if (exists($$actions{ACTIONS})) {
276 $act= exists($$actions{ACTIONS}{$$token})
277 ? $$actions{ACTIONS}{$$token}
278 : exists($$actions{DEFAULT})
279 ? $$actions{DEFAULT}
283 $act=$$actions{DEFAULT};
H A DOptions.pm19 # %actions sub refs to execute if option is set with ($self,$value)
65 my(%actions)= (
112 exists($actions{$key})
113 and &{$actions{$key}}($self,$value);
H A DLalr.pm798 my($actions)=$$state{ACTIONS};
801 for my $term ( keys(%$actions) ) {
802 my($act)=$$actions{$term};
881 # Make default reduce actions #
887 my($actions)=$$state{ACTIONS};
890 exists($$actions{''})
892 $$actions{''}[0] = -$$actions{''}[0];
897 exists($$actions{error})
898 and $$actions{erro
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/config/
H A DinstallFile.tcl78 set actions ""
87 lappend actions "already installed"
99 lappend actions copied
119 lappend actions "set $attrName to $attr"
129 puts stderr "$dst: [join $actions ", "]"
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/config/
H A DinstallFile.tcl78 set actions ""
87 lappend actions "already installed"
99 lappend actions copied
119 lappend actions "set $attrName to $attr"
129 puts stderr "$dst: [join $actions ", "]"
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/config/
H A DinstallFile.tcl78 set actions ""
87 lappend actions "already installed"
99 lappend actions copied
119 lappend actions "set $attrName to $attr"
129 puts stderr "$dst: [join $actions ", "]"
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Drbbicst.pl167 # for the names of the actions that appeared.
178 if ($actions{$state_action_name[$state]} == 0) {
179 $actions{$state_func_name[$state]} = 1;
255 # Emit the constants for the actions to be performed.
258 foreach $act (sort keys %actions) {
370 # Emit the enum for the actions to be performed.
373 foreach $act (sort keys %actions) {
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dregexcst.pl168 # for the names of the actions that appeared.
179 if ($actions{$state_action_name[$state]} == 0) {
180 $actions{$state_func_name[$state]} = 1;
248 # Emit the enum for the actions to be performed.
251 foreach $act (keys %actions) {
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/tcl/
H A Dmkshow.tcl44 if {![regexp {^([^/]*)/(.*)} $name - name actions]} {
45 set actions ""
47 if {$actions == "" && [info exists fields($name)]} {
48 set actions $fields($name)
50 if {![regexp {^([^:]*):(.*)} $actions - actions format]} {
53 lappend work $name [split $actions ""] $format
128 For a description of all actions specifiers, type 'mkshow -actions'.
137 g set gmt mode for following 'd' and 't' actions
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dmkshow.tcl42 if {![regexp {^([^/]*)/(.*)} $name - name actions]} {
43 set actions ""
45 if {$actions == "" && [info exists fields($name)]} {
46 set actions $fields($name)
48 if {![regexp {^([^:]*):(.*)} $actions - actions format]} {
51 lappend work $name [split $actions ""] $format
126 For a description of all actions specifiers, type 'mkshow -actions'.
135 g set gmt mode for following 'd' and 't' actions
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/include/mdn/
H A Dapi.h62 mdn_encodename(int actions, const char *from, char *to, size_t tolen);
65 mdn_decodename(int actions, const char *from, char *to, size_t tolen);
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/tools/idnconv/
H A Dutil.h59 idn_action_t actions, char *from,
62 idn_action_t actions, char *from,
/macosx-10.9.5/ruby-104/ruby/tool/
H A Dtranscode-tblgen.rb178 actions = actions0.uniq
179 if actions.length == 1
180 actions[0]
182 actions.delete(:nomap0)
183 if actions.length == 1
184 actions[0]
186 raise ArgumentError, "ambiguous actions: #{actions0.inspect}"
192 expand(rects) {|prefix, actions|
193 unambiguous_action(actions)
213 tree = expand(all_rects) {|prefix, actions|
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/mappers/
H A DNWGNUactions94 NLM_NAME = actions
151 $(OBJDIR)/actions.nlm \

Completed in 247 milliseconds

1234567