HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 126 - 150 of 8267) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/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/libchrome/base/strings/
utf_string_conversion_utils.cc 71 size_t WriteUnicodeCharacter(uint32_t code_point, std::string* output) {
74 output->push_back(static_cast<char>(code_point));
80 size_t char_offset = output->length();
82 output->resize(char_offset + CBU8_MAX_LENGTH);
84 CBU8_APPEND_UNSAFE(&(*output)[0], char_offset, code_point);
88 output->resize(char_offset);
92 size_t WriteUnicodeCharacter(uint32_t code_point, string16* output) {
95 output->push_back(static_cast<char16>(code_point));
99 size_t char_offset = output->length();
100 output->resize(char_offset + CBU16_MAX_LENGTH)
    [all...]
  /external/vboot_reference/scripts/image_signing/
ensure_secure_kernelparams.sh 67 local output
104 cut -d = -f 2 | cut -d - -f 1,2 --output-delimiter=_)
111 output+="required_kparams=(\n"
112 output+="$(printf "\t'%s'\n" "${required_kparams[@]}")\n)\n"
113 output+="required_kparams_regex=(\n"
114 output+="$(printf "\t'%s'\n" "${required_kparams_regex[@]}")\n)\n"
115 output+="optional_kparams=(\n"
116 output+="$(printf "\t'%s'\n" "${optional_kparams[@]}")\n)\n"
117 output+="optional_kparams_regex=(\n"
118 output+="$(printf "\t'%s'\n" "${optional_kparams_regex[@]}")\n)\n
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 38 import org.apache.commons.io.output.ByteArrayOutputStream;
43 * This class provides static utility methods for input/output operations.
155 * @param output the Writer to close, may be null or already closed
157 public static void closeQuietly(Writer output) {
159 if (output != null) {
160 output.close();
191 * @param output the OutputStream to close, may be null or already closed
193 public static void closeQuietly(OutputStream output) {
195 if (output != null) {
196 output.close()
217 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
235 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
259 ByteArrayOutputStream output = new ByteArrayOutputStream(); local
297 CharArrayWriter output = new CharArrayWriter(); local
321 CharArrayWriter output = new CharArrayWriter(); local
    [all...]
  /frameworks/base/core/java/android/util/
Base64.java 35 * of the output (if any).
40 * Encoder flag bit to omit all line terminators (i.e., the output
62 * should not close the output stream it is wrapping when it
72 public byte[] output; field in class:Base64.Coder
76 * Encode/decode another block of input data. this.output is
83 * include any final bytes in the output.
111 * @param flags controls certain features of the decoded output.
129 * @param flags controls certain features of the decoded output.
149 * @param flags controls certain features of the decoded output.
164 // Maybe we got lucky and allocated exactly enough output space
    [all...]
  /system/tpm/attestation/common/
crypto_utility_impl_test.cc 49 std::vector<uint8_t> output; local
50 CHECK(base::HexStringToBytes(hex, &output));
51 return std::string(reinterpret_cast<char*>(output.data()), output.size());
110 std::string output; local
111 EXPECT_TRUE(crypto_utility_->EncryptData(std::string(), key, key, &output));
116 std::string output; local
117 EXPECT_FALSE(crypto_utility_->EncryptData(std::string(), key, key, &output));
121 std::string output; local
122 EXPECT_FALSE(crypto_utility_->UnsealKey("invalid", &output, &output))
130 std::string output; local
136 std::string output; local
142 std::string output; local
148 std::string output; local
157 std::string output; local
163 std::string output; local
170 std::string output; local
182 EncryptedIdentityCredential output; local
190 EncryptedIdentityCredential output; local
200 std::string output; local
207 std::string output; local
217 std::string output; local
227 std::string output; local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java 70 //Test result output file
73 private void writeTestOutput(String filename, Writer output) throws Exception{
74 output.write("File Name: " + filename);
75 output.write(" Complete: " + CodecTest.onCompleteSuccess);
76 output.write(" Error: " + CodecTest.mPlaybackError);
77 output.write(" Unknown Info: " + CodecTest.mMediaInfoUnknownCount);
78 output.write(" Track Lagging: " + CodecTest.mMediaInfoVideoTrackLaggingCount);
79 output.write(" Bad Interleaving: " + CodecTest.mMediaInfoBadInterleavingCount);
80 output.write(" Not Seekable: " + CodecTest.mMediaInfoNotSeekableCount);
81 output.write(" Info Meta data update: " + CodecTest.mMediaInfoMetdataUpdateCount)
124 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true)); local
    [all...]
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 65 output = BucketOutput()
69 output += '+ "'
71 output += '"('
73 output += '+ "|'
76 output += '('
79 output += '?:'
84 output.addPipe()
88 output += '\\\\' # escape the '-' character.
89 output += letter
92 output.addPipe(
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
Drm.cpp 93 DrmOutput *output = &mOutputs[outputIndex]; local
121 output->connector = connector;
122 output->connected = true;
127 output->encoder = drmModeGetEncoder(mDrmFd, connector->encoder_id);
128 if (!output->encoder) {
133 if (!output->encoder) {
148 output->encoder = encoder;
155 if (!output->encoder) {
161 if (output->encoder->crtc_id) {
163 output->crtc = drmModeGetCrtc(mDrmFd, output->encoder->crtc_id)
266 DrmOutput *output= &mOutputs[outputIndex]; local
310 DrmOutput *output= &mOutputs[outputIndex]; local
428 DrmOutput *output= &mOutputs[outputIndex]; local
460 DrmOutput *output= &mOutputs[outputIndex]; local
480 DrmOutput *output= &mOutputs[outputIndex]; local
500 int output = getOutputIndex(device); local
516 int output = getOutputIndex(device); local
564 DrmOutput *output = &mOutputs[index]; local
593 DrmOutput *output= &mOutputs[outputIndex]; local
614 DrmOutput *output = &mOutputs[index]; local
715 DrmOutput *output= &mOutputs[outputIndex]; local
743 DrmOutput *output= &mOutputs[outputIndex]; local
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/base/
Drm.cpp 93 DrmOutput *output = &mOutputs[outputIndex]; local
121 output->connector = connector;
122 output->connected = true;
127 output->encoder = drmModeGetEncoder(mDrmFd, connector->encoder_id);
128 if (!output->encoder) {
133 if (!output->encoder) {
148 output->encoder = encoder;
155 if (!output->encoder) {
161 if (output->encoder->crtc_id) {
163 output->crtc = drmModeGetCrtc(mDrmFd, output->encoder->crtc_id)
262 DrmOutput *output= &mOutputs[outputIndex]; local
306 DrmOutput *output= &mOutputs[outputIndex]; local
424 DrmOutput *output= &mOutputs[outputIndex]; local
448 DrmOutput *output= &mOutputs[outputIndex]; local
463 int output = getOutputIndex(device); local
475 int output = getOutputIndex(device); local
523 DrmOutput *output = &mOutputs[index]; local
553 DrmOutput *output= &mOutputs[outputIndex]; local
574 DrmOutput *output = &mOutputs[index]; local
676 DrmOutput *output= &mOutputs[outputIndex]; local
704 DrmOutput *output= &mOutputs[outputIndex]; local
    [all...]
  /cts/suite/audio_quality/test_description/processing/
playback_thd.py 27 # Output: THD device (double) in percentile
30 output = []
42 output.append(RESULT_ERROR)
43 output.append(outputData)
44 output.append(outputTypes)
45 return output
55 output.append(RESULT_PASS)
57 output.append(RESULT_OK)
60 output.append(outputData)
61 output.append(outputTypes
    [all...]
recording_thd.py 27 # Output:THD host (double), THD device (double) in percentile
37 output = []
51 output.append(RESULT_ERROR)
52 output.append(outputData)
53 output.append(outputTypes)
54 return output
69 output.append(RESULT_PASS)
71 output.append(RESULT_OK)
76 output.append(outputData)
77 output.append(outputTypes
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_augassign.py 123 output = []
127 output.append("__add__ called")
129 output.append("__radd__ called")
131 output.append("__iadd__ called")
135 output.append("__sub__ called")
137 output.append("__rsub__ called")
139 output.append("__isub__ called")
143 output.append("__mul__ called")
145 output.append("__rmul__ called")
147 output.append("__imul__ called")
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 50 output = StringIO.new
52 LexerMainWithSourceFile::Lexer.main( [], :input => input, :output => output )
54 out_lines = output.string.split( /\n/ )
63 output = StringIO.new
73 LexerMainFromStdIO::Lexer.main( [], :input => input, :output => output )
74 lines = output.string.split( /\n/ )
88 output = StringIO.new
93 :input => input, :output => output
    [all...]
  /external/e2fsprogs/lib/ss/
list_rqs.c 30 FILE *output; local
48 output = fdopen(fd, "w");
51 fprintf (output, "Available %s requests:\n\n",
62 fputs(*name, output);
65 fputs(", ", output);
69 fputc('\n', output);
73 fputc(' ', output);
74 fputs(entry->info_string, output);
75 fputc('\n', output);
78 fclose(output);
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
gtest-config.in 28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
265 # Do the output in the correct order so that these can be used in-line of
267 output=""
268 test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags"
269 test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags"
270 test "$echo_ldflags" = "yes" && output="$output $gtest_ldflags
    [all...]
  /external/google-breakpad/src/testing/scripts/
gmock-config.in 28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
294 # Do the output in the correct order so that these can be used in-line of
296 output=""
297 test "$echo_cppflags" = "yes" && output="$output $gmock_cppflags"
298 test "$echo_cxxflags" = "yes" && output="$output $gmock_cxxflags"
299 test "$echo_ldflags" = "yes" && output="$output $gmock_ldflags
    [all...]
  /external/googletest/googlemock/scripts/
gmock-config.in 28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
294 # Do the output in the correct order so that these can be used in-line of
296 output=""
297 test "$echo_cppflags" = "yes" && output="$output $gmock_cppflags"
298 test "$echo_cxxflags" = "yes" && output="$output $gmock_cxxflags"
299 test "$echo_ldflags" = "yes" && output="$output $gmock_ldflags
    [all...]
  /external/googletest/googletest/scripts/
gtest-config.in 28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
265 # Do the output in the correct order so that these can be used in-line of
267 output=""
268 test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags"
269 test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags"
270 test "$echo_ldflags" = "yes" && output="$output $gtest_ldflags
    [all...]
  /external/protobuf/gtest/scripts/
gtest-config.in 28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
265 # Do the output in the correct order so that these can be used in-line of
267 output=""
268 test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags"
269 test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags"
270 test "$echo_ldflags" = "yes" && output="$output $gtest_ldflags
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
PasswordTransformationMethodTest.java 24 CharSequence output = transformationMethod.getTransformation("foobar", null); local
25 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022\u2022\u2022")); //using the escaped characters for cross platform compatibility.
30 CharSequence output = transformationMethod.getTransformation(" baz ", null); local
31 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022\u2022"));
36 CharSequence output = transformationMethod.getTransformation(" ", null); local
37 assertThat(output.toString(), is("\u2022\u2022\u2022\u2022"));
42 CharSequence output = transformationMethod.getTransformation("", null); local
43 assertThat(output.toString(), is(""));
48 CharSequence output = transformationMethod.getTransformation(null, null); local
49 assertThat(output.toString(), is(""))
    [all...]
  /external/selinux/libsepol/cil/test/unit/
AllTests.c 40 /* disable cil log output */
43 CuString *output = CuStringNew(); local
55 CuSuiteDetails(suite, output);
56 CuSuiteSummary(suite, output);
59 CuSuiteDetails(suiteResolve, output);
60 CuSuiteSummary(suiteResolve, output);
63 CuSuiteDetails(suiteBuild, output);
64 CuSuiteSummary(suiteBuild, output);
67 CuSuiteDetails(suiteIntegration, output);
68 CuSuiteSummary(suiteIntegration, output);
    [all...]
  /external/shflags/bin/
gen_test_results.sh 4 # This script runs the provided unit tests and sends the output to the
36 DEFINE_string output_dir "`pwd`" 'output dir' d
37 DEFINE_string output_file "${os_name}-${os_version}.txt" 'output file' o
41 # Determine output filename.
42 output="${FLAGS_output_dir:+${FLAGS_output_dir}/}${FLAGS_output_file}"
43 output=`shlib_relToAbsPath "${output}"`
48 if [ ${FLAGS_dry_run} -eq ${FLAGS_FALSE} -a -f "${output}" ]; then
50 rm -f "${output}"
52 echo "not overwriting '${output}'" >&
    [all...]
  /external/syslinux/utils/
gethostip.c 33 {"full-output", 0, NULL, 'f'},
50 int output = 0; local
62 output |= 2; /* Decimal output */
65 output |= 4; /* Hexadecimal output */
68 output |= 1; /* Canonical name output */
71 output = 7; /* Full output */
    [all...]

Completed in 1791 milliseconds

1 2 3 4 56 7 8 91011>>