/third_party/json/include/nlohmann/ |
H A D | byte_container_with_subtype.hpp | 25 using container_type = BinaryType; 29 byte_container_with_subtype() noexcept(noexcept(container_type())) in noexcept() 30 : container_type() in noexcept() 34 byte_container_with_subtype(const container_type& b) noexcept(noexcept(container_type(b))) in noexcept() 35 : container_type(b) in noexcept() 39 byte_container_with_subtype(container_type&& b) noexcept(noexcept(container_type(std::move(b)))) in noexcept() 40 : container_type(std::move(b)) in noexcept() 44 byte_container_with_subtype(const container_type [all...] |
H A D | json.hpp | 543 json_value(const typename binary_t::container_type& value) : binary(create<binary_t>(value)) {} in json_value() 546 json_value(typename binary_t::container_type&& value) : binary(create<binary_t>(std::move(value))) {} in json_value() 948 static basic_json binary(const typename binary_t::container_type& init) in binary() 959 static basic_json binary(const typename binary_t::container_type& init, typename binary_t::subtype_type subtype) in binary() 970 static basic_json binary(typename binary_t::container_type&& init) in binary() 981 static basic_json binary(typename binary_t::container_type&& init, typename binary_t::subtype_type subtype) in binary() 3547 void swap(typename binary_t::container_type& other) // NOLINT(bugprone-exception-escape) in swap() 3557 JSON_THROW(type_error::create(310, detail::concat("cannot use swap(binary_t::container_type&) with ", type_name()), this)); in swap()
|
/third_party/libabigail/tests/data/test-diff-filter/test39/ |
H A D | test39.h | 3 struct container_type struct 8 long long bar(struct container_type*); 9 long long baz(struct container_type*); 10 long long foo1(struct container_type*); 11 long long foo2(struct container_type*);
|
H A D | test39-a-v0.c | 4 bar(struct container_type* c) in bar() 10 baz(struct container_type* c) in baz()
|
H A D | test39-a-v1.c | 4 bar(struct container_type* c) in bar() 10 baz(struct container_type* c) in baz()
|
H A D | test39-c-v1.c | 10 foo2(struct container_type* c) in foo2()
|
H A D | test39-b-v1.c | 10 foo1(struct container_type* c) in foo1()
|
H A D | test39-c-v0.c | 9 foo2(struct container_type* c) in foo2()
|
H A D | test39-b-v0.c | 9 foo1(struct container_type* c) in foo1()
|
H A D | test39-main.c | 6 struct container_type c; in main()
|
/third_party/libabigail/tests/data/test-diff-filter/test38/ |
H A D | test38.h | 3 struct container_type struct 8 long long bar(struct container_type*); 9 long long baz(struct container_type*);
|
H A D | test38-b.c | 10 bar(struct container_type* c) in bar()
|
H A D | test38-c.c | 11 baz(struct container_type* c) in baz()
|
H A D | test38-a.c | 6 struct container_type c; in main()
|
/third_party/libinput/src/ |
H A D | util-list.h | 141 * Given a list 'head', return the first entry of type 'container_type' that 157 #define list_first_entry_by_type(head, container_type, member) \ 158 container_of((head)->next, container_type, member)
|
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/ |
H A D | amdgpu_cs.h | 228 #define get_container(member_ptr, container_type, container_member) \ 229 (container_type *)((char *)(member_ptr) - offsetof(container_type, container_member))
|
/third_party/python/Python/ |
H A D | specialize.c | 1133 binary_subscr_fail_kind(PyTypeObject *container_type, PyObject *sub) in binary_subscr_fail_kind() argument 1135 if (container_type == &PyUnicode_Type) { in binary_subscr_fail_kind() 1144 else if (strcmp(container_type->tp_name, "array.array") == 0) { in binary_subscr_fail_kind() 1153 else if (container_type->tp_as_buffer) { in binary_subscr_fail_kind() 1162 else if (container_type->tp_as_sequence) { in binary_subscr_fail_kind() 1163 if (PyLong_CheckExact(sub) && container_type->tp_as_sequence->sq_item) { in binary_subscr_fail_kind() 1193 PyTypeObject *container_type = Py_TYPE(container); in _Py_Specialize_BinarySubscr() local 1194 if (container_type == &PyList_Type) { in _Py_Specialize_BinarySubscr() 1203 if (container_type == &PyTuple_Type) { in _Py_Specialize_BinarySubscr() 1212 if (container_type in _Py_Specialize_BinarySubscr() 1268 PyTypeObject *container_type = Py_TYPE(container); _Py_Specialize_StoreSubscr() local [all...] |
/third_party/alsa-utils/axfer/ |
H A D | container.h | 24 enum container_type { enum 41 enum container_type type;
|
/third_party/node/deps/v8/src/torque/ |
H A D | declarations.cc | 232 Method* Declarations::CreateMethod(AggregateType* container_type, in CreateMethod() argument 236 "Method_" + container_type->SimpleName() + "_" + name); in CreateMethod() 238 container_type, generated_name, name, std::move(signature), body))); in CreateMethod() 239 container_type->RegisterMethod(result); in CreateMethod()
|
H A D | type-visitor.cc | 106 void DeclareMethods(AggregateType* container_type, in DeclareMethods() argument 120 container_type); in DeclareMethods() 121 Method* m = Declarations::CreateMethod(container_type, method_name, in DeclareMethods()
|
H A D | csa-generator.cc | 927 std::string container_type = smi_tagged_type in GetBitFieldSpecialization() local 936 << offset << ", " << field.num_bits << ", " << container_type << ">"; in GetBitFieldSpecialization()
|
/third_party/rust/crates/clap/clap_derive/src/ |
H A D | item.rs | 602 let container_type = Ty::from_syn_ty(ty); in push_attrs() 603 if *container_type != Ty::Vec { in push_attrs() 734 let container_type = Ty::from_syn_ty(ty); in push_attrs() 735 if *container_type != Ty::Vec { in push_attrs()
|
/third_party/jerryscript/jerry-core/include/ |
H A D | jerryscript-core.h | 709 jerry_value_t jerry_create_container (jerry_container_type_t container_type,
|
/third_party/node/src/ |
H A D | memory_tracker-inl.h | 173 static const typename std::queue<T>::container_type& Get( in TrackField()
|
/third_party/jerryscript/jerry-core/api/ |
H A D | jerry.c | 4470 jerry_create_container (jerry_container_type_t container_type, /**< Type of the container */ in jerry_create_container() argument 4489 switch (container_type) in jerry_create_container() 4549 JERRY_UNUSED (container_type); in jerry_create_container()
|