Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/node/deps/v8/src/builtins/
Dbuiltins-intl.cc82 const char* const method_name = "Intl.NumberFormat.prototype.formatToParts"; in BUILTIN() local
84 CHECK_RECEIVER(JSNumberFormat, number_format, method_name); in BUILTIN()
106 const char* const method_name = in BUILTIN() local
109 CHECK_RECEIVER(JSReceiver, format_holder, method_name); in BUILTIN()
133 const char* const method_name = "Intl.DateTimeFormat.prototype.formatToParts"; in BUILTIN() local
135 CHECK_RECEIVER(JSObject, date_format_holder, method_name); in BUILTIN()
141 factory->NewStringFromAsciiChecked(method_name), in BUILTIN()
169 BuiltinArguments args, Isolate* isolate, const char* const method_name) { in DateTimeFormatRange() argument
172 CHECK_RECEIVER(JSObject, date_format_holder, method_name); in DateTimeFormatRange()
181 factory->NewStringFromAsciiChecked(method_name), in DateTimeFormatRange()
[all …]
Dbuiltins-typed-array.cc50 const char* method_name = "%TypedArray%.prototype.copyWithin"; in BUILTIN() local
53 JSTypedArray::Validate(isolate, args.receiver(), method_name)); in BUILTIN()
89 method_name))); in BUILTIN()
98 isolate->factory()->NewStringFromAsciiChecked(method_name); in BUILTIN()
143 const char* method_name = "%TypedArray%.prototype.fill"; in BUILTIN() local
146 JSTypedArray::Validate(isolate, args.receiver(), method_name)); in BUILTIN()
182 method_name))); in BUILTIN()
189 isolate->factory()->NewStringFromAsciiChecked(method_name); in BUILTIN()
212 const char* method_name = "%TypedArray%.prototype.includes"; in BUILTIN() local
215 JSTypedArray::Validate(isolate, args.receiver(), method_name)); in BUILTIN()
[all …]
Dbuiltins-generator-gen.cc32 char const* const method_name);
36 char const* const method_name);
42 JSGeneratorObject::ResumeMode resume_mode, char const* const method_name) { in InnerResume() argument
129 char const* const method_name) { in GeneratorPrototypeResume() argument
132 method_name); in GeneratorPrototypeResume()
134 InnerResume(args, generator, value, context, resume_mode, method_name); in GeneratorPrototypeResume()
149 char const* const method_name = "[AsyncModule].evaluate"; in TF_BUILTIN() local
151 method_name); in TF_BUILTIN()
154 method_name); in TF_BUILTIN()
Dbuiltins-bigint.cc128 const char* method_name = "BigInt.prototype.toLocaleString"; in BUILTIN() local
133 isolate, x, ThisBigIntValue(isolate, args.receiver(), method_name)); in BUILTIN()
138 args.atOrUndefined(isolate, 2), method_name)); in BUILTIN()
142 return BigIntToStringImpl(args.receiver(), radix, isolate, method_name); in BUILTIN()
Dbuiltins-weak-refs.cc14 const char* method_name = "FinalizationRegistry.prototype.unregister"; in BUILTIN() local
23 CHECK_RECEIVER(JSFinalizationRegistry, finalization_registry, method_name); in BUILTIN()
Dbuiltins-intl-gen.cc27 const char* method_name);
151 const char* method_name) { in ListFormatCommon() argument
161 ThrowIfNotInstanceType(context, receiver, JS_LIST_FORMAT_TYPE, method_name); in ListFormatCommon()
Dbuiltins-number.cc114 const char* method_name = "Number.prototype.toLocaleString"; in BUILTIN() local
129 isolate->factory()->NewStringFromAsciiChecked(method_name), in BUILTIN()
137 args.atOrUndefined(isolate, 2), method_name)); in BUILTIN()
Dbuiltins-struct.cc24 static const char method_name[] = "SharedStructType"; in BUILTIN() local
30 Object::ToObject(isolate, args.atOrUndefined(isolate, 1), method_name)); in BUILTIN()
/third_party/python/Lib/lib2to3/fixes/
Dfix_dict.py59 method_name = method.value
60 isiter = method_name.startswith("iter")
61 isview = method_name.startswith("view")
63 method_name = method_name[4:]
64 assert method_name in ("keys", "items", "values"), repr(method)
70 Name(method_name,
/third_party/node/deps/v8/src/objects/
Djs-temporal-objects.cc172 const char* method_name);
179 Unit largest_unit, Handle<Object> relative_to, const char* method_name);
192 const DurationRecord& duration, const char* method_name);
198 const char* method_name);
212 const char* method_name);
217 int64_t* result_day_length, const char* method_name);
278 const char* method_name);
299 const char* method_name);
304 const char* method_name);
1116 const char* method_name) { in BuiltinTimeZoneGetPlainDateTimeFor() argument
[all …]
Doption-utils.cc16 const char* method_name) { in GetOptionsObject() argument
35 const char* method_name) { in CoerceOptionsToObject() argument
43 Object::ToObject(isolate, options, method_name), in CoerceOptionsToObject()
51 const char* method_name, in GetStringOption() argument
86 isolate->factory()->NewStringFromAsciiChecked(method_name); in GetStringOption()
102 const char* method_name, in GetBoolOption() argument
Doption-utils.h16 Isolate* isolate, Handle<Object> options, const char* method_name);
20 Isolate* isolate, Handle<Object> options, const char* method_name);
39 std::vector<const char*> values, const char* method_name,
49 const char* method_name, const std::vector<const char*>& str_values, in GetStringOption() argument
54 GetStringOption(isolate, options, name, str_values, method_name, &cstr); in GetStringOption()
153 const char* method_name, bool* result);
Dintl-objects.h97 Isolate* isolate, const char* method_name,
129 Handle<Object> locales, Handle<Object> options, const char* method_name);
147 Handle<Object> options, const char* method_name);
233 Isolate* isolate, Handle<JSReceiver> options, const char* method_name);
237 Isolate* isolate, Handle<JSReceiver> options, const char* method_name,
/third_party/python/Lib/xmlrpc/
Dserver.py303 def system_methodSignature(self, method_name): argument
316 def system_methodHelp(self, method_name): argument
322 if method_name in self.funcs:
323 method = self.funcs[method_name]
327 return self.instance._methodHelp(method_name)
334 method_name,
359 method_name = call['methodName']
365 results.append([self._dispatch(method_name, params)])
862 for method_name in self.system_listMethods():
863 if method_name in self.funcs:
[all …]
/third_party/node/deps/v8/third_party/ittapi/include/
Djitprofiling.h304 char* method_name; /**<\brief The name of the method. It can be optionally member
351 char* method_name; /**<\brief The name of the method. It can be optionally member
403 char* method_name; /**<\brief The name of the method. It can be optionally member
470 char* method_name; /**<\brief The name of the method. It can be optionally member
/third_party/cef/libcef/common/extensions/api/
DBUILD.gn9 method_name = "AddCEFAPIFeatures"
17 method_name = "AddCEFPermissionFeatures"
25 method_name = "AddCEFManifestFeatures"
/third_party/node/deps/v8/third_party/ittapi/ittapi-rs/src/
Djitprofiling_bindings.rs158 pub method_name: *mut ::std::os::raw::c_char, field
207 unsafe { &(*(::std::ptr::null::<_iJIT_Method_Load>())).method_name as *const _ as usize }, in bindgen_test_layout__iJIT_Method_Load()
213 stringify!(method_name) in bindgen_test_layout__iJIT_Method_Load()
318 pub method_name: *mut ::std::os::raw::c_char, field
371 &(*(::std::ptr::null::<_iJIT_Method_Load_V2>())).method_name as *const _ as usize in bindgen_test_layout__iJIT_Method_Load_V2()
378 stringify!(method_name) in bindgen_test_layout__iJIT_Method_Load_V2()
490 pub method_name: *mut ::std::os::raw::c_char, field
556 &(*(::std::ptr::null::<_iJIT_Method_Load_V3>())).method_name as *const _ as usize in bindgen_test_layout__iJIT_Method_Load_V3()
563 stringify!(method_name) in bindgen_test_layout__iJIT_Method_Load_V3()
689 pub method_name: *mut ::std::os::raw::c_char, field
[all …]
/third_party/node/deps/v8/src/diagnostics/
Dsystem-jit-win.cc70 std::wstring method_name(name_len + 1, '\0'); in EventHandler() local
74 const_cast<LPWSTR>(method_name.data()), in EventHandler()
75 static_cast<int>(method_name.size())); in EventHandler()
129 method_name); in EventHandler()
/third_party/python/Tools/peg_generator/pegen/
Dparser.py25 method_name = method.__name__
45 method_name = method.__name__
49 key = mark, method_name, args
82 method_name = method.__name__
86 key = mark, method_name, ()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.h157 char* method_name; member
182 char* method_name; member
/third_party/skia/third_party/externals/dawn/generator/
Ddawn_json_generator.py619 def as_MethodSuffix(type_name, method_name): argument
620 assert not type_name.native and not method_name.native
621 return type_name.CamelCase() + method_name.CamelCase()
678 def as_cMethod(type_name, method_name): argument
683 assert not method_name.native
684 c_method += method_name.CamelCase()
687 def as_cProc(type_name, method_name): argument
692 assert not method_name.native
693 c_proc += method_name.CamelCase()
/third_party/googletest/docs/reference/
Dmocking.md13 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`));` \
14 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`),
17 Defines a mock method *`method_name`* with arguments `(`*`args...`*`)` and
61 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
64 method *`method_name`* of the object *`mock_object`* is called with arguments
70 correspond to each argument of the method *`method_name`*. The expectation will
71 apply only to calls of *`method_name`* whose arguments match all of the
80 EXPECT_CALL(mock_object, method_name(matchers...))
323 `ON_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
325 Defines what happens when the method *`method_name`* of the object
[all …]
/third_party/protobuf/python/
Dmox.py278 def __getattr__(self, method_name): argument
293 return self._CreateMockMethod(method_name)
295 def _CreateMockMethod(self, method_name): argument
306 return MockMethod(method_name, self._expected_calls_queue,
519 def __init__(self, method_name, call_queue, replay_mode): argument
533 self._name = method_name
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
Drepeated_field_test.rb10 (Enumerable.instance_methods - TestMessage.new.repeated_string.methods).each do |method_name|
11 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
24 arr_methods.each do |method_name|
25 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
/third_party/protobuf/ruby/tests/
Drepeated_field_test.rb10 (Enumerable.instance_methods - TestMessage.new.repeated_string.methods).each do |method_name|
11 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
24 arr_methods.each do |method_name|
25 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"

1234