HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 1 - 25 of 1092) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/src/
output.h 0 /* Output the generated parsing program for bison,
24 /* Output the parsing tables and the parser code to FTABLE. */
25 void output (void);
  /external/qemu/
feature_to_c.sh 22 output=$1
25 if test -z "$output" || test -z "$1"; then
30 if test -e "$output"; then
31 echo "Output file \"$output\" already exists; refusing to overwrite."
62 }' < $input >> $output
65 echo >> $output
66 echo "extern const char *const xml_builtin[][2];" >> $output
67 echo "const char *const xml_builtin[][2] = {" >> $output
72 echo " { \"$basename\", $arrayname }," >> $output
    [all...]
  /dalvik/tests/030-bad-finalizer/
run 17 ${RUN} "$@" > original-output.txt
19 cat original-output.txt | awk '
  /external/stlport/test/unit/
neq_test.cpp 35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[2]==0)
    [all...]
logic_test.cpp 38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[1]==true)
    [all...]
modulus_test.cpp 33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
plusminus_test.cpp 45 int output [4]; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
48 CPPUNIT_ASSERT(output[0]==0);
49 CPPUNIT_ASSERT(output[1]==1);
50 CPPUNIT_ASSERT(output[2]==-1);
51 CPPUNIT_ASSERT(output[3]==5);
  /ndk/sources/android/stlport/test/unit/
neq_test.cpp 35 int output[3]; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
38 CPPUNIT_ASSERT(output[0]==-1);
39 CPPUNIT_ASSERT(output[1]==-2);
40 CPPUNIT_ASSERT(output[2]==-3);
47 int output [4]; local
48 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, not_equal_to<int>());
50 CPPUNIT_ASSERT(output[0]==0);
51 CPPUNIT_ASSERT(output[1]==1);
52 CPPUNIT_ASSERT(output[2]==0)
    [all...]
logic_test.cpp 38 bool output [4]; local
39 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_and<bool>());
41 CPPUNIT_ASSERT(output[0]==false);
42 CPPUNIT_ASSERT(output[1]==true);
43 CPPUNIT_ASSERT(output[2]==false);
44 CPPUNIT_ASSERT(output[3]==false);
58 bool output [4]; local
59 transform((bool*)input1, (bool*)input1 + 4, (bool*)input2, (bool*)output, logical_or<bool>());
61 CPPUNIT_ASSERT(output[0]==true);
62 CPPUNIT_ASSERT(output[1]==true)
    [all...]
modulus_test.cpp 33 int output [4]; local
35 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, modulus<int>());
36 CPPUNIT_ASSERT(output[0]==2);
37 CPPUNIT_ASSERT(output[1]==0);
38 CPPUNIT_ASSERT(output[2]==10);
39 CPPUNIT_ASSERT(output[3]==2);
plusminus_test.cpp 45 int output [4]; local
47 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, minus<int>());
48 CPPUNIT_ASSERT(output[0]==0);
49 CPPUNIT_ASSERT(output[1]==1);
50 CPPUNIT_ASSERT(output[2]==-1);
51 CPPUNIT_ASSERT(output[3]==5);
  /external/webkit/WebCore/platform/android/
FileChooserAndroid.cpp 40 String output = m_filenames[0].threadsafeCopy();
41 while (font.width(TextRun(output.impl())) > width && output.length() > 4)
42 output = output.replace(0, 4, String("..."));
43 return output;
  /system/core/sh/
output.h 1 /* $NetBSD: output.h,v 1.17 2003/08/07 09:05:36 agc Exp $ */
34 * @(#)output.h 8.2 (Berkeley) 5/4/95
41 struct output { struct
50 extern struct output output;
51 extern struct output errout;
52 extern struct output memout;
53 extern struct output *out1;
54 extern struct output *out2;
56 void open_mem(char *, int, struct output *);
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/output/
DemuxOutputStream.java 17 package org.apache.commons.io.output;
37 * @param output the stream to bind
40 public OutputStream bindStream( OutputStream output )
43 m_streams.set( output );
55 OutputStream output = getStream(); local
56 if( null != output )
58 output.close();
70 OutputStream output = getStream(); local
71 if( null != output )
73 output.flush();
86 OutputStream output = getStream(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 60 StringBuffer output = new StringBuffer(); local
62 output.append("--");
63 output.append(boundry);
64 output.append(CRLF);
66 output.append("Content-Disposition: form-data; name=\"stringpart\"");
67 output.append(CRLF);
68 output.append("Content-Type: text/plain; charset=US-ASCII");
69 output.append(CRLF);
70 output.append("Content-Transfer-Encoding: 8bit");
71 output.append(CRLF)
    [all...]
  /device/samsung/crespo/alsa-lib/src/
output.c 2 * \file output.c
3 * \brief Generic stdio-like output interface
7 * Generic stdio-like output interface
10 * Output object
38 int (*close)(snd_output_t *output);
39 int (*print)(snd_output_t *output, const char *format, va_list args);
40 int (*puts)(snd_output_t *output, const char *str);
41 int (*putch)(snd_output_t *output, int c);
42 int (*flush)(snd_output_t *output);
53 * \brief Closes an output handle
190 snd_output_t *output; local
360 snd_output_t *output; local
    [all...]
  /sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
InstrumentationResultParserTest.java 59 StringBuilder output = buildCommonResult(); local
60 addStartCode(output);
62 injectTestString(output.toString());
70 StringBuilder output = createSuccessTest(); local
72 injectTestString(output.toString());
79 * Create instrumentation output for a successful single test case execution.
82 StringBuilder output = buildCommonResult(); local
83 addStartCode(output);
84 addCommonStatus(output);
85 addSuccessCode(output);
93 StringBuilder output = buildCommonResult(); local
111 StringBuilder output = createSuccessTest(); local
121 StringBuilder output = new StringBuilder(); local
138 StringBuilder output = new StringBuilder(); local
156 StringBuilder output = new StringBuilder(); local
172 StringBuilder output = new StringBuilder(); local
192 StringBuilder output = new StringBuilder(); local
211 StringBuilder output = new StringBuilder(); local
    [all...]
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /external/gtest/test/
gtest_output_test.py 32 """Tests the text output of Google C++ Testing Framework.
89 def RemoveLocations(output):
90 """Removes all file location info from a Google Test program's output.
93 output: the output of a Google Test program.
96 output with all file location info (in the form of
102 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', output)
105 def RemoveStackTraces(output):
106 """Removes all stack traces from a Google Test program's output."""
110 'Stack trace: (omitted)\n\n', output)
    [all...]
  /external/chromium/googleurl/src/
url_canon_internal_file.h 48 // letter and colon to the output, if one is found. If there is not a drive
54 CanonOutput* output) {
68 output->push_back(spec[after_slashes] - 'a' + 'A');
70 output->push_back(static_cast<char>(spec[after_slashes]));
73 output->push_back(':');
74 output->push_back('/');
82 CanonOutput* output) {
95 // Give it a fake output component to write into. DoCanonicalizeFile will
99 spec, sub_path, output, &fake_output_path);
106 CanonOutput* output,
    [all...]
  /external/openssl/crypto/des/
cbc3_enc.c 62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length,
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...]
  /dalvik/tools/dmtracedump/
dmtracedump.pl 11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 210 io::CodedOutputStream* output) {
211 WriteTag(field_number, WIRETYPE_VARINT, output);
212 WriteInt32NoTag(value, output);
215 io::CodedOutputStream* output) {
216 WriteTag(field_number, WIRETYPE_VARINT, output);
217 WriteInt64NoTag(value, output);
220 io::CodedOutputStream* output) {
221 WriteTag(field_number, WIRETYPE_VARINT, output);
222 WriteUInt32NoTag(value, output);
225 io::CodedOutputStream* output) {
    [all...]
  /external/chromium/base/
base64.h 13 // otherwise. The output string is only modified if successful.
14 bool Base64Encode(const std::string& input, std::string* output);
17 // otherwise. The output string is only modified if successful.
18 bool Base64Decode(const std::string& input, std::string* output);
  /external/ppp/pppd/plugins/radius/
md5.c 6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
12 MD5_Final (output, &context);

Completed in 1677 milliseconds

1 2 3 4 5 6 7 8 91011>>