HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 26 - 50 of 2172) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16LECharsetTest.java 39 byte[] output = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 };
40 internalTestEncode(input, output);
50 char[] output = "ab\u5D14\u654F".toCharArray(); local
51 internalTestDecode(input, output);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 33 private ITestCaseOutput output; field in class:TestCase
49 return this.output;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) {
54 this.output = output;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
67 this.output = out;
  /frameworks/native/libs/gui/
LayerState.cpp 25 status_t layer_state_t::write(Parcel& output) const
27 output.writeStrongBinder(surface);
28 output.writeInt32(what);
29 output.writeFloat(x);
30 output.writeFloat(y);
31 output.writeInt32(z);
32 output.writeInt32(w);
33 output.writeInt32(h);
34 output.writeInt32(layerStack);
35 output.writeFloat(alpha)
    [all...]
  /external/webkit/Source/WebCore/webaudio/
AudioNodeInput.cpp 48 void AudioNodeInput::connect(AudioNodeOutput* output)
52 ASSERT(output && node());
53 if (!output || !node())
56 // Check if we're already connected to this output.
57 if (m_outputs.contains(output))
60 output->addInput(this);
61 m_outputs.add(output);
68 void AudioNodeInput::disconnect(AudioNodeOutput* output)
72 ASSERT(output && node());
73 if (!output || !node()
151 AudioNodeOutput* output = *i; local
168 AudioNodeOutput* output = *i; local
231 AudioNodeOutput* output = renderingOutput(i); local
249 AudioNodeOutput* output = this->renderingOutput(0); local
    [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/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestResult.java 33 private String output; // stdout field in class:gUnitTestResult
38 public gUnitTestResult(boolean success, String output) {
40 this.output = output;
43 public gUnitTestResult(boolean success, String output, boolean isLexerTest) {
44 this(success, output);
48 public gUnitTestResult(boolean success, String output, String returned) {
49 this(success, output);
58 return output;
  /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/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;
  /external/stlport/test/unit/
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/tests/device/test-gnustl-full/unit/
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/tests/device/test-stlport/unit/
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/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 76 private ByteStream output; field in class:ClassFileWriter
89 output = new ByteStream(512);
90 output.writeInt(0xCAFEBABE); // magic
91 output.writeShort(minor);
92 output.writeShort(major);
93 constPool = new ConstPoolWriter(output);
130 output.writeShort(accessFlags);
131 output.writeShort(thisClass);
132 output.writeShort(superClass);
134 output.writeShort(0)
254 protected ByteStream output; field in class:ClassFileWriter.FieldWriter
312 protected ByteStream output; field in class:ClassFileWriter.MethodWriter
521 ByteStream output; field in class:ClassFileWriter.ConstPoolWriter
    [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/bison/lib/
fprintf.c 1 /* Formatted output to a stream.
32 /* Print formatted output to the stream FP.
39 char *output; local
45 output = vasnprintf (buf, &lenbuf, format, args);
49 if (!output)
55 if (fwrite (output, 1, len, fp) < len)
57 if (output != buf)
60 free (output);
66 if (output != buf)
67 free (output);
    [all...]
vfprintf.c 1 /* Formatted output to a stream.
32 /* Print formatted output to the stream FP.
39 char *output; local
43 output = vasnprintf (buf, &lenbuf, format, args);
46 if (!output)
52 if (fwrite (output, 1, len, fp) < len)
54 if (output != buf)
57 free (output);
63 if (output != buf)
64 free (output);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeInputStream.java 11 private final OutputStream output; field in class:TeeInputStream
13 public TeeInputStream(InputStream input, OutputStream output)
16 this.output = output;
32 output.write(buf, off, i);
45 output.write(i);
55 this.output.close();
60 return 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);
  /external/protobuf/gtest/test/
gtest_output_test.py 32 """Tests the text output of Google C++ Testing Framework.
90 """Removes all file location info from a Google Test program's output.
93 test_output: the output of a Google Test program.
96 output with all file location info (in the form of
105 def RemoveStackTraceDetails(output):
106 """Removes all stack traces from a Google Test program's output."""
110 'Stack trace: (omitted)\n\n', output)
113 def RemoveStackTraces(output):
114 """Removes all traces of stack traces from a Google Test program's output."""
117 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
    [all...]
  /external/webkit/Source/WebCore/platform/android/
FileChooserAndroid.cpp 40 String output = pathGetFileName(m_filenames[0]);
41 return StringTruncator::centerTruncate(output, static_cast<float>(width), font);
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
PNGImageEncoder.h 45 static bool encode(const SkBitmap&, Vector<unsigned char>* output);
46 static bool encode(const ImageData&, Vector<unsigned char>* output);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptResultException.java 26 AaptResultException(int errorCode, String[] output) {
27 super(errorCode, output);
ProguardResultException.java 26 ProguardResultException(int errorCode, String[] output) {
27 super(errorCode, output);
  /external/libvpx/libvpx/test/
idctllm_test.cc 33 output[i] = ((i&0xF)<4&&(i<64))?0:-1;
38 unsigned char output[256]; member in class:__anon10896::IDCTTest
48 EXPECT_EQ(0, output[i]) << i;
50 EXPECT_EQ(255, output[i]);
57 UUT(input, output, 16, output, 16);
61 EXPECT_EQ(0, output[i]) << "i==" << i;
63 EXPECT_EQ(255, output[i]) << "i==" << i;
71 UUT(input, output, 16, output, 16)
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AdditionalTextOutput.java 52 StringBuilder output = getStringBuilderForType(OutputType.EXCEEDED_DB_QUOTA_MESSAGE); local
70 output.append("UI DELEGATE DATABASE CALLBACK: ");
71 output.append("exceededDatabaseQuotaForSecurityOrigin:{");
72 output.append(protocol + ", " + host + ", " + port + "} ");
73 output.append("database:" + databaseIdentifier + "\n");
77 StringBuilder output = getStringBuilderForType(OutputType.CONSOLE_MESSAGE); local
79 output.append("CONSOLE MESSAGE: line " + consoleMessage.lineNumber());
80 output.append(": " + consoleMessage.message() + "\n");
84 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG); local
86 output.append("ALERT: ")
92 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG); local
100 StringBuilder output = getStringBuilderForType(OutputType.JS_DIALOG); local
    [all...]

Completed in 1009 milliseconds

12 3 4 5 6 7 8 91011>>