Lines Matching defs:bool
79 bool successful = true; /* Allocations successful */
86 bool in_error () const { return !successful; }
88 bool resize (unsigned int count)
112 bool is_empty () const
120 explicit operator bool () const { return !is_empty (); }
134 bool add_range (hb_codepoint_t a, hb_codepoint_t b)
164 void set_array (bool v, const T *array, unsigned int count, unsigned int stride=sizeof(T))
203 bool set_sorted_array (bool v, const T *array, unsigned int count, unsigned int stride=sizeof(T))
234 bool add_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
237 bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr.len ()); }
240 bool del_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T))
243 bool del_sorted_array (const hb_sorted_array_t<const T>& arr) { return del_sorted_array (&arr, arr.len ()); }
309 bool get (hb_codepoint_t g) const
318 static constexpr bool SENTINEL = false;
319 typedef bool value_t;
321 bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; }
323 bool operator () (hb_codepoint_t k) const { return has (k); }
331 bool intersects (hb_codepoint_t first, hb_codepoint_t last) const
349 bool is_equal (const hb_bit_set_t &other) const
377 bool is_subset (const hb_bit_set_t &larger_set) const
411 bool allocate_compact_workspace (hb_vector_t<unsigned>& workspace)
457 const bool passthru_left = op (1, 0);
458 const bool passthru_right = op (0, 1);
585 bool next (hb_codepoint_t *codepoint) const
635 bool previous (hb_codepoint_t *codepoint) const
666 bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const
684 bool previous_range (hb_codepoint_t *first, hb_codepoint_t *last) const
703 bool has_population () const { return population != UINT_MAX; }
751 static constexpr bool is_sorted_iterator = true;
753 bool init = true) : s (&s_), v (INVALID), l(0)
764 bool __more__ () const { return v != INVALID; }
769 bool operator != (const iter_t& o) const
782 page_t *page_for (hb_codepoint_t g, bool insert = false)