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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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...]
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);
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...]
  /ndk/tests/device/test-gnustl-full/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...]
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);
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...]
  /ndk/tests/device/test-stlport/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...]
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);
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...]
  /external/chromium/chrome/common/
jstemplate_builder.cc 21 std::string output(html_template.data(), html_template.size());
22 AppendJsonHtml(json, &output);
23 AppendJsTemplateSourceHtml(&output);
24 AppendJsTemplateProcessHtml(template_id, &output);
25 return output;
30 std::string output(html_template.data(), html_template.size());
31 AppendJsonHtml(json, &output);
32 AppendI18nTemplateSourceHtml(&output);
33 AppendI18nTemplateProcessHtml(&output);
34 return output;
    [all...]
  /external/llvm/test/Transforms/ADCE/
unreachable-function.ll 1 ; RUN: opt < %s -adce -disable-output
  /sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
InstrumentationResultParserTest.java 64 * Tests parsing empty output.
75 * Tests parsing output for a successful test run with no tests.
78 StringBuilder output = new StringBuilder(); local
79 addLine(output, "INSTRUMENTATION_RESULT: stream=");
80 addLine(output, "Test results for InstrumentationTestRunner=");
81 addLine(output, "Time: 0.001");
82 addLine(output, "OK (0 tests)");
83 addLine(output, "INSTRUMENTATION_CODE: -1");
88 injectAndVerifyTestString(output.toString());
92 * Tests parsing output for a single successful test execution
95 StringBuilder output = createSuccessTest(); local
109 StringBuilder output = buildCommonResult(); local
131 StringBuilder output = new StringBuilder(); local
164 StringBuilder output = buildCommonResult(); local
181 StringBuilder output = createSuccessTest(); local
196 StringBuilder output = new StringBuilder(); local
214 StringBuilder output = new StringBuilder(); local
237 StringBuilder output = new StringBuilder(); local
258 StringBuilder output = new StringBuilder(); local
279 StringBuilder output = new StringBuilder(); local
300 StringBuilder output = new StringBuilder(); local
323 StringBuilder output = new StringBuilder(); local
336 StringBuilder output = buildCommonResult(); local
    [all...]
  /external/chromium/testing/gmock/test/
gmock_output_test.py 32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output = re.sub(r'\[=+\] \d+ tests .* ran.*', '', output
    [all...]
  /external/chromium/base/
string_number_conversions_unittest.cc 63 std::string output; member in struct:base::__anon2356
72 EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
78 int output; member in struct:base::__anon2357
109 int output = 0; local
110 EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
111 EXPECT_EQ(cases[i].output, output);
112 output = 0;
115 &output));
116 EXPECT_EQ(cases[i].output, output)
143 int output; local
176 int64 output; member in struct:base::__anon2358
214 int64 output = 0; local
248 int64 output; local
278 int output; member in struct:base::__anon2359
313 int output = 0; local
331 int output; local
347 const char* output; member in struct:base::__anon2360
372 std::vector<uint8> output; local
387 double output; member in struct:base::__anon2361
421 double output; local
431 double output; local
    [all...]
  /external/chromium/net/base/
net_resources.grd 4 <output filename="grit/net_resources.h" type="rc_header">
6 </output>
7 <output filename="net_resources.pak" type="data_package" />
8 <output filename="net_resources.rc" type="rc_all" />
  /external/llvm/test/Transforms/SimplifyCFG/
2010-10-24-OnlyUnwindInEntry.ll 1 ; RUN: opt %s -simplifycfg -disable-output
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/
build.properties 2 output.. = bin/
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
ASCIIMathPHP-2.0.cfg.php 6 'alpha' => array( 'input'=>'alpha','tag'=>'mi', 'output'=>'&#' . hexdec('03B1') . ';'),
7 'beta' => array( 'input'=>'beta','tag'=>'mi', 'output'=>'&#' . hexdec('03B2') . ';'),
8 'chi' => array( 'input'=>'chi','tag'=>'mi', 'output'=>'&#' . hexdec('03C7') . ';'),
9 'delta' => array( 'input'=>'delta','tag'=>'mi', 'output'=>'&#' . hexdec('03B4') . ';'),
10 'Delta' => array( 'input'=>'Delta','tag'=>'mo', 'output'=>'&#' . hexdec('0394') . ';'),
11 'epsi' => array( 'input'=>'epsi','tag'=>'mi', 'output'=>'&#' . hexdec('03B5') . ';'),
12 'varepsilon' => array( 'input'=>'varepsilon','tag'=>'mi', 'output'=>'&#' . hexdec('025B') . ';'),
13 'eta' => array( 'input'=>'eta','tag'=>'mi', 'output'=>'&#' . hexdec('03B7') . ';'),
14 'gamma' => array( 'input'=>'gamma','tag'=>'mi', 'output'=>'&#' . hexdec('03B3') . ';'),
15 'Gamma' => array( 'input'=>'Gamma','tag'=>'mi', 'output'=>'&#' . hexdec('0393') . ';')
    [all...]
  /external/llvm/utils/
parseNLT.pl 18 { $output .= "$1 "; $count++; }
22 if ($output and $count > 3)
23 { print "\n$day $mon $year $prefix/$output"; }
24 $output = "";
33 if ($output)
34 { print "\n$day $mon $year $prefix/$output"; $output = ""; }
  /external/llvm/test/
Makefile.tests 22 # output from gccas and gccld.
31 .PRECIOUS: Output/%.bc Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
48 $(RM) -rf Output/
50 # Compile from X.c to Output/X.l
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
output.h 2 * \file include/output.h
36 * \defgroup Output Output Interface
38 * The output functions present an interface similar to the stdio functions
39 * on top of different underlying output destinations.
41 * Many PCM debugging functions (\c snd_pcm_xxx_dump_xxx) use such an output
49 * \brief Internal structure for an output object.
52 * output object. Applications don't access its contents directly.
56 /** Output type. */
58 /** Output to a stdio stream. *
    [all...]
  /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/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
_speedups.c 9 ascii_escape_char(Py_UNICODE c, char *output, Py_ssize_t chars);
28 ascii_escape_char(Py_UNICODE c, char *output, Py_ssize_t chars) {
30 output[chars++] = '\\';
32 case '/': output[chars++] = (char)c; break;
33 case '\\': output[chars++] = (char)c; break;
34 case '"': output[chars++] = (char)c; break;
35 case '\b': output[chars++] = 'b'; break;
36 case '\f': output[chars++] = 'f'; break;
37 case '\n': output[chars++] = 'n'; break;
38 case '\r': output[chars++] = 'r'; break
79 char *output; local
127 char *output; local
    [all...]
  /external/chromium/crypto/
sha2.cc 13 void SHA256HashString(const std::string& str, void* output, size_t len) {
16 ctx->Finish(output, len);
20 std::string output(SHA256_LENGTH, 0);
21 SHA256HashString(str, string_as_array(&output), output.size());
22 return output;

Completed in 1892 milliseconds

1 2 3 4 5 6 7 8 91011>>