mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
Issue #1971 - Part 2: Update ICU source to 63.2.
This commit is contained in:
parent
8df84683be
commit
1e69214382
3160 changed files with 275815 additions and 234203 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
||||
// © 2016 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html
|
||||
/*
|
||||
*******************************************************************************
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*******************************************************************************
|
||||
* file name: ubidi_props.h
|
||||
* encoding: US-ASCII
|
||||
* encoding: UTF-8
|
||||
* tab size: 8 (not used)
|
||||
* indentation:4
|
||||
*
|
||||
|
|
@ -31,46 +31,40 @@ U_CDECL_BEGIN
|
|||
|
||||
/* library API -------------------------------------------------------------- */
|
||||
|
||||
struct UBiDiProps;
|
||||
typedef struct UBiDiProps UBiDiProps;
|
||||
|
||||
U_CFUNC const UBiDiProps *
|
||||
ubidi_getSingleton(void);
|
||||
|
||||
U_CFUNC void
|
||||
ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode);
|
||||
ubidi_addPropertyStarts(const USetAdder *sa, UErrorCode *pErrorCode);
|
||||
|
||||
/* property access functions */
|
||||
|
||||
U_CFUNC int32_t
|
||||
ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which);
|
||||
ubidi_getMaxValue(UProperty which);
|
||||
|
||||
U_CAPI UCharDirection
|
||||
ubidi_getClass(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getClass(UChar32 c);
|
||||
|
||||
U_CFUNC UBool
|
||||
ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_isMirrored(UChar32 c);
|
||||
|
||||
U_CFUNC UChar32
|
||||
ubidi_getMirror(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getMirror(UChar32 c);
|
||||
|
||||
U_CFUNC UBool
|
||||
ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_isBidiControl(UChar32 c);
|
||||
|
||||
U_CFUNC UBool
|
||||
ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_isJoinControl(UChar32 c);
|
||||
|
||||
U_CFUNC UJoiningType
|
||||
ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getJoiningType(UChar32 c);
|
||||
|
||||
U_CFUNC UJoiningGroup
|
||||
ubidi_getJoiningGroup(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getJoiningGroup(UChar32 c);
|
||||
|
||||
U_CFUNC UBidiPairedBracketType
|
||||
ubidi_getPairedBracketType(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getPairedBracketType(UChar32 c);
|
||||
|
||||
U_CFUNC UChar32
|
||||
ubidi_getPairedBracket(const UBiDiProps *bdp, UChar32 c);
|
||||
ubidi_getPairedBracket(UChar32 c);
|
||||
|
||||
/* file definitions --------------------------------------------------------- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue