Home
last modified time | relevance | path

Searched refs:container_type (Results 1 - 25 of 29) sorted by relevance

12

/third_party/json/include/nlohmann/
H A Dbyte_container_with_subtype.hpp25 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 Djson.hpp543 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 Dtest39.h3 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 Dtest39-a-v0.c4 bar(struct container_type* c) in bar()
10 baz(struct container_type* c) in baz()
H A Dtest39-a-v1.c4 bar(struct container_type* c) in bar()
10 baz(struct container_type* c) in baz()
H A Dtest39-c-v1.c10 foo2(struct container_type* c) in foo2()
H A Dtest39-b-v1.c10 foo1(struct container_type* c) in foo1()
H A Dtest39-c-v0.c9 foo2(struct container_type* c) in foo2()
H A Dtest39-b-v0.c9 foo1(struct container_type* c) in foo1()
H A Dtest39-main.c6 struct container_type c; in main()
/third_party/libabigail/tests/data/test-diff-filter/test38/
H A Dtest38.h3 struct container_type struct
8 long long bar(struct container_type*);
9 long long baz(struct container_type*);
H A Dtest38-b.c10 bar(struct container_type* c) in bar()
H A Dtest38-c.c11 baz(struct container_type* c) in baz()
H A Dtest38-a.c6 struct container_type c; in main()
/third_party/libinput/src/
H A Dutil-list.h141 * 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 Damdgpu_cs.h228 #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 Dspecialize.c1133 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 Dcontainer.h24 enum container_type { enum
41 enum container_type type;
/third_party/node/deps/v8/src/torque/
H A Ddeclarations.cc232 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 Dtype-visitor.cc106 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 Dcsa-generator.cc927 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 Ditem.rs602 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 Djerryscript-core.h709 jerry_value_t jerry_create_container (jerry_container_type_t container_type,
/third_party/node/src/
H A Dmemory_tracker-inl.h173 static const typename std::queue<T>::container_type& Get( in TrackField()
/third_party/jerryscript/jerry-core/api/
H A Djerry.c4470 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()

Completed in 27 milliseconds

12