Home
last modified time | relevance | path

Searched defs:hb_vector_t (Results 1 – 3 of 3) sorted by relevance

/third_party/harfbuzz/src/
Dhb-vector.hh36 struct hb_vector_t struct
41 hb_vector_t () { init (); } in hb_vector_t() argument
42 hb_vector_t (const hb_vector_t &o) in hb_vector_t() argument
48 hb_vector_t (hb_vector_t &&o) in hb_vector_t() function
55 ~hb_vector_t () { fini (); } in ~hb_vector_t() argument
58 int allocated; /* == -1 means allocation failed. */
60 unsigned int length;
62 Type *arrayZ;
64 void init () in init()
90 hb_vector_t& operator = (const hb_vector_t &o) in operator =() argument
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-vector.hh36 struct hb_vector_t struct
41 hb_vector_t () { init (); } in hb_vector_t() argument
42 hb_vector_t (const hb_vector_t &o) in hb_vector_t() function
48 hb_vector_t (hb_vector_t &&o) in hb_vector_t() function
55 ~hb_vector_t () { fini (); } in ~hb_vector_t() argument
58 int allocated; /* == -1 means allocation failed. */
60 unsigned int length;
85 hb_vector_t& operator = (const hb_vector_t &o) in operator =() argument
92 hb_vector_t& operator = (hb_vector_t &&o) in operator =() argument
105 bool operator == (const hb_vector_t &o) const { return as_array () == o.as_array (); } in operator ==() argument
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-vector.hh36 struct hb_vector_t struct
41 hb_vector_t () = default; argument
42 hb_vector_t (std::initializer_list<Type> lst) : hb_vector_t () in hb_vector_t() function
50 hb_vector_t (const Iterable &o) : hb_vector_t () in hb_vector_t() argument
56 hb_vector_t (const hb_vector_t &o) : hb_vector_t () in hb_vector_t() argument
61 hb_vector_t (hb_vector_t &&o) in hb_vector_t() argument
68 ~hb_vector_t () { fini (); } in ~hb_vector_t() argument
71 int allocated = 0; /* == -1 means allocation failed. */
73 unsigned int length = 0;
75 Type *arrayZ = nullptr;
[all …]