Searched refs:res (Results 1 - 25 of 2952) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/appl/login/
H A Dtty.c45 char *res = tty; local
47 if (strncmp (res, _PATH_DEV, strlen(_PATH_DEV)) == 0)
48 res += strlen(_PATH_DEV);
49 if (strncmp (res, "pty/", 4) == 0)
50 res += 4;
51 if (strncmp (res, "ptym/", 5) == 0)
52 res += 5;
53 return res;
63 char *res = tty; local
65 if (strncmp (res, "pt
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/generic/
H A Dinit.c60 int res;
124 res = TrfInit_Unstack (interp);
126 if (res != TCL_OK)
127 return res;
129 res = TrfInit_Info (interp);
131 if (res != TCL_OK)
132 return res;
135 res = TrfInit_Binio (interp);
137 if (res != TCL_OK)
138 return res;
59 int res; local
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/
H A Djoke.pl10 my $res = SOAP::Lite
16 die $res->faultstring if $res->fault;
18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
19 print wrap("\t", '', split( /\n/, $res->result->{text})), "\n";
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/
H A Djoke.pl10 my $res = SOAP::Lite
16 die $res->faultstring if $res->fault;
18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
19 print wrap("\t", '', split( /\n/, $res->result->{text})), "\n";
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/
H A Djoke.pl10 my $res = SOAP::Lite
16 die $res->faultstring if $res->fault;
18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
19 print wrap("\t", '', split( /\n/, $res->result->{text})), "\n";
/macosx-10.9.5/ruby-104/ruby/sample/webrick/
H A Dhello.rb4 def do_GET(req, res)
5 res["content-type"] = "text/plain"
6 res.body = "Hello, world.\n"
H A Dhello.cgi5 def do_GET(req, res)
6 res["content-type"] = "text/plain"
7 res.body = "Hello, world.\n"
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/
H A Dcarbon_delete.c31 int res = __delete(path); local
32 if (res == 0) __inc_remove_counter();
33 return res;
H A Drename.c30 int res = __rename(old, new); local
31 if (res == 0) __inc_remove_counter();
32 return res;
H A Drmdir.c30 int res = __rmdir(path); local
31 if (res == 0) __inc_remove_counter();
32 return res;
H A Dunlink.c30 int res = __unlink(path); local
31 if (res == 0) __inc_remove_counter();
32 return res;
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/gen_bridge_doc/lib/ApplicationKit/
H A DApplicationKitFunctions.rb4 def new_regexp_result_type(res)
5 return '' if @name == 'NSBeginAlertSheet' and res.empty?
8 def new_regexp_result_arg(res)
9 return '' if @name == 'NSBeginAlertSheet' and res.empty?
H A DNSFont.rb6 def new_regexp_result_name(res, part)
7 return res[(part * 6) + 1] if @name == 'getAdvancements:forPackedGlyphs:length:'
10 def new_regexp_result_type(res, part)
11 return res[(part * 6) + 3] if @name == 'getAdvancements:forPackedGlyphs:length:'
14 def new_regexp_result_arg(res, part)
15 return res[(part * 6) + 5] if @name == 'getAdvancements:forPackedGlyphs:length:'
/macosx-10.9.5/CPANInternal-140/Net-DNS/demo/
H A Dexample_recurse.pl7 my $res = Net::DNS::Resolver::Recurse->new;
8 $res->debug(1);
9 $res->hints("198.41.0.4"); # A.ROOT-SERVER.NET.
10 my $packet = $res->query_dorecursion("www.rob.com.au.", "A");
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/gen_bridge_doc/lib/Foundation/
H A DNSDate.rb6 def new_regexp_result_name(res, part)
7 return res[(part * 6) + 1] if @name.include? 'dateWithNaturalLanguageString:'
10 def new_regexp_result_type(res, part)
11 return res[(part * 6) + 3] if @name.include? 'dateWithNaturalLanguageString:'
14 def new_regexp_result_arg(res, part)
15 return res[(part * 6) + 5] if @name.include? 'dateWithNaturalLanguageString:'
H A DNSPortCoder.rb6 def new_regexp_result_name(res, part)
7 return res[(part * 6) + 1] if @name == 'portCoderWithReceivePort:sendPort:components:'
10 def new_regexp_result_type(res, part)
11 return res[(part * 6) + 3] if @name == 'portCoderWithReceivePort:sendPort:components:'
14 def new_regexp_result_arg(res, part)
15 return res[(part * 6) + 5] if @name == 'portCoderWithReceivePort:sendPort:components:'
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A Dxpathns.py11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print(res)
19 del res
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dxpathns.py11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print res
19 del res
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-96526-003.js53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101 res
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dcopyhostent.c45 struct hostent *res; local
49 res = malloc (sizeof (*res));
50 if (res == NULL)
52 res->h_name = NULL;
53 res->h_aliases = NULL;
54 res->h_addrtype = h->h_addrtype;
55 res->h_length = h->h_length;
56 res->h_addr_list = NULL;
57 res
[all...]
/macosx-10.9.5/ruby-104/ruby/test/net/smtp/
H A Dtest_response.rb8 res = Response.parse("250-ubuntu-desktop\n250-PIPELINING\n250-SIZE 10240000\n250-VRFY\n250-ETRN\n250-STARTTLS\n250-ENHANCEDSTATUSCODES\n250 DSN\n")
10 capabilities = res.capabilities
17 res = Response.parse("250-ubuntu-desktop\n250-PIPELINING\n250 DSN\n")
18 assert_equal [], res.capabilities['PIPELINING']
22 res = Response.parse("250-ubuntu-desktop\n250-SIZE 1234\n250 DSN\n")
23 assert_equal ['1234'], res.capabilities['SIZE']
27 res = Response.parse("250-ubuntu-desktop\n250-SIZE 1 2 3\n250 DSN\n")
28 assert_equal %w{1 2 3}, res.capabilities['SIZE']
32 res = Response.parse("badstring")
33 assert_equal({}, res
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dbn_mp_addmod.c22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, c, d);
35 return res;
H A Dbn_mp_mulmod.c21 int res; local
24 if ((res = mp_init (&t)) != MP_OKAY) {
25 return res;
28 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
30 return res;
32 res = mp_mod (&t, c, d);
34 return res;
H A Dbn_mp_sqrmod.c22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, b, c);
35 return res;
H A Dbn_mp_submod.c22 int res; local
26 if ((res = mp_init (&t)) != MP_OKAY) {
27 return res;
30 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
32 return res;
34 res = mp_mod (&t, c, d);
36 return res;

Completed in 363 milliseconds

1234567891011>>