Home
last modified time | relevance | path

Searched refs:GetResult (Results 1 – 25 of 39) sorted by relevance

12

/external/tensorflow/tensorflow/core/lib/strings/
Dscanner_test.cc44 .GetResult(&remaining, &match)); in TEST_F()
52 .GetResult(&remaining, &match)); in TEST_F()
60 .GetResult(&remaining, &match)); in TEST_F()
71 .GetResult(&remaining, &match)); in TEST_F()
80 .GetResult(&remaining, &match)); in TEST_F()
89 .GetResult(&remaining, &match)); in TEST_F()
95 EXPECT_FALSE(Scanner("a").Eos().GetResult()); in TEST_F()
96 EXPECT_TRUE(Scanner("").Eos().GetResult()); in TEST_F()
97 EXPECT_FALSE(Scanner("abc").OneLiteral("ab").Eos().GetResult()); in TEST_F()
98 EXPECT_TRUE(Scanner("abc").OneLiteral("abc").Eos().GetResult()); in TEST_F()
[all …]
Dproto_text_util.cc25 .GetResult(nullptr, &bool_str)) { in ProtoParseBoolFromScanner()
50 .GetResult(nullptr, &value_sp)) { in ProtoParseStringLiteralFromScanner()
Dscanner.cc44 bool Scanner::GetResult(StringPiece* remaining, StringPiece* capture) { in GetResult() function in tensorflow::strings::Scanner
Dproto_text_util.h137 .GetResult(nullptr, &numeric_str)) { in ProtoParseNumericFromScanner()
Dscanner.h161 bool GetResult(StringPiece* remaining = nullptr,
/external/tensorflow/tensorflow/tools/graph_transforms/
Dtransform_graph.cc52 Scanner(remaining).AnySpace().GetResult(&remaining, &match); in ParseTransformParameters()
62 .GetResult(&remaining, &transform_name); in ParseTransformParameters()
67 if (Scanner(remaining).OneLiteral("(").GetResult(&remaining, &match)) { in ParseTransformParameters()
76 if (Scanner(remaining).OneLiteral(")").GetResult(&remaining, &match)) { in ParseTransformParameters()
82 Scanner(remaining).ZeroOrOneLiteral(",").GetResult(&remaining, &match); in ParseTransformParameters()
83 Scanner(remaining).AnySpace().GetResult(&remaining, &match); in ParseTransformParameters()
88 .GetResult(&remaining, &parameter_name); in ParseTransformParameters()
94 if (Scanner(remaining).OneLiteral("=").GetResult(&remaining, &match)) { in ParseTransformParameters()
104 if (Scanner(remaining).OneLiteral("\"").GetResult(&remaining, &match)) { in ParseTransformParameters()
106 Scanner(remaining).ScanEscapedUntil('"').GetResult( in ParseTransformParameters()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dop_def_builder.cc48 .GetResult(sp, out); in ConsumeAttrName()
57 .GetResult(sp); in ConsumeListPrefix()
69 .GetResult(sp, out); in ConsumeQuotedString()
77 .GetResult(sp, out); in ConsumeAttrType()
92 .GetResult(&remaining, &match)) { in ConsumeAttrNumber()
277 .GetResult(sp, out); in ConsumeInOutName()
286 .GetResult(sp); in ConsumeInOutRefOpen()
290 return Scanner(*sp).OneLiteral(")").AnySpace().GetResult(sp); in ConsumeInOutRefClose()
299 .GetResult(sp, out); in ConsumeInOutNameOrType()
311 .GetResult(sp, out); in ConsumeInOutTimesType()
[all …]
Dshape_inference_testutil.cc249 if (!scanner.GetResult(nullptr, &match) || in MakeShapeFromString()
264 if (!scanner.OneLiteral("]").Eos().GetResult()) { in MakeShapeFromString()
Dnode_def_util.cc553 .GetResult(); in IsValidOpName()
571 return scan.GetResult(); in IsValidDataInputName()
580 .GetResult(); in IsValidControlInputName()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_sender_unittest.cc39 EXPECT_EQ(std::string("5,7,9-12,15,18-19"), builder.GetResult()); in TEST()
54 EXPECT_EQ(std::string("5-7,9-12,15,18-19"), builder.GetResult()); in TEST()
69 EXPECT_EQ(std::string("5,7,9-12,15,18-19,21"), builder.GetResult()); in TEST()
84 EXPECT_EQ(std::string("5,7-12,15,18-19"), builder.GetResult()); in TEST()
99 EXPECT_EQ(std::string("5,7,9-12,15-16,18-19"), builder.GetResult()); in TEST()
115 EXPECT_EQ(std::string("5,7,9-12,15-19"), builder.GetResult()); in TEST()
129 EXPECT_EQ(std::string("5-8,11-15"), builder.GetResult()); in TEST()
141 EXPECT_EQ(std::string("5,7,9,11,15,17,19"), builder.GetResult()); in TEST()
154 EXPECT_EQ(std::string("5-12"), builder.GetResult()); in TEST()
160 EXPECT_EQ(std::string("5"), builder.GetResult()); in TEST()
[all …]
/external/toolchain-utils/bestflags/
Dmock_task.py48 self._cost == other.GetResult(self._stage))
64 def GetResult(self, stage): member in MockTask
Dtask_test.py128 assert result == result_task.GetResult(task.BUILD_STAGE)
139 test_result = result_task.GetResult(task.TEST_STAGE)
Dpipeline_worker.py141 helper_queue.put((task.GetIdentifier(stage), task.GetResult(stage)))
Dpipeline_worker_test.py86 self.assertTrue(task.GetResult(TEST_STAGE), mock_result[identifier])
Dtask.py145 def GetResult(self, stage): member in Task
/external/tensorflow/tensorflow/core/platform/s3/
Ds3_file_system.cc188 n = getObjectOutcome.GetResult().GetContentLength(); in Read()
190 ss << getObjectOutcome.GetResult().GetBody().rdbuf(); in Read()
420 listObjectsResult = listObjectsOutcome.GetResult(); in GetChildren()
469 stats->length = headObjectOutcome.GetResult().GetContentLength(); in Stat()
472 headObjectOutcome.GetResult().GetLastModified().Millis() * 1e6; in Stat()
488 if (listObjectsOutcome.GetResult().GetContents().size() > 0) { in Stat()
558 auto contents = listObjectsOutcome.GetResult().GetContents(); in DeleteDir()
617 listObjectsResult = listObjectsOutcome.GetResult(); in RenameFile()
/external/pdfium/core/fxcrt/xml/
Dcxml_parser.cpp296 return WideString(decoder.GetResult()); in GetAttrValue()
305 return WideString(decoder.GetResult()); in GetAttrValue()
467 content << decoder.GetResult(); in ParseElementInternal()
510 content << decoder.GetResult(); in ParseElementInternal()
/external/pdfium/core/fxcrt/
Dfx_string.cpp54 ByteStringView GetResult() const { in GetResult() function in __anonac05c5150111::CFX_UTF8Encoder
71 return ByteString(encoder.GetResult()); in FX_UTF8Encode()
Dcfx_utf8decoder.h20 WideStringView GetResult() const { return m_Buffer.AsStringView(); } in GetResult() function
/external/tensorflow/tensorflow/core/lib/io/
Dpath.cc218 .GetResult(&remaining, scheme)) { in ParseURI()
227 if (!strings::Scanner(remaining).ScanUntil('/').GetResult(&remaining, host)) { in ParseURI()
/external/golang-protobuf/_conformance/conformance_proto/
Dconformance.pb.go291 func (m *ConformanceResponse) GetResult() isConformanceResponse_Result { func
299 if x, ok := m.GetResult().(*ConformanceResponse_ParseError); ok {
306 if x, ok := m.GetResult().(*ConformanceResponse_SerializeError); ok {
313 if x, ok := m.GetResult().(*ConformanceResponse_RuntimeError); ok {
320 if x, ok := m.GetResult().(*ConformanceResponse_ProtobufPayload); ok {
327 if x, ok := m.GetResult().(*ConformanceResponse_JsonPayload); ok {
334 if x, ok := m.GetResult().(*ConformanceResponse_Skipped); ok {
/external/pdfium/core/fpdfapi/render/
Dcpdf_imagerenderer.h47 bool GetResult() const { return m_Result; } in GetResult() function
/external/tensorflow/tensorflow/core/common_runtime/
Dstep_stats_collector.cc90 bool matched = scanner.GetResult(nullptr, &capture); in ExtractGpuWithStreamAll()
119 bool matched = scanner.GetResult(nullptr, &capture); in ExtractGpuWithoutStream()
/external/tensorflow/tensorflow/python/framework/
Dpython_op_gen_main.cc53 .GetResult(nullptr, &op_name)) { in ReadOpListFromFile()
/external/tensorflow/tensorflow/core/platform/cloud/
Doauth_client_test.cc125 .GetResult(&assertion, &grant_type)); in TEST()

12