Home
last modified time | relevance | path

Searched refs:IsAny (Results 1 – 9 of 9) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/
DMathClientMockableTest.cs39 …mockClient.Setup(m => m.Div(Moq.It.IsAny<DivArgs>(), null, null, CancellationToken.None)).Returns(… in ClientBaseBlockingUnaryCallCanBeMocked()
49 …mockClient.Setup(m => m.Div(Moq.It.IsAny<DivArgs>(), Moq.It.IsAny<CallOptions>())).Returns(expecte… in ClientBaseBlockingUnaryCallWithCallOptionsCallCanBeMocked()
60 …mockClient.Setup(m => m.DivAsync(Moq.It.IsAny<DivArgs>(), null, null, CancellationToken.None)).Ret… in ClientBaseAsyncUnaryCallCanBeMocked()
84 …mockClient.Setup(m => m.Fib(Moq.It.IsAny<FibArgs>(), null, null, CancellationToken.None)).Returns(… in ClientBaseServerStreamingCallCanBeMocked()
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc534 if (current_->IsAny()) { in StartObject()
562 Push("value", IsAny(*Lookup("value")) ? Item::ANY : Item::MESSAGE, true, in StartObject()
626 Push(name, IsAny(*field) ? Item::ANY : Item::MESSAGE, false, false); in StartObject()
638 if (current_->IsAny()) { in EndObject()
706 if (current_->IsAny()) { in StartList()
869 if (current_->IsAny()) { in EndList()
1079 if (current_->IsAny()) { in RenderDataPiece()
1293 bool ProtoStreamObjectWriter::IsAny(const google::protobuf::Field& field) { in IsAny() function in google::protobuf::util::converter::ProtoStreamObjectWriter
Dprotostream_objectwriter.h275 bool IsAny() { return item_type_ == ANY; } in IsAny() function
332 inline bool IsAny(const google::protobuf::Field& field);
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h29 bool IsAny(const NodeDef& node);
Dop_types.cc47 bool IsAny(const NodeDef& node) { return node.op() == "Any"; } in IsAny() function
/external/llvm-project/clang/lib/Parse/
DParsePragma.cpp1287 bool IsAny = false; in ParsePragmaAttributeSubjectMatchRuleSet() local
1291 IsAny = true; in ParsePragmaAttributeSubjectMatchRuleSet()
1383 } while (IsAny && TryConsumeToken(tok::comma)); in ParsePragmaAttributeSubjectMatchRuleSet()
1385 if (IsAny) in ParsePragmaAttributeSubjectMatchRuleSet()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dlayout_optimizer.cc321 IsMin(node) || IsAll(node) || IsAny(node); in IsReduceOp()
Dgeneric_layout_optimizer_transposer.cc2103 IsMin(node) || IsAll(node) || IsAny(node); in IsReduceOp()
Dconstant_folding.cc2817 } else if (IsAny(*node) || IsAll(*node)) { in ReplaceReductionWithIdentity()