Bug 1508472 - Part 4: Fourth batch of comment fix-ups in preparation for the tree reformat r=sylvestre

This is a best effort attempt at ensuring that the adverse impact of
reformatting the entire tree over the comments would be minimal.  I've used a
combination of strategies including disabling of formatting, some manual
formatting and some changes to formatting to work around some clang-format
limitations.

Differential Revision: https://phabricator.services.mozilla.com/D13193
This commit is contained in:
Ehsan Akhgari
2018-11-28 09:16:55 +00:00
parent 40088ada8a
commit 35c4e1a185
93 changed files with 520 additions and 346 deletions

View File

@@ -64,6 +64,7 @@ of values.
*/
const nsUGenCategory sDetailedToGeneralCategory[] = {
// clang-format off
/*
* The order here corresponds to the HB_UNICODE_GENERAL_CATEGORY_* constants
* of the hb_unicode_general_category_t enum in gfx/harfbuzz/src/hb-unicode.h.
@@ -98,9 +99,11 @@ const nsUGenCategory sDetailedToGeneralCategory[] = {
/* LINE_SEPARATOR */ nsUGenCategory::kSeparator,
/* PARAGRAPH_SEPARATOR */ nsUGenCategory::kSeparator,
/* SPACE_SEPARATOR */ nsUGenCategory::kSeparator
// clang-format on
};
const hb_unicode_general_category_t sICUtoHBcategory[U_CHAR_CATEGORY_COUNT] = {
// clang-format off
HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED, // U_GENERAL_OTHER_TYPES = 0,
HB_UNICODE_GENERAL_CATEGORY_UPPERCASE_LETTER, // U_UPPERCASE_LETTER = 1,
HB_UNICODE_GENERAL_CATEGORY_LOWERCASE_LETTER, // U_LOWERCASE_LETTER = 2,
@@ -131,6 +134,7 @@ const hb_unicode_general_category_t sICUtoHBcategory[U_CHAR_CATEGORY_COUNT] = {
HB_UNICODE_GENERAL_CATEGORY_OTHER_SYMBOL, // U_OTHER_SYMBOL = 27,
HB_UNICODE_GENERAL_CATEGORY_INITIAL_PUNCTUATION, // U_INITIAL_PUNCTUATION = 28,
HB_UNICODE_GENERAL_CATEGORY_FINAL_PUNCTUATION, // U_FINAL_PUNCTUATION = 29,
// clang-format on
};
#define DEFINE_BMP_1PLANE_MAPPING_GET_FUNC(prefix_) \