OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:COMBINING
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/awt/java/awt/font/
GlyphMetrics.java
31
* LIGATURE,
COMBINING
, or COMPONENT.
80
* The Constant
COMBINING
indicates a glyph which has no caret position
83
public static final byte
COMBINING
= 2;
191
* Checks if this glyph is
combining
or not.
193
* @return true, if this glyph is
combining
, false otherwise.
196
return ((this.glyphType & 3) ==
COMBINING
);
/frameworks/base/core/java/android/view/
KeyCharacterMap.java
118
int map =
COMBINING
.get(ret);
394
* Maps Unicode
combining
diacritical to display-form dead key
397
private static SparseIntArray
COMBINING
= new SparseIntArray();
427
COMBINING
.put('\u0300', (GRAVE >> 16) | COMBINING_ACCENT);
428
COMBINING
.put('\u0301', (ACUTE >> 16) | COMBINING_ACCENT);
429
COMBINING
.put('\u0302', (CIRCUMFLEX >> 16) | COMBINING_ACCENT);
430
COMBINING
.put('\u0303', (TILDE >> 16) | COMBINING_ACCENT);
431
COMBINING
.put('\u0308', (UMLAUT >> 16) | COMBINING_ACCENT);
Completed in 353 milliseconds