Home
last modified time | relevance | path

Searched refs:is_method (Results 1 – 6 of 6) sorted by relevance

/third_party/cef/include/base/internal/
Dcef_bind_internal.h213 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/flutter/skia/third_party/externals/dawn/generator/templates/dawn_wire/server/
DServerDoers.cpp23 {% set is_method = method is not none %}
27 {% if is_method and Suffix not in server_handwritten_commands %}
DServerHandlers.cpp22 {% 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/
DServerDoers.cpp23 {% set is_method = method is not none %}
27 {% if is_method and Suffix not in server_handwritten_commands %}
DServerHandlers.cpp21 {% set is_method = method != None %}
22 {% set returns = is_method and method.return_type.name.canonical_case() != "void" %}
/third_party/python/Objects/
Dcall.c786 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()