HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 201 - 225 of 11134) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/compiler-rt/test/asan/android_commands/
android_compile.py 10 output = None variable
21 output = args.pop(0) variable
23 if output == None:
24 print "No output file name!"
32 push_to_device(output)
35 os.rename(output, output + '.real')
36 os.symlink(android_run, output)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue141/
ConfigurableTimezoneTest.java 30 String output = yaml.dump(new Date()); local
31 assertTrue(output, output.endsWith("Z\n"));
39 String output = yaml.dump(date); local
40 // System.out.println(output);
41 assertTrue(output, output.trim().endsWith("+1:00"));
42 Date parsed = (Date) yaml.load(output);
  /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/tensorflow/tensorflow/core/kernels/
mfcc_test.cc 36 std::vector<double> output; local
37 mfcc.Compute(input, &output);
44 ASSERT_EQ(expected.size(), output.size());
45 for (int i = 0; i < output.size(); ++i) {
46 EXPECT_NEAR(output[i], expected[i], 1e-04);
61 std::vector<double> output; local
62 mfcc.Compute(input, &output);
65 ASSERT_EQ(expected_size, output.size());
66 for (const double value : output) {
85 std::vector<double> output; local
    [all...]
data_format_ops.h 50 template <typename Output, typename Device>
51 void eval(typename TTypes<T>::ConstFlat input, Output& output,
54 output.template chip<0>(0).device(d) = input.template chip<0>(0);
55 output.template chip<0>(1).device(d) = input.template chip<0>(1);
56 output.template chip<0>(2).device(d) = input.template chip<0>(6);
57 output.template chip<0>(3).device(d) = input.template chip<0>(7);
58 output.template chip<0>(4).device(d) = input.template chip<0>(2);
59 output.template chip<0>(5).device(d) = input.template chip<0>(3);
60 output.template chip<0>(6).device(d) = input.template chip<0>(4)
    [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...]
  /external/python/cpython3/Modules/_sha3/kcp/
KeccakP-1600-64.macros 975 #define copyToStateAndOutput(X, state, output, laneCount) \
982 output[ 0] = X##ba; \
989 output[ 0] = X##ba; \
991 output[ 1] = ~X##be; \
994 output[ 2] = ~X##bi; \
1004 output[ 0] = X##ba; \
1006 output[ 1] = ~X##be; \
1008 output[ 2] = ~X##bi; \
1010 output[ 3] = X##bo; \
1014 output[ 4] = X##bu;
    [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...]
  /external/python/cpython3/Lib/test/
test_augassign.py 119 output = []
123 output.append("__add__ called")
125 output.append("__radd__ called")
127 output.append("__iadd__ called")
131 output.append("__sub__ called")
133 output.append("__rsub__ called")
135 output.append("__isub__ called")
139 output.append("__mul__ called")
141 output.append("__rmul__ called")
143 output.append("__imul__ called"
    [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...]

Completed in 1391 milliseconds

1 2 3 4 5 6 7 891011>>