Behdad Esfahbod [Wed, 9 Jan 2019 07:28:05 +0000 (23:28 -0800)]
Tighten Coverage iteration
Behdad Esfahbod [Wed, 9 Jan 2019 07:20:23 +0000 (23:20 -0800)]
[subset] Minor
Behdad Esfahbod [Wed, 9 Jan 2019 03:13:17 +0000 (19:13 -0800)]
[iter] More semicolon
Behdad Esfahbod [Wed, 9 Jan 2019 00:38:08 +0000 (16:38 -0800)]
[iter] Use aliasing using for types
Fix ambiguity of hb_sorted_array_t::item_t with gcc. No idea if that's a gcc bug
or what spec requires, but using aliasing using seems to fix it. It probably breaks
our non-C++11 bots, in which case I have to condition the change. Testing.
Behdad Esfahbod [Wed, 9 Jan 2019 00:33:31 +0000 (16:33 -0800)]
[iter] Use static_assert with hb_is_random_access_iterator()
Both, checks constexpr'ness, and fixes build with cra**y implementations
of assert() macro:
test-iter.cc:108:11: error: too many arguments provided to function-like macro invocation
assert (hb_is_random_access_iterator (array_iter_t<int>));
^
./hb-iter.hh:186:42: note: expanded from macro 'hb_is_random_access_iterator'
hb_is_random_access_iterator_of (Iter, typename Iter::item_t)
^
/usr/include/x86_64-linux-gnu/sys/cdefs.h:89:9: note: macro '__STRING' defined here
\#define __STRING(x) #x
^
test-iter.cc:108:3: error: use of undeclared identifier '__STRING'
assert (hb_is_random_access_iterator (array_iter_t<int>));
^
/usr/include/assert.h:91:21: note: expanded from macro 'assert'
: __assert_fail (__STRING(expr), __FILE__, __LINE__, __ASSERT_FUNCTION))
^
Behdad Esfahbod [Wed, 9 Jan 2019 00:27:37 +0000 (16:27 -0800)]
[iter] Remove stray semicolons
Behdad Esfahbod [Tue, 8 Jan 2019 21:48:42 +0000 (13:48 -0800)]
[OT] Implement operator[] for Coverage and ClassDef
Behdad Esfahbod [Tue, 8 Jan 2019 21:43:49 +0000 (13:43 -0800)]
[iter] Add TODO
Behdad Esfahbod [Tue, 8 Jan 2019 21:41:30 +0000 (13:41 -0800)]
[iter] Implement for OT::ArrayOf / OT::SortedArrayOf
Behdad Esfahbod [Tue, 8 Jan 2019 21:05:01 +0000 (13:05 -0800)]
[SortedArrayOf] Fix sub_array() return type
Behdad Esfahbod [Tue, 8 Jan 2019 21:00:06 +0000 (13:00 -0800)]
[iter] Constrain hb_fill() and hb_copy()
Behdad Esfahbod [Tue, 8 Jan 2019 20:57:01 +0000 (12:57 -0800)]
[iter] Add TODO
Behdad Esfahbod [Tue, 8 Jan 2019 20:53:02 +0000 (12:53 -0800)]
[iter] Add hb_is_random_access_iterator()
Behdad Esfahbod [Tue, 8 Jan 2019 20:42:15 +0000 (12:42 -0800)]
[iter] Rename hb_is_[sorted_]iterator() -> hb_is_[sorted_]iterator_of()
Behdad Esfahbod [Tue, 8 Jan 2019 19:27:51 +0000 (14:27 -0500)]
[meta] Add hb_declval() macro
Behdad Esfahbod [Tue, 8 Jan 2019 19:26:41 +0000 (14:26 -0500)]
[iter] Syntax
Behdad Esfahbod [Tue, 8 Jan 2019 19:23:12 +0000 (14:23 -0500)]
[iter] Test hb_is_iterable / hb_is_iterator
Behdad Esfahbod [Tue, 8 Jan 2019 03:00:45 +0000 (22:00 -0500)]
[serialize] Make SortedArrayOf:;serialize() take sorted-iterator
Behdad Esfahbod [Tue, 8 Jan 2019 02:38:49 +0000 (21:38 -0500)]
[iter] Fix operator->
Behdad Esfahbod [Tue, 8 Jan 2019 01:20:44 +0000 (20:20 -0500)]
[array] SFINAE fun
Behdad Esfahbod [Tue, 8 Jan 2019 00:41:52 +0000 (19:41 -0500)]
[meta] Rename
Behdad Esfahbod [Tue, 8 Jan 2019 00:03:53 +0000 (19:03 -0500)]
[array] Remove construction that was removing constness
Behdad Esfahbod [Mon, 7 Jan 2019 23:59:26 +0000 (18:59 -0500)]
[iter] Fix test
Behdad Esfahbod [Mon, 7 Jan 2019 23:36:14 +0000 (18:36 -0500)]
[iter] Remove comment
Behdad Esfahbod [Mon, 7 Jan 2019 23:33:04 +0000 (18:33 -0500)]
[iter] Use is_sorted_iterator
Behdad Esfahbod [Mon, 7 Jan 2019 22:24:23 +0000 (17:24 -0500)]
[iter] Handhold hb_is_iterator() type deduction
by partial-instantiating on Iter.
Behdad Esfahbod [Fri, 4 Jan 2019 16:22:32 +0000 (11:22 -0500)]
Revert "[iter] Add hb_iter_of_t<>"
This reverts commit
d6cbe96e2fc7bc8f1c10e631b52b1ef31ff9a6f5.
Isn't useful, as duplicate inheritance of same type results in ambiguity
errors...
Behdad Esfahbod [Wed, 2 Jan 2019 22:00:01 +0000 (17:00 -0500)]
[iter] Fix warnings
Behdad Esfahbod [Wed, 2 Jan 2019 21:43:52 +0000 (16:43 -0500)]
[iter] Add hb_iter_of_t<>
Behdad Esfahbod [Wed, 2 Jan 2019 21:20:40 +0000 (16:20 -0500)]
[iter] Remove hb_sorted_iter_t
Not enforcing it using type hierarchy.
Behdad Esfahbod [Wed, 2 Jan 2019 21:14:00 +0000 (16:14 -0500)]
[iter] Const correctness
Behdad Esfahbod [Mon, 31 Dec 2018 18:37:13 +0000 (13:37 -0500)]
Add operator= to IntType, commented out
https://github.com/harfbuzz/harfbuzz/pull/1510
Behdad Esfahbod [Mon, 31 Dec 2018 01:58:25 +0000 (20:58 -0500)]
[iter] Minor
Behdad Esfahbod [Mon, 31 Dec 2018 01:51:31 +0000 (20:51 -0500)]
[iter] Make is_random_access_iterator a constant
We cannot rely on constexpr functions...
Behdad Esfahbod [Mon, 31 Dec 2018 01:24:21 +0000 (20:24 -0500)]
Separate GlyphID from HBUINT16
For stricter enforcement.
Behdad Esfahbod [Mon, 31 Dec 2018 01:06:12 +0000 (20:06 -0500)]
[iter] Fix sorted_iter iter class
Behdad Esfahbod [Mon, 31 Dec 2018 00:12:06 +0000 (19:12 -0500)]
[iter/meta] Add hb_is_sorted_iterator()
Behdad Esfahbod [Mon, 31 Dec 2018 00:10:26 +0000 (19:10 -0500)]
[iter] Remove stale comment
Behdad Esfahbod [Mon, 31 Dec 2018 00:06:47 +0000 (19:06 -0500)]
[iter] Port Coverage towards iter_t instead of array_t specifics
Behdad Esfahbod [Sun, 30 Dec 2018 23:54:07 +0000 (18:54 -0500)]
[meta] Move typename around
We'll see if bots like.
Behdad Esfahbod [Sun, 30 Dec 2018 23:49:34 +0000 (18:49 -0500)]
[meta] Move code around
Behdad Esfahbod [Sun, 30 Dec 2018 23:47:47 +0000 (18:47 -0500)]
[iter] WHitespace
Behdad Esfahbod [Sun, 30 Dec 2018 23:45:50 +0000 (18:45 -0500)]
[iter] Port Coverage::serialize to hb_is_iterator
Behdad Esfahbod [Sun, 30 Dec 2018 23:42:14 +0000 (18:42 -0500)]
[iter/meta] Match hb_is_iterator<> using SFINAE
By specifying Item type, which is desirable.
Behdad Esfahbod [Sun, 30 Dec 2018 22:54:24 +0000 (17:54 -0500)]
Minor
Behdad Esfahbod [Sun, 30 Dec 2018 17:01:13 +0000 (12:01 -0500)]
Use C++11 when available
Behdad Esfahbod [Sun, 30 Dec 2018 16:22:16 +0000 (11:22 -0500)]
[ci] Remove unused config for gcc 4.2
[skip ci]
Behdad Esfahbod [Sun, 30 Dec 2018 16:16:14 +0000 (11:16 -0500)]
[ci] Disable other gcc 4.2 bot
Behdad Esfahbod [Sun, 30 Dec 2018 07:11:03 +0000 (02:11 -0500)]
[iter] Add back operator +
Too ugly to remove..
Behdad Esfahbod [Sun, 30 Dec 2018 06:40:08 +0000 (01:40 -0500)]
[iter] Disable operator +
To see if it makes bots happy... This is frustrating.
Behdad Esfahbod [Sat, 29 Dec 2018 02:23:26 +0000 (21:23 -0500)]
[iter] Revert back uses of C++11 auto type deduction
Behdad Esfahbod [Sat, 29 Dec 2018 02:22:26 +0000 (21:22 -0500)]
[iter] Rename
Behdad Esfahbod [Sat, 29 Dec 2018 02:09:15 +0000 (21:09 -0500)]
[iter] Remove friend operator +, hoping to fix some bots
Behdad Esfahbod [Sat, 29 Dec 2018 01:16:44 +0000 (20:16 -0500)]
Use Null() instead of declval(), hoping to fix some bots
Behdad Esfahbod [Sat, 29 Dec 2018 01:01:57 +0000 (20:01 -0500)]
[meta] Don't use template default arguments for functions
That's a C++11 extension apparently...
Behdad Esfahbod [Fri, 28 Dec 2018 21:41:04 +0000 (16:41 -0500)]
[meta] Fix unused-function-template warning
Behdad Esfahbod [Fri, 28 Dec 2018 21:29:48 +0000 (16:29 -0500)]
[iter/meta] Implement is_iterator
Removes use of auto type deduction again, which was not supported on many bots.
Behdad Esfahbod [Fri, 28 Dec 2018 19:40:30 +0000 (14:40 -0500)]
[meta] Minor
Behdad Esfahbod [Fri, 28 Dec 2018 19:34:00 +0000 (14:34 -0500)]
[meta] Move more code here
Behdad Esfahbod [Fri, 28 Dec 2018 19:29:09 +0000 (14:29 -0500)]
[iter/meta] Add hb_is_iterable
Behdad Esfahbod [Thu, 27 Dec 2018 23:39:39 +0000 (18:39 -0500)]
Don't use delegating constructors
Not all C++11 features are created equal when it comes to support...
Behdad Esfahbod [Thu, 27 Dec 2018 22:38:26 +0000 (17:38 -0500)]
[meta] Add enable_if
Behdad Esfahbod [Thu, 27 Dec 2018 22:23:12 +0000 (17:23 -0500)]
Add hb-meta.hh for meta-programming
Behdad Esfahbod [Thu, 27 Dec 2018 22:17:28 +0000 (17:17 -0500)]
[iter] Clarify readonly vs lvalue iterators
lvalue iterators must declare __item_type__ as a reference.
Behdad Esfahbod [Thu, 27 Dec 2018 21:55:18 +0000 (16:55 -0500)]
[iter] Test OT::Coverage iter
Behdad Esfahbod [Thu, 27 Dec 2018 21:29:22 +0000 (16:29 -0500)]
[iter] Streamline vector iterators
Behdad Esfahbod [Thu, 27 Dec 2018 18:29:51 +0000 (13:29 -0500)]
[iter] Make hb_sorted_array_t work as iter
Ugly, but does the job.
Behdad Esfahbod [Thu, 27 Dec 2018 14:56:41 +0000 (09:56 -0500)]
Change hb_void_t implementation
Behdad Esfahbod [Thu, 27 Dec 2018 14:39:34 +0000 (09:39 -0500)]
[iter] Mark Coverage iterator sorted
Behdad Esfahbod [Thu, 27 Dec 2018 03:50:33 +0000 (22:50 -0500)]
[subset] Take iterator in ArrayOf serialize
Still not satisfied with how I can enforce iterators only, but
seems to work for now.
Behdad Esfahbod [Thu, 27 Dec 2018 03:27:23 +0000 (22:27 -0500)]
[iter] Port Coverage iterator to hb_iter_t
Behdad Esfahbod [Thu, 27 Dec 2018 03:21:58 +0000 (22:21 -0500)]
Add hb_pair_t<> and hb_pair()
Behdad Esfahbod [Thu, 27 Dec 2018 03:08:54 +0000 (22:08 -0500)]
[Coverage] Ensure increasing coverage in iteration
Behdad Esfahbod [Thu, 27 Dec 2018 03:05:25 +0000 (22:05 -0500)]
[Coverage] Mark iterator methods const
Behdad Esfahbod [Thu, 27 Dec 2018 01:28:41 +0000 (20:28 -0500)]
[iter] Use operator bool in a few places
Behdad Esfahbod [Thu, 27 Dec 2018 01:06:10 +0000 (20:06 -0500)]
[iter] Remove redundant methods
Behdad Esfahbod [Thu, 27 Dec 2018 00:56:37 +0000 (19:56 -0500)]
[iter] Test default-constructability
Behdad Esfahbod [Thu, 27 Dec 2018 00:54:52 +0000 (19:54 -0500)]
[iter] Implement friend opeator + (int, iter)
Behdad Esfahbod [Thu, 27 Dec 2018 00:49:13 +0000 (19:49 -0500)]
[iter] Remove const_iter
Behdad Esfahbod [Thu, 27 Dec 2018 00:15:21 +0000 (19:15 -0500)]
[ci] Disable macos-llvm-gcc-4.2 again
Not C++11.
Behdad Esfahbod [Thu, 27 Dec 2018 00:14:39 +0000 (19:14 -0500)]
[iter] Remove hack for older compilers
Behdad Esfahbod [Thu, 27 Dec 2018 00:01:46 +0000 (19:01 -0500)]
[iter] Minor
Behdad Esfahbod [Thu, 27 Dec 2018 00:01:30 +0000 (19:01 -0500)]
[iter] Rename random_access() to constexpr is_random_access()
Behdad Esfahbod [Wed, 26 Dec 2018 23:58:42 +0000 (18:58 -0500)]
[iter] Add operator ->
Behdad Esfahbod [Wed, 26 Dec 2018 23:54:27 +0000 (18:54 -0500)]
[iter] Make them work, mostly
Behdad Esfahbod [Wed, 26 Dec 2018 23:54:15 +0000 (18:54 -0500)]
[vector] Add iterator
Behdad Esfahbod [Mon, 21 Jan 2019 01:09:10 +0000 (20:09 -0500)]
Remove wrongly added files
Behdad Esfahbod [Mon, 21 Jan 2019 00:51:08 +0000 (19:51 -0500)]
Use enum for class constant
Behdad Esfahbod [Mon, 21 Jan 2019 00:49:59 +0000 (19:49 -0500)]
[CFF] Use enum for tableTag
Behdad Esfahbod [Mon, 21 Jan 2019 00:47:52 +0000 (19:47 -0500)]
Use static constexpr for large class constants
Behdad Esfahbod [Sat, 19 Jan 2019 14:20:46 +0000 (09:20 -0500)]
Fix sign compare warnings
../../third_party/harfbuzz-ng/src/src/hb-map.hh(56,45): warning: comparison of integers of different signs: 'const hb_codepoint_t' (aka 'const unsigned int') and 'hb_map_t::(anonymous enum at ../../third_party/harfbuzz-ng/src/src/hb-map.hh:169:3)' [-Wsign-compare]
bool is_unused () const { return key == INVALID; }
Behdad Esfahbod [Sat, 19 Jan 2019 14:18:03 +0000 (09:18 -0500)]
Fix warning
warning: '_WIN64' is not defined, evaluates to 0 [-Wundef]
Ebrahim Byagowi [Sat, 19 Jan 2019 13:00:07 +0000 (16:30 +0330)]
[dwrite] Fix delete-non-virtual-dtor warning (#1550)
Behdad Esfahbod [Fri, 18 Jan 2019 19:59:18 +0000 (14:59 -0500)]
Remove TRACE_COLLECT_GLYPHS
Behdad Esfahbod [Fri, 18 Jan 2019 19:53:54 +0000 (14:53 -0500)]
[pragma] Only add if GCC or clang
Behdad Esfahbod [Fri, 18 Jan 2019 18:45:33 +0000 (13:45 -0500)]
[directwrite] More fix
Ebrahim Byagowi [Fri, 18 Jan 2019 18:25:21 +0000 (21:55 +0330)]
[dwrite] Try to fix delete-non-virtual-dtor warnings
Fixes #1548 hopefully
Behdad Esfahbod [Fri, 18 Jan 2019 17:53:06 +0000 (12:53 -0500)]
Remove tracing from closure
Behdad Esfahbod [Fri, 18 Jan 2019 17:48:01 +0000 (12:48 -0500)]
Fix -Wundef errors with __GNUC__
Fixes https://github.com/harfbuzz/harfbuzz/issues/1549
Michiharu Ariza [Fri, 18 Jan 2019 17:43:51 +0000 (09:43 -0800)]
init interp_env_t::hintmask_size
fixes issue #1547