Searched refs:target (Results 26 - 50 of 2191) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/lisp/eshell/
H A Desh-io.el130 target, the function in the second element will be called.
142 NOTE: /dev/null is handled specially as a virtual target, and should
213 (error "Missing redirection target"))
238 (output-target (eshell-get-target standard-output output-mode))
239 (error-target (eshell-get-target standard-error error-mode)))
240 (aset handles eshell-output-handle (cons output-target 1))
242 (aset handles eshell-error-handle (cons error-target 1))
243 (aset handles eshell-error-handle (cons output-target
[all...]
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dinstall-catman.sh40 target="$mandir/$link.$section"
41 for lncmd in "ln -f $mandir/$base.$section $target" \
42 "ln -s $base.$section $target" \
43 "cp -f $mandir/$base.$section $target"
51 eval target="$catdir/$link.$suffix"
53 for lncmd in "ln -f $source $target" \
54 "ln -fs $source $target" \
55 "cp -f $catdir/$source $target"
64 target="$mandir/$link.$section"
65 eval "echo rm -f $target"
[all...]
/macosx-10.9.5/curl-78.94.1/curl/packages/Linux/RPM/
H A Dmake_curl_rpm41 for target in $targets
44 src_rpm="$target-$version-$release.src.rpm"
50 sed -e 's/^Packager: .*/Packager: $packager_name $packager_email/' $specs_dir/$target.spec > $specs_dir/$target-$version-$arch.spec
53 if ! rpm -ba $specs_dir/$target-$version-$arch.spec
55 echo "error building $target for $arch -- check output above"
58 echo "$target rpm is now in $rpms_dir/$arch"
/macosx-10.9.5/libdispatch-339.92.1/tools/
H A Ddispatch_timers.d37 dispatch$target:libdispatch*.dylib::timer-configure,
38 dispatch$target:libdispatch*.dylib::timer-program,
39 dispatch$target:libdispatch*.dylib::timer-wake,
40 dispatch$target:libdispatch*.dylib::timer-fire /!start/ {
54 dispatch$target:libdispatch*.dylib::timer-configure,
55 dispatch$target:libdispatch*.dylib::timer-program {
65 dispatch$target:libdispatch*.dylib::timer-configure {
83 dispatch$target:libdispatch*.dylib::timer-wake,
84 dispatch$target:libdispatch*.dylib::timer-fire {
/macosx-10.9.5/ICU-511.35/icuSources/samples/datefmt/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/samples/msgfmt/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/samples/translit/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Dustr.h23 #define U_APPEND_CHAR32(c,target,len) { \
26 *(target)++ = (UChar) c; \
31 target[0] = U16_LEAD(c); \
32 target[1] = U16_TRAIL(c); \
34 target +=2; \
38 #define U_APPEND_CHAR32_ONLY(c,target) { \
41 *(target)++ = (UChar) c; \
45 target[0] = U16_LEAD(c); \
46 target[1] = U16_TRAIL(c); \
47 target
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMutationObserverInterestGroup.h45 static PassOwnPtr<MutationObserverInterestGroup> createForChildListMutation(Node* target) argument
47 if (!target->document()->hasMutationObserversOfType(MutationObserver::ChildList))
51 return createIfNeeded(target, MutationObserver::ChildList, oldValueFlag);
54 static PassOwnPtr<MutationObserverInterestGroup> createForCharacterDataMutation(Node* target) argument
56 if (!target->document()->hasMutationObserversOfType(MutationObserver::CharacterData))
59 return createIfNeeded(target, MutationObserver::CharacterData, MutationObserver::CharacterDataOldValue);
62 static PassOwnPtr<MutationObserverInterestGroup> createForAttributesMutation(Node* target, const QualifiedName& attributeName) argument
64 if (!target->document()->hasMutationObserversOfType(MutationObserver::Attributes))
67 return createIfNeeded(target, MutationObserver::Attributes, MutationObserver::AttributeOldValue, &attributeName);
74 static PassOwnPtr<MutationObserverInterestGroup> createIfNeeded(Node* target, MutationObserve
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/functions/
H A Dcoshell.bash83 local target=$2
84 if coshell test -d "$target" ; then
85 target="$target/${1##*/}"
89 uuencode -m "$target" <$1 |coprocess print --stdin
108 local target=$2
109 if test -d "$target" ; then
110 target="$target/${1##*/}"
113 coshell eval uuencode -m "$target" "<" "
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isccc/
H A Dbase64.c49 const char *wordbreak, isccc_region_t *target)
57 isc_buffer_init(&tb, target->rstart, target->rend - target->rstart);
63 target->rstart = isc_buffer_used(&tb);
68 isccc_base64_decode(const char *cstr, isccc_region_t *target) { argument
72 isc_buffer_init(&b, target->rstart, target->rend - target->rstart);
76 target
48 isccc_base64_encode(isccc_region_t *source, int wordlength, const char *wordbreak, isccc_region_t *target) argument
[all...]
/macosx-10.9.5/basic_cmds-55/uudecode/
H A Dbase64.c132 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { argument
155 target[datalength++] = Base64[output[0]];
156 target[datalength++] = Base64[output[1]];
157 target[datalength++] = Base64[output[2]];
158 target[datalength++] = Base64[output[3]];
177 target[datalength++] = Base64[output[0]];
178 target[datalength++] = Base64[output[1]];
180 target[datalength++] = Pad64;
182 target[datalength++] = Base64[output[2]];
183 target[datalengt
[all...]
/macosx-10.9.5/basic_cmds-55/uuencode/
H A Dbase64.c132 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { argument
155 target[datalength++] = Base64[output[0]];
156 target[datalength++] = Base64[output[1]];
157 target[datalength++] = Base64[output[2]];
158 target[datalength++] = Base64[output[3]];
177 target[datalength++] = Base64[output[0]];
178 target[datalength++] = Base64[output[1]];
180 target[datalength++] = Pad64;
182 target[datalength++] = Base64[output[2]];
183 target[datalengt
[all...]
/macosx-10.9.5/libresolv-54/
H A Dbase64.c141 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { argument
164 target[datalength++] = Base64[output[0]];
165 target[datalength++] = Base64[output[1]];
166 target[datalength++] = Base64[output[2]];
167 target[datalength++] = Base64[output[3]];
186 target[datalength++] = Base64[output[0]];
187 target[datalength++] = Base64[output[1]];
189 target[datalength++] = Pad64;
191 target[datalength++] = Base64[output[2]];
192 target[datalengt
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Ducnvlat1.c35 UChar *target; local
43 target=pArgs->target;
44 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
57 /* target will be full */
69 target[0]=source[0];
70 target[1]=source[1];
71 target[2]=source[2];
72 target[3]=source[3];
73 target[
137 uint8_t *target, *oldTarget; local
325 uint8_t *target; local
474 UChar *target, *oldTarget; local
611 uint8_t *target; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblutil/
H A Dbase64.c121 char *target,
146 target[datalength++] = Base64[output[0]];
147 target[datalength++] = Base64[output[1]];
148 target[datalength++] = Base64[output[2]];
149 target[datalength++] = Base64[output[3]];
168 target[datalength++] = Base64[output[0]];
169 target[datalength++] = Base64[output[1]];
171 target[datalength++] = Pad64;
173 target[datalength++] = Base64[output[2]];
174 target[datalengt
118 lutil_b64_ntop( u_char const *src, size_t srclength, char *target, size_t targsize) argument
189 lutil_b64_pton( char const *src, u_char *target, size_t targsize) argument
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbase64.c134 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) argument
154 target[datalength++] = Base64[output[0]];
155 target[datalength++] = Base64[output[1]];
156 target[datalength++] = Base64[output[2]];
157 target[datalength++] = Base64[output[3]];
173 target[datalength++] = Base64[output[0]];
174 target[datalength++] = Base64[output[1]];
176 target[datalength++] = Pad64;
178 target[datalength++] = Base64[output[2]];
179 target[datalengt
197 b64_pton(char const *src, u_char *target, size_t targsize) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebPolicyDelegate.mm46 id target;
50 - (id)initWithTarget:(id)target action:(SEL)action;
61 target = [t retain];
68 [target release];
76 - (id)_initWithTarget:(id)target action:(SEL)action
81 _private = [[WebPolicyDecisionListenerPrivate alloc] initWithTarget:target action:action];
93 if (_private->target)
94 wtfObjcMsgSend<void>(_private->target, _private->action, policy);
99 id target = _private->target;
[all...]
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dkill.d48 /* Record target PID and signal */
49 self->target = arg0;
55 /* Print source, target, and result */
57 pid, execname, self->signal, self->target, (int)arg0);
60 self->target = 0;
/macosx-10.9.5/dtrace-118.1/DTTk/Proc/
H A Dkill.d48 /* Record target PID and signal */
49 self->target = arg0;
55 /* Print source, target, and result */
57 pid, execname, self->signal, self->target, (int)arg0);
60 self->target = 0;
/macosx-10.9.5/libarchive-29/libarchive/tar/test/
H A Dtest_basic.c30 basic_tar(const char *target, const char *pack_options, argument
35 assertMakeDir(target, 0775);
38 r = systemf("%s cf - %s %s >%s/archive 2>%s/pack.err", testprog, pack_options, flist, target, target);
42 assertChdir(target);
64 failure("%s", target);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dinterneton.py12 def resultAvailable(target, flags, info):
50 target = SCNetworkReachabilityCreateWithAddress(None, (addr, 80))
51 SCNetworkReachabilitySetCallback(target, resultAvailable, addr)
53 ok, flags = SCNetworkReachabilityGetFlags(target, None)
55 resultAvailable(target, flags, addr)
58 ok = SCNetworkReachabilityScheduleWithRunLoop(target,
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dinterneton.py12 def resultAvailable(target, flags, info):
50 target = SCNetworkReachabilityCreateWithAddress(None, (addr, 80))
51 SCNetworkReachabilitySetCallback(target, resultAvailable, addr)
53 ok, flags = SCNetworkReachabilityGetFlags(target, None)
55 resultAvailable(target, flags, addr)
58 ok = SCNetworkReachabilityScheduleWithRunLoop(target,
/macosx-10.9.5/ruby-104/ruby/ext/io/wait/
H A Dextconf.rb2 target = "io/wait"
11 create_makefile(target)
16 create_makefile(target)
/macosx-10.9.5/security_systemkeychain-55191.2/src/
H A Dcodesign.h41 void sign(const char *target);
43 void verify(const char *target);
44 void dump(const char *target);
45 void hostinginfo(const char *target);
46 void procinfo(const char *target);
47 void procaction(const char *target);

Completed in 376 milliseconds

1234567891011>>