Home
last modified time | relevance | path

Searched refs:kMethodName (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-arraybuffer.cc95 const char* const kMethodName = "get ArrayBuffer.prototype.byteLength"; in BUILTIN() local
97 CHECK_RECEIVER(JSArrayBuffer, array_buffer, kMethodName); in BUILTIN()
98 CHECK_SHARED(false, array_buffer, kMethodName); in BUILTIN()
106 const char* const kMethodName = "get SharedArrayBuffer.prototype.byteLength"; in BUILTIN() local
110 CHECK_SHARED(true, array_buffer, kMethodName); in BUILTIN()
123 const char* kMethodName, bool is_shared) { in SliceHelper() argument
131 CHECK_RECEIVER(JSArrayBuffer, array_buffer, kMethodName); in SliceHelper()
134 CHECK_SHARED(is_shared, array_buffer, kMethodName); in SliceHelper()
141 kMethodName))); in SliceHelper()
213 isolate->factory()->NewStringFromAsciiChecked(kMethodName), in SliceHelper()
[all …]
Dbuiltins-collections.cc15 const char* const kMethodName = "Map.prototype.clear"; in BUILTIN() local
16 CHECK_RECEIVER(JSMap, map, kMethodName); in BUILTIN()
23 const char* const kMethodName = "Set.prototype.clear"; in BUILTIN() local
24 CHECK_RECEIVER(JSSet, set, kMethodName); in BUILTIN()
Dbuiltins-collections-gen.cc1554 const char* const kMethodName = "Map.prototype.forEach"; in TF_BUILTIN() local
1562 ThrowIfNotInstanceType(context, receiver, JS_MAP_TYPE, kMethodName); in TF_BUILTIN()
1634 const char* const kMethodName = "Map Iterator.prototype.next"; in TF_BUILTIN() local
1651 StringConstant(kMethodName), receiver); in TF_BUILTIN()
1785 const char* const kMethodName = "Set.prototype.forEach"; in TF_BUILTIN() local
1793 ThrowIfNotInstanceType(context, receiver, JS_SET_TYPE, kMethodName); in TF_BUILTIN()
1850 const char* const kMethodName = "Set Iterator.prototype.next"; in TF_BUILTIN() local
1865 StringConstant(kMethodName), receiver); in TF_BUILTIN()
/external/grpc-grpc/test/cpp/end2end/
Dgeneric_end2end_test.cc107 const grpc::string kMethodName("/grpc.cpp.test.util.EchoTestService/Echo"); in SendRpc() local
127 generic_stub_->PrepareCall(&cli_ctx, kMethodName, &cli_cq_); in SendRpc()
144 EXPECT_EQ(kMethodName, srv_ctx.method()); in SendRpc()
202 const grpc::string kMethodName("/grpc.cpp.test.util.EchoTestService/Echo"); in TEST_F() local
221 generic_stub_->PrepareUnaryCall(&cli_ctx, kMethodName, in TEST_F()
232 EXPECT_EQ(kMethodName, srv_ctx.method()); in TEST_F()
260 const grpc::string kMethodName( in TEST_F() local
274 generic_stub_->PrepareCall(&cli_ctx, kMethodName, &cli_cq_); in TEST_F()
283 EXPECT_EQ(kMethodName, srv_ctx.method()); in TEST_F()
Dfilter_end2end_test.cc162 const grpc::string kMethodName("/grpc.cpp.test.util.EchoTestService/Echo"); in SendRpc() local
177 generic_stub_->PrepareCall(&cli_ctx, kMethodName, &cli_cq_); in SendRpc()
194 EXPECT_EQ(kMethodName, srv_ctx.method()); in SendRpc()
257 const grpc::string kMethodName( in TEST_F() local
271 generic_stub_->PrepareCall(&cli_ctx, kMethodName, &cli_cq_); in TEST_F()
280 EXPECT_EQ(kMethodName, srv_ctx.method()); in TEST_F()
Dclient_callback_end2end_test.cc108 const grpc::string kMethodName("/grpc.testing.EchoTestService/Echo"); in SendRpcsGeneric() local
124 &cli_ctx, kMethodName, send_buf.get(), &recv_buf, in SendRpcsGeneric()
/external/tensorflow/tensorflow/contrib/saved_model/cc/saved_model/
Dsignature_def_utils_test.cc48 result.set_method_name(kMethodName); in MakeSampleSignatureDef()
57 const string kMethodName = "my_method"; member in tensorflow::FindByKeyTest
74 EXPECT_EQ(kMethodName, signature_def->method_name()); in TEST_F()
/external/grpc-grpc/examples/cpp/helloworld/cocoapods/HelloWorldCpp/
DViewController.mm47 const grpc::string kMethodName("/helloworld.Greeter/SayHello");
53 generic_stub_->Call(&cli_ctx, kMethodName, &cq_, tag(1));
/external/grpc-grpc/test/cpp/cocoapods/generic/
Dgeneric.mm167 const grpc::string kMethodName("/grpc.cpp.test.util.EchoTestService/Echo");
183 generic_stub_->Call(&cli_ctx, kMethodName, &cli_cq_, tag(1));
199 XCTAssertEqual(kMethodName, srv_ctx.method());
/external/grpc-grpc/test/cpp/qps/
Dclient_async.cc887 const grpc::string kMethodName( in StartInternal() local
891 stream_ = prepare_req_(stub_, &context_, kMethodName, cq); in StartInternal()