Home
last modified time | relevance | path

Searched refs:output_str (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/api/
Drtc_event_log_output_file_unittest.cc66 const std::string output_str = "one two three"; in TEST_F() local
69 output_file->Write(output_str); in TEST_F()
72 EXPECT_EQ(GetOutputFileContents(), output_str); in TEST_F()
/external/libtextclassifier/native/utils/tflite/
Dstring_projection.cc359 std::string output_str(str, len); in PreProcessString() local
360 std::transform(output_str.begin(), output_str.end(), output_str.begin(), in PreProcessString()
365 StripTrailingAsciiPunctuation(&output_str); in PreProcessString()
368 if (output_str.empty()) { in PreProcessString()
369 output_str.assign(str, len); in PreProcessString()
371 return output_str; in PreProcessString()
/external/tensorflow/tensorflow/lite/toco/python/
Dtoco_from_protos.py50 output_str = _pywrap_toco_api.TocoConvert(
57 open(FLAGS.model_output_file, "wb").write(output_str)
/external/webrtc/modules/video_coding/codecs/test/
Dplot_webrtc_test_logs.py366 output_str = ""
369 output_str = output_str + ("%s. %s\n" % (i, m[1]))
371 return output_str
/external/tensorflow/tensorflow/python/keras/layers/
Dmulti_head_attention.py97 output_str = ""
103 output_str += char
115 output_str += char
117 equation = "%s,%s->%s" % (input_str, kernel_str, output_str)
119 return equation, bias_axes, len(output_str)
/external/toolchain-utils/crosperf/
Dsuite_runner_unittest.py81 output_str = ("profiler=custom_perf profiler_args='record -a -e "
84 self.assertEqual(res, output_str)
88 output_str = ('dut_config='
95 self.assertEqual(res, output_str)
/external/autotest/client/cros/
Dmemory_bandwidth_logger.py200 output_str = \
204 logging.debug(output_str)
/external/webrtc/modules/audio_coding/neteq/
Dneteq_decoder_plc_unittest.cc144 explicit AudioChecksumWithOutput(std::string* output_str) in AudioChecksumWithOutput() argument
145 : output_str_(*output_str) {} in AudioChecksumWithOutput()
/external/llvm-project/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py782 output_str = output
785 output_str = output.decode()
786 assert isinstance(output_str, str)
787 lines = output_str.split('\n')
801 logging.error('otool output was:\n{}'.format(output_str))
/external/llvm-project/lldb/source/Host/macosx/objcxx/
DHostInfoMacOSX.mm386 std::string output_str;
389 &output_str, std::chrono::seconds(15));
392 if (status != 0 || output_str.empty())
397 llvm::StringRef output(output_str);
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Ddotest.py707 output_str = cmd_output.decode("utf-8")
708 if "DBGFileMappedPaths = " in output_str:
710 print(output_str)
/external/tensorflow/tensorflow/core/kernels/linalg/
Deinsum_op_impl.h135 string output_str; in ParseEquation() local
136 TF_RETURN_IF_ERROR(ParseEinsumEquation(equation, &input_str, &output_str)); in ParseEquation()
148 MapToLabels(output_str, output_labels, &label_mapping); in ParseEquation()
/external/igt-gpu-tools/runner/
Dresultgen.c160 const char *output_str; member
180 if (!strncmp(resultstring, resultmap[i].output_str, wordlen)) { in parse_result_string()