Home
last modified time | relevance | path

Searched refs:UNARY (Results 1 – 25 of 82) sorted by relevance

1234

/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB27078833.input6 PRE_INCR(Precedence.UNARY),
7 PRE_DECR(Precedence.UNARY),
8 PLUS(Precedence.UNARY),
9 NEG(Precedence.UNARY),
10 COMP(Precedence.UNARY),
11 NOT(Precedence.UNARY),
DB27078833.output5 PRE_INCR(Precedence.UNARY),
6 PRE_DECR(Precedence.UNARY),
7 PLUS(Precedence.UNARY),
8 NEG(Precedence.UNARY),
9 COMP(Precedence.UNARY),
10 NOT(Precedence.UNARY),
/external/turbine/java/com/google/turbine/tree/
DTurbineOperatorKind.java26 PRE_INCR("++", Precedence.UNARY),
27 PRE_DECR("--", Precedence.UNARY),
28 UNARY_PLUS("+", Precedence.UNARY),
29 NEG("-", Precedence.UNARY),
30 BITWISE_COMP("~", Precedence.UNARY),
31 NOT("!", Precedence.UNARY),
76 UNARY(12), enumConstant
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DServiceDescriptorTest.java70 .setType(MethodType.UNARY) in failsOnNonMatchingNames()
86 .setType(MethodType.UNARY) in failsOnNonDuplicateNames()
92 .setType(MethodType.UNARY) in failsOnNonDuplicateNames()
109 .setType(MethodType.UNARY) in toStringTest()
116 .setType(MethodType.UNARY) in toStringTest()
DMethodDescriptorTest.java78 .setType(MethodType.UNARY) in safe()
89 assertEquals(MethodType.UNARY, newDescriptor.getType()); in safe()
141 .setType(MethodType.UNARY) in toBuilderTest()
153 .setType(MethodType.UNARY) in toBuilderTest()
180 .setType(MethodType.UNARY) in toStringTest()
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DMethodDescriptor.java85 UNARY, enumConstant
116 return this == UNARY || this == SERVER_STREAMING; in clientSendsOneMessage()
127 return this == UNARY || this == CLIENT_STREAMING; in serverSendsOneMessage()
236 Preconditions.checkArgument(!safe || type == MethodType.UNARY, in MethodDescriptor()
/external/grpc-grpc-java/services/src/generated/main/grpc/io/grpc/channelz/v1/
DChannelzGrpc.java41 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
50 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getGetTopChannelsMethod()
73 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
82 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getGetServersMethod()
105 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
114 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getGetServerSocketsMethod()
137 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
146 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getGetChannelMethod()
169 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
178 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getGetSubchannelMethod()
[all …]
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/
Dserver_interceptor.h59 enum class Type { UNARY, CLIENT_STREAMING, SERVER_STREAMING, BIDI_STREAMING }; enumerator
82 static_assert(Type::UNARY ==
Dclient_interceptor.h72 UNARY, enumerator
101 static_assert(Type::UNARY ==
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/
Dserver_interceptor.h59 enum class Type { UNARY, CLIENT_STREAMING, SERVER_STREAMING, BIDI_STREAMING }; enumerator
82 static_assert(Type::UNARY ==
Dclient_interceptor.h72 UNARY, enumerator
101 static_assert(Type::UNARY ==
/external/grpc-grpc/test/cpp/qps/
Djson_run_localhost_scenarios.bzl3UNARY", "load_params": {"poisson": {"offered_load": 37500}}, "histogram_params": {"resolution": 0.…
Dqps_json_driver_scenarios.bzl3UNARY", "load_params": {"closed_loop": {}}, "histogram_params": {"resolution": 0.01, "max_possible…
Dinproc_sync_unary_ping_pong_test.cc43 client_config.set_rpc_type(UNARY); in RunSynchronousUnaryPingPong()
Dsecure_sync_unary_ping_pong_test.cc43 client_config.set_rpc_type(UNARY); in RunSynchronousUnaryPingPong()
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DRpcType.php15 const UNARY = 0; define in Grpc\\Testing\\RpcType
/external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
DOkHttpClientStreamTest.java76 .setType(MethodDescriptor.MethodType.UNARY) in setUp()
98 assertEquals(MethodType.UNARY, stream.getType()); in getType()
186 .setType(MethodDescriptor.MethodType.UNARY) in getUnaryRequest()
/external/llvm-project/llvm/test/tools/llvm-rc/
Dparser-expr.test35 … llvm-rc /dry-run /V -- %p/Inputs/parser-expr-bad-unary.rc 2>&1 | FileCheck %s --check-prefix UNARY
37 ; UNARY: llvm-rc: Error parsing file: expected ',', got ~
/external/grpc-grpc-java/testing-proto/src/test/java/io/grpc/testing/protobuf/
DSimpleServiceTest.java22 import static io.grpc.MethodDescriptor.MethodType.UNARY;
61 assertEquals(UNARY, genericTypeShouldMatchWhenAssigned.getType()); in serviceMethodDescriotrs()
/external/tensorflow/tensorflow/core/ops/
Dmath_ops.cc204 #define UNARY() \ macro
231 REGISTER_OP("Neg").UNARY();
233 REGISTER_OP("Inv").UNARY();
237 REGISTER_OP("Reciprocal").UNARY();
241 REGISTER_OP("Square").UNARY();
249 REGISTER_OP("Round").UNARY();
292 REGISTER_OP("Tan").UNARY();
294 REGISTER_OP("Asin").UNARY();
296 REGISTER_OP("Acos").UNARY();
298 REGISTER_OP("Atan").UNARY();
[all …]
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/
DReconnectServiceGrpc.java40 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
49 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getStartMethod()
72 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
81 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getStopMethod()
DTestServiceGrpc.java41 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
50 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getEmptyCallMethod()
73 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
82 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getUnaryCallMethod()
105 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
114 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getCacheableUnaryCallMethod()
265 methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
274 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getUnimplementedCallMethod()
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/driver/
DLoadClient.java181 if (config.getRpcType() == Control.RpcType.UNARY) { in start()
185 if (config.getRpcType() == Control.RpcType.UNARY) { in start()
195 if (config.getRpcType() == Control.RpcType.UNARY) { in start()
199 if (config.getRpcType() == Control.RpcType.UNARY) { in start()
/external/grpc-grpc-java/testing/src/main/java/io/grpc/testing/
DTestMethodDescriptors.java44 .setType(MethodType.UNARY) in voidMethod()
/external/grpc-grpc/src/python/grpcio_tests/tests/qps/
Dworker_server.py147 if config.rpc_type == control_pb2.UNARY:
154 if config.rpc_type == control_pb2.UNARY:

1234