Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
f1abb8ce
Commit
f1abb8ce
authored
14 years ago
by
Ken Wakasa
Browse files
Options
Downloads
Patches
Plain Diff
Get rid of code taken from bionic to avoid license issue.
Change-Id: If96f4247edbc7b1e9f7418d2ddef191618a54ae3
parent
707505ec
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
native/src/char_utils.cpp
+13
-20
13 additions, 20 deletions
native/src/char_utils.cpp
with
13 additions
and
20 deletions
native/src/char_utils.cpp
+
13
−
20
View file @
f1abb8ce
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
#include
<s
ys/types
.h>
#include
<s
tdlib
.h>
namespace
latinime
{
...
...
@@ -27,7 +27,7 @@ struct LatinCapitalSmallPair {
//
// 1. Run the following code. Bascially taken from
// Dictionary::toLowerCase(unsigned short c) in dictionary.cpp.
// Then, get the list of chars where cc
c
!= ccc
2 above
.
// Then, get the list of chars where cc != ccc.
//
// unsigned short c, cc, ccc, ccc2;
// for (c = 0; c < 0xFFFF ; c++) {
...
...
@@ -882,25 +882,18 @@ static const struct LatinCapitalSmallPair SORTED_CHAR_MAP[] = {
{
0xFF3A
,
0xFF5A
}
// FULLWIDTH LATIN CAPITAL LETTER Z
};
unsigned
short
latin_tolower
(
unsigned
short
c0
)
{
const
struct
LatinCapitalSmallPair
*
p
;
const
struct
LatinCapitalSmallPair
*
base
=
SORTED_CHAR_MAP
;
int
c
=
c0
;
int
lim
,
cmp
;
const
size_t
nmemb
=
sizeof
(
SORTED_CHAR_MAP
)
/
sizeof
(
SORTED_CHAR_MAP
[
0
]);
static
int
compare_pair_capital
(
const
void
*
a
,
const
void
*
b
)
{
return
(
int
)(
*
(
unsigned
short
*
)
a
)
-
(
int
)((
struct
LatinCapitalSmallPair
*
)
b
)
->
capital
;
}
// Binary search: Taken from bionic
for
(
lim
=
nmemb
;
lim
!=
0
;
lim
>>=
1
)
{
p
=
base
+
(
lim
>>
1
);
cmp
=
c
-
(
int
)
p
->
capital
;
if
(
cmp
==
0
)
return
p
->
small
;
if
(
cmp
>
0
)
{
/* key > p: move right */
base
=
p
+
1
;
lim
--
;
}
/* else move left */
}
return
c0
;
unsigned
short
latin_tolower
(
unsigned
short
c
)
{
struct
LatinCapitalSmallPair
*
p
=
(
struct
LatinCapitalSmallPair
*
)
bsearch
(
&
c
,
SORTED_CHAR_MAP
,
sizeof
(
SORTED_CHAR_MAP
)
/
sizeof
(
SORTED_CHAR_MAP
[
0
]),
sizeof
(
SORTED_CHAR_MAP
[
0
]),
compare_pair_capital
);
return
p
?
p
->
small
:
c
;
}
}
// namespace latinime
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment