Searched refs:is_method (Results 1 – 9 of 9) sorted by relevance
/third_party/cef/include/base/internal/ |
D | cef_bind_internal.h | 213 template <bool is_method, typename... Args> 408 static constexpr bool is_method = false; 423 static constexpr bool is_method = false; 439 static constexpr bool is_method = false; 453 static constexpr bool is_method = false; 483 static constexpr bool is_method = false; 505 static constexpr bool is_method = false; 526 static constexpr bool is_method = true; 542 static constexpr bool is_method = true; 560 static constexpr bool is_method = true; [all …]
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | function.rs | 495 let is_method = kind == CXCursor_CXXMethod; in from_ty() localVariable 498 if (is_constructor || is_destructor || is_method) && in from_ty() 505 if is_method || is_constructor || is_destructor { in from_ty() 506 let is_const = is_method && cursor.method_is_const(); in from_ty() 507 let is_virtual = is_method && cursor.method_is_virtual(); in from_ty() 508 let is_static = is_method && cursor.method_is_static(); in from_ty()
|
/third_party/flutter/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/ |
D | ServerDoers.cpp | 23 {% set is_method = method is not none %} 27 {% if is_method and Suffix not in server_handwritten_commands %}
|
D | ServerHandlers.cpp | 22 {% set is_method = method != None %} 23 {% set returns = is_method and method.return_type.name.canonical_case() != "void" %}
|
/third_party/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/ |
D | ServerDoers.cpp | 23 {% set is_method = method is not none %} 27 {% if is_method and Suffix not in server_handwritten_commands %}
|
D | ServerHandlers.cpp | 21 {% set is_method = method != None %} 22 {% set returns = is_method and method.return_type.name.canonical_case() != "void" %}
|
/third_party/python/Objects/ |
D | call.c | 786 int is_method = _PyObject_GetMethod(obj, name, &callable); in PyObject_CallMethodObjArgs() local 790 obj = is_method ? obj : NULL; in PyObject_CallMethodObjArgs() 817 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs() local 821 obj = is_method ? obj : NULL; in _PyObject_CallMethodIdObjArgs()
|
/third_party/libabigail/src/ |
D | abg-dwarf-reader.cc | 13743 class_or_union_sptr is_method, in build_function_type() argument 13821 if (!is_method) in build_function_type() 13831 is_method = klass_type; in build_function_type() 13840 result.reset(is_method in build_function_type() 13841 ? new method_type(is_method, is_const, in build_function_type() 14898 class_or_union_sptr is_method = in build_function_decl() local 14920 function_type_sptr fn_type(build_function_type(rdr, die, is_method, in build_function_decl() 14927 result.reset(is_method in build_function_decl()
|
D | abg-ir.cc | 19675 bool is_method = dynamic_cast<const method_type*>(this); in get_first_non_implicit_parm() local 19679 if (is_method) in get_first_non_implicit_parm() 20268 bool is_method = dynamic_cast<const method_decl*>(this); in get_first_non_implicit_parm() local 20271 if (is_method) in get_first_non_implicit_parm()
|