Searched refs:ua (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.10/WTF-7600.1.24/wtf/
H A DSaturatedArithmetic.h40 uint32_t ua = a; local
42 uint32_t result = ua + ub;
46 if (!((ua ^ ub) >> 31) & (result ^ ua) >> 31)
47 result = std::numeric_limits<int>::max() + (ua >> 31);
54 uint32_t ua = a; local
56 uint32_t result = ua - ub;
60 if ((ua ^ ub) >> 31 & (result ^ ua) >> 31)
61 result = std::numeric_limits<int>::max() + (ua >> 3
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/string/
H A Dstrnacmp.c45 register unsigned char* ua = (unsigned char*)a;
53 ue = ua + n;
54 while (ua < ue)
56 c = m[*ua++];
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D048lwp.t43 my $ua = LWP::UserAgent->new();
47 $ua->get("file:$tmpfile");
69 $ua = LWP::UserAgent->new();
70 $ua->get("file:$tmpfile");
91 $ua = LWP::UserAgent->new();
92 $ua->get("file:$tmpfile");
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/eg/
H A Dlwp-ssl-test35 my $ua = new LWP::UserAgent;
36 $ua->timeout(15);
38 my $res = $ua->request($req);
/macosx-10.10/lsof-53/lsof/tests/
H A DLTunix.c88 struct sockaddr_un ua; /* UNIX socket address */ local
133 > sizeof(ua.sun_path))
171 (void) memset((void *)&ua, 0, sizeof(ua));
172 ua.sun_family = AF_UNIX;
173 (void) strncpy(ua.sun_path, Path[ti], sizeof(ua.sun_path));
174 ua.sun_path[sizeof(ua.sun_path) - 1] = '\0';
175 if (bind(SpFd[ti], (struct sockaddr *)&ua, sizeo
[all...]
/macosx-10.10/lsof-53/lsof/dialects/darwin/kmem/
H A Ddsock.c74 struct sockaddr_un *ua = NULL; local
432 ua = &un;
434 if (!ua) {
435 ua = &un;
436 (void) bzero((char *)ua, sizeof(un));
437 ua->sun_family = AF_UNSPEC;
444 if (ua->sun_family != AF_UNIX) {
445 if (ua->sun_family == AF_UNSPEC) {
458 ua->sun_family);
461 if (ua
[all...]
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/t/
H A DUtils.pm83 my $ua = LWP::UserAgent->new( env_proxy => 1, timeout => 30 );
85 $ua->request(
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/t/
H A DUtils.pm83 my $ua = LWP::UserAgent->new( env_proxy => 1, timeout => 30 );
85 $ua->request(
/macosx-10.10/Libc-1044.1.2/stdio/
H A Dxprintf_comp.c43 arrayfree(pc->ua);
44 free(pc->ua);
/macosx-10.10/ruby-106/ruby/lib/webrick/
H A Dhttpproxy.rb138 ua = Thread.current[:WEBrickSocket] # User-Agent
140 "[BUG] cannot get socket" unless ua
186 res.send_response(ua)
195 while fds = IO::select([ua, os])
196 if fds[0].member?(ua)
197 buf = ua.sysread(1024);
203 ua.syswrite(buf)
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dsyslog.c208 struct sockaddr_un ua;
211 if ((ul = strlen(buf)) < sizeof(ua.sun_path) && !stat(buf, &st) && S_ISSOCK(st.st_mode))
215 ua.sun_family = AF_UNIX;
216 strcpy(ua.sun_path, buf);
217 ul += sizeof(ua.sun_family) + 1;
218 if (!connect(fd, (struct sockaddr*)&ua, ul))
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_encoding.rb109 ua = "abc".force_encoding(Encoding::UTF_8)
110 assert_equal(Encoding::UTF_8, Encoding.compatible?(ua, :abc))
111 assert_equal(nil, Encoding.compatible?(ua, 1))
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A DGoogle.tcl96 set ua "Mozilla/4.0 ([string totitle $tcl_platform(platform)];\
99 append ua " " $app
101 append ua " Tcl/[package provide Tcl]"
103 http::config -useragent $ua
/macosx-10.10/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/
H A DClient.pm20 for my $method (qw/uri ua json content_type version id allow_call status_line/) {
73 my $ua = LWP::UserAgent->new(
78 $self->ua($ua);
147 $self->ua->post(
158 $self->ua->get(
350 =item ua
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dmk-ca-bundle.pl243 my $ua = new LWP::UserAgent(agent => "$0/$version");
244 $ua->env_proxy();
245 $resp = $ua->mirror($url, $txt);
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Dremote_fetcher.rb577 ua = "RubyGems/#{Gem::VERSION} #{Gem::Platform.local}"
582 ua << " Ruby/#{ruby_version} (#{RUBY_RELEASE_DATE}"
584 ua << " patchlevel #{RUBY_PATCHLEVEL}"
586 ua << " revision #{RUBY_REVISION}"
588 ua << ")"
590 ua << " #{RUBY_ENGINE}" if defined?(RUBY_ENGINE) and RUBY_ENGINE != 'ruby'
592 ua
/macosx-10.10/vim-55/runtime/syntax/
H A Dia64.vim266 syn match ia64data "data[1248]\(\(\(\.ua\)\=\(\.msb\|\.lsb\)\=\)\|\(\(\.msb\|\.lsb\)\=\(\.ua\)\=\)\)\=\>"
267 syn match ia64data "real\([48]\|1[06]\)\(\(\(\.ua\)\=\(\.msb\|\.lsb\)\=\)\|\(\(\.msb\|\.lsb\)\=\(\.ua\)\=\)\)\=\>"
268 syn match ia64data "stringz\=\(\(\(\.ua\)\=\(\.msb\|\.lsb\)\=\)\|\(\(\.msb\|\.lsb\)\=\(\.ua\)\=\)\)\=\>"
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_private.h148 struct array *ua; member in struct:_printf_compiled
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_remote_fetcher.rb733 ua = @fetcher.user_agent
735 assert_match %r%^RubyGems/\S+ \S+ Ruby/\S+ \(.*?\)%, ua
736 assert_match %r%RubyGems/#{Regexp.escape Gem::VERSION}%, ua
737 assert_match %r% #{Regexp.escape Gem::Platform.local.to_s} %, ua
738 assert_match %r%Ruby/#{Regexp.escape RUBY_VERSION}%, ua
739 assert_match %r%\(#{Regexp.escape RUBY_RELEASE_DATE} %, ua
748 ua = @fetcher.user_agent
750 assert_match %r%\) vroom%, ua
761 ua = @fetcher.user_agent
763 assert_match %r%\)%, ua
[all...]
/macosx-10.10/apache-793/httpd/modules/http/
H A Dbyterange_filter.c311 const char *ua; local
313 || ((ua = apr_table_get(r->headers_in, "User-Agent"))
314 && ap_strstr_c(ua, "MSIE 3")));
/macosx-10.10/apache-793/httpd/docs/conf/extra/
H A Dhttpd-languages.conf.in121 AddCharset KOI8-ru .koi8-uk .ua
/macosx-10.10/groff-38/groff/font/devps/generate/
H A Dtextmap119 arrowup ua
/macosx-10.10/groff-38/groff/font/devps/
H A Dsymbolmap122 arrowup ua
/macosx-10.10/CPANInternal-159.1/Data-Dump-1.21/lib/Data/Dump/
H A DTrace.pm284 autowrap("LWP::UserAgent" => "ua", "HTTP::Response" => "res");
287 $ua = mcall(LWP::UserAgent => "new"); # instead of LWP::UserAgent->new;
288 $ua->get("http://www.example.com")->dump;
/macosx-10.10/vim-55/runtime/colors/
H A Ddarkblue.vim2 " Maintainer: Bohdan Vlasyuk <bohdan@vstu.edu.ua>

Completed in 375 milliseconds

12