Searched refs:output (Results 1 - 25 of 1481) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A Dxxd.pl34 $output = shift;
43 open($output, '>', $output) or die "Can't open file for write: $output $!";
44 print $output "const unsigned char $varname\[\] = {\n$text\n};\n";
45 close($output);
/macosx-10.10.1/Heimdal-398.1.2/packages/mac/
H A Dbuild-import-files.sh10 output="${HEIMDAL_TMPDIR}/sym_${base}.c"
12 sh ${SOURCE_ROOT}/packages/mac/make-export.sh ${input} "${output}.new" || exit 1
13 if cmp "${output}.new" "${output}" 2> /dev/null; then
14 rm "${output}.new"
16 echo "xcode: Updating ${output}"
17 mv "${output}.new" "${output}"
H A Dbuild-export-files.sh6 output="$1" ; shift
21 done ) | cc -E -I"${SRCROOT}/packages/mac/SnowLeopard10A" ${CFLAGS} ${HEIMDAL_PLATFORM_CFLAGS} -DNO_CONFIG_INCLUDE=1 - > $output.new
23 if cmp "${output}.new" "${output}" 2> /dev/null; then
24 rm "${output}.new"
26 cp "${output}.new" "${output}"
31 output="$1" ; shift
42 done > $output.new
44 if cmp "${output}
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/rexml/formatters/
H A Dtransitive.rb22 def write_element( node, output )
23 output << "<#{node.expanded_name}"
26 output << " "
27 attr.write( output )
30 output << "\n"
31 output << ' '*@level
33 output << " " if @ie_hack
34 output << "/"
36 output << ">"
37 # If compact and all children are text, and if the formatted output
[all...]
H A Ddefault.rb14 # Writes the node to some output.
18 # output::
20 # change the output encoding.
21 def write( node, output )
25 if node.xml_decl.encoding != 'UTF-8' && !output.kind_of?(Output)
26 output = Output.new( output, node.xml_decl.encoding )
28 write_document( node, output )
31 write_element( node, output )
35 node.write( output,
[all...]
H A Dpretty.rb19 # output::
20 # An object implementing '<<(String)', to which the output will be written.
38 def write_element(node, output)
39 output << ' '*@level
40 output << "<#{node.expanded_name}"
43 output << " "
44 attr.write( output )
49 output << " "
51 output << "/"
53 output << ">"
[all...]
/macosx-10.10.1/curl-83.1.2/curl/tests/unit/
H A Dunit1398.c35 char output[24]; variable
40 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
42 fail_unless(!strcmp(output, "bug"), "wrong output");
45 rc = curl_msnprintf(output, 4, "%.*s", width, str);
47 fail_unless(!strcmp(output, "bug"), "wrong output");
51 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
53 fail_unless(!strcmp(output, "bu"), "wrong output");
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/crypto/
H A Dcrypt_blowfish.h20 extern int _crypt_output_magic(const char *setting, char *output, int size);
22 char *output, int size);
25 const char *input, int size, char *output, int output_size);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcurl_md4.h30 void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len);
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dtestss.com26 $ write sys$output ""
27 $ write sys$output "make a certificate request using 'req'"
30 $ define/user sys$output nla0:
44 $ write sys$output "error using 'req' to generate a certificate request"
47 $ write sys$output ""
48 $ write sys$output "convert the certificate request into a self signed certificate using 'x509'"
49 $ define /user sys$output err.ss
53 $ write sys$output "error using 'x509' to self sign a certificate request"
57 $ write sys$output ""
58 $ write sys$output "conver
[all...]
H A Dtestssl.com24 $ define/user sys$output testssl-x509-output.
29 $ search/output=nla0: testssl-x509-output. "DSA Public Key"/exact
37 $ delete testssl-x509-output.;*
49 $ write sys$output "test sslv2"
53 $ write sys$output "test sslv2 with server authentication"
59 $ write sys$output "test sslv2 with client authentication"
63 $ write sys$output "test sslv2 with both client and server authentication"
68 $ write sys$output "tes
[all...]
/macosx-10.10.1/ruby-106/ruby/test/minitest/
H A Dmetametameta.rb31 output = @output.string.dup
32 output.sub!(/Finished tests in .*/, "Finished tests in 0.00")
33 output.sub!(/Loaded suite .*/, 'Loaded suite blah')
35 output.gsub!(/ = \d+.\d\d s = /, ' = 0.00 s = ')
36 output.gsub!(/0x[A-Fa-f0-9]+/, '0xXXX')
39 output.gsub!(/\[(?:[A-Za-z]:)?[^\]:]+:\d+\]/, '[FILE:LINE]')
40 output.gsub!(/^(\s+)(?:[A-Za-z]:)?[^:]+:\d+:in/, '\1FILE:LINE:in')
42 output.gsub!(/\[[^\]:]+:\d+\]/, '[FILE:LINE]')
43 output
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_attribute_manager.rb19 assert_equal 'foo <CODE>__send__</CODE> bar', output('foo <code>__send__</code> bar')
23 assert_equal 'foo <CODE>__send__</CODE> bar', output('foo <tt>__send__</tt> bar')
27 assert_equal 'foo.__send__ :bar', output('foo.__send__ :bar')
28 assert_equal 'use __FILE__ to', output('use __FILE__ to')
32 assert_equal 'the <CODE>IF:</CODE><EM>key</EM> directive', output('the <tt>IF:</tt>_key_ directive')
83 assert_equal '<CODE>text</CODE>', output('<tt>text</tt>')
84 assert_equal '<tt>text</tt>', output('\\<tt>text</tt>')
85 assert_equal '<tt>', output('\\<tt>')
86 assert_equal '<CODE><tt></CODE>', output('<tt>\\<tt></tt>')
87 assert_equal '<CODE>\\<tt></CODE>', output('<t
115 def output str method in class:TestAttributeManager
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/
H A Dcbc3_enc.c62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length, argument
73 (unsigned char*)output,length,&ks1,iv1,enc);
75 memcpy(niv1,output[off],sizeof(DES_cblock));
76 DES_cbc_encrypt((unsigned char*)output,
77 (unsigned char*)output,l8,&ks2,iv1,!enc);
78 DES_cbc_encrypt((unsigned char*)output,
79 (unsigned char*)output,l8,&ks1,iv2,enc);
81 memcpy(niv2,output[off],sizeof(DES_cblock));
88 (unsigned char*)output,l8,&ks1,iv2,enc);
89 DES_cbc_encrypt((unsigned char*)output,
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/dcelib/darwin/
H A Dwc16str.c82 char * output; local
85 CFIndex produced = 0; // output units produced
87 output = malloc(3 * (inputlen + 1));
88 if (output == NULL) {
97 (uint8_t *)output, inputlen * 3,
101 free(output);
105 output[produced] = '\0';
106 return output;
113 wchar16_t * output; local
116 CFIndex produced = 0; // output unit
[all...]
/macosx-10.10.1/ntp-92/sntp/
H A Dutilities.c10 FILE *output
18 fprintf(output, HLINE);
22 fprintf(output, "\n");
24 fprintf(output, "%d: %x \t", a, pkt[a]);
27 fprintf(output, "\n");
28 fprintf(output, HLINE);
36 FILE *output
41 fprintf(output, HLINE);
44 fprintf(output, "%i: %x \t", a, ((unsigned char *) ts)[a]);
46 fprintf(output, "\
[all...]
H A Dutilities.h12 #define PHLINE fprintf(output, HLINE);
16 void pkt_output (struct pkt *dpkg, int pkt_length, FILE *output);
17 void l_fp_output (l_fp *ts, FILE *output);
18 void l_fp_output_bin (l_fp *ts, FILE *output);
19 void l_fp_output_dec (l_fp *ts, FILE *output);
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_ext_cmake_builder.rb30 output = []
33 Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
36 output = output.join "\n"
39 %r%^cmake \. -DCMAKE_INSTALL_PREFIX=#{Regexp.escape @dest_path}%, output
40 assert_match %r%#{Regexp.escape @ext}%, output
41 assert_contains_make_command '', output
42 assert_contains_make_command 'install', output
43 assert_match %r%test\.txt%, output
47 output
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleTupleBinding.java49 TupleOutput output = getTupleOutput(object);
50 objectToKey(object, output);
51 outputToEntry(output, key);
57 TupleOutput output = getTupleOutput(object);
58 objectToData(object, output);
59 outputToEntry(output, data);
82 * @param output is the {@link TupleOutput} to which the key should be
85 public abstract void objectToKey(Object object, TupleOutput output); argument
92 * @param output is the {@link TupleOutput} to which the data should be
95 public abstract void objectToData(Object object, TupleOutput output); argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/t/test/plugin/MyPlugs/
H A DBaz.pm10 sub output { subroutine
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dtrace_output.rb4 # Write trace output to output stream +out+.
7 # chance that the trace output is interrupted by other tasks also
8 # producing output.
12 output = sep
14 output = strings.map { |s| s.end_with?(sep) ? s : s + sep }.join
16 out.print(output)
/macosx-10.10.1/ruby-106/ruby/tool/
H A Dfile2lastrev.rb11 @output = nil
12 def self.output=(output) singleton method
13 if @output and @output != output
16 @output = output
26 self.output = :changed
29 self.output
[all...]
/macosx-10.10.1/tcpdump-61/tcpdump/tests/
H A DTESTonce15 ($name,$input,$output,$options)=split(/\s+/,$_, 4);
25 $output=$ARGV[2];
28 print "Usage: TESTonce name [input output options]\n";
33 print " Input: $input, OUTPUT: $output, OPTIONS: $options\n" if $debug;
36 exec("../tcpdump 2>/dev/null -n -r $input $options | tee NEW/$output | diff -w - $output >DIFF/$output.diff");
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dcdata.rb45 # Generates XML output of this object
47 # output::
59 def write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
61 indent( output, indent )
62 output << START
63 output << @string
64 output << STOP
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dfmtmsg.c59 char *env, *msgverb, *output; local
78 output = printfmt(msgverb, class, label, sev, text, action,
80 if (output == NULL) {
84 if (*output != '\0') {
85 int out_len = fprintf(stderr, "%s", output);
91 free(output);
94 output = printfmt(DFLT_MSGVERB, class, label, sev, text,
96 if (output == NULL)
98 if (*output != '\0') {
144 fprintf(fp, "%s", output);
172 char *comp, *output; local
[all...]

Completed in 619 milliseconds

1234567891011>>