Home
last modified time | relevance | path

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

/third_party/ltp/tools/sparse/sparse-src/validation/preprocessor/
Dpreprocessor2.c3 #define UNARY(x) BINARY(x) macro
6 UNARY(TWO)
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DRpcType.php17 const UNARY = 0; define in Grpc\\Testing\\RpcType
36 self::UNARY => 'UNARY',
/third_party/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 ==
/third_party/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()
Dclient_callback.cc370 case UNARY: in CreateCallbackClient()
Dclient_sync.cc407 case UNARY: in CreateSynchronousClient()
Dclient_async.cc936 case UNARY: in CreateAsyncClient()
/third_party/grpc/src/python/grpcio_tests/tests/qps/
Dworker_server.py153 if config.rpc_type == control_pb2.UNARY:
164 if config.rpc_type == control_pb2.UNARY:
/third_party/boost/boost/spirit/home/support/utree/
Doperators.hpp526 BOOST_SPIRIT_UTREE_CREATE_LOGICAL_FUNCTION(UNARY, not_, !a) in BOOST_SPIRIT_UTREE_CREATE_LOGICAL_FUNCTION()
533 BOOST_SPIRIT_UTREE_CREATE_ARITHMETIC_FUNCTION(UNARY, negate, -a) in BOOST_SPIRIT_UTREE_CREATE_LOGICAL_FUNCTION()
540 BOOST_SPIRIT_UTREE_CREATE_INTEGRAL_FUNCTION(UNARY, invert, ~a) in BOOST_SPIRIT_UTREE_CREATE_LOGICAL_FUNCTION()
/third_party/ltp/tools/sparse/sparse-src/Documentation/
Dtest-suite.rst168 #define UNARY(x) BINARY(x)
171 UNARY(TWO)
/third_party/grpc/src/php/tests/qps/
Dclient.php124 if ($config->getRpcType() == Grpc\Testing\RpcType::UNARY) {
/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y214 %right UNARY
739 | '!' expression %prec UNARY {
743 | '~' expression %prec UNARY {
747 | '-' expression %prec UNARY {
751 | '+' expression %prec UNARY {
/third_party/grpc/src/python/grpcio_tests/tests_aio/benchmark/
Dworker_servicer.py132 if config.rpc_type == control_pb2.UNARY:
/third_party/glslang/glslang/MachineIndependent/preprocessor/
DPp.cpp352 COND, LOGOR, LOGAND, OR, XOR, AND, EQUAL, RELATION, SHIFT, ADD, MUL, UNARY, enumerator
485 token = eval(token, UNARY, shortCircuit, res, err, ppToken); in eval()
/third_party/flatbuffers/tests/MyGame/Example/
DMonsterStorageGrpc.java82 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getStoreMethod()
/third_party/grpc/src/proto/grpc/testing/
Dcontrol.proto40 UNARY = 0; enumerator
/third_party/grpc/test/cpp/end2end/
Dserver_interceptors_end2end_test.cc63 (type == experimental::ServerRpcInfo::Type::UNARY || in LoggingInterceptor()
Dclient_interceptors_end2end_test.cc64 EXPECT_EQ(info->type(), experimental::ClientRpcInfo::Type::UNARY); in HijackingInterceptor()