Home
last modified time | relevance | path

Searched refs:MASK_NOSHAPE (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DArabicShaping.java24 static final int MASK_NOSHAPE = 8; // if this bit set, don't shape this char, i.e. tatweel field in ArabicShaping
32 public static final int VALUE_NOSHAPE_DUAL = MASK_NOSHAPE | VALUE_DUAL;
33 public static final int VALUE_NOSHAPE_NONE = MASK_NOSHAPE;
97 boolean curShapes = (t & MASK_NOSHAPE) == 0; in shape()
/external/icu/icu4c/source/layout/
DArabicShaping.h42 MASK_NOSHAPE = 8 // if this bit set, don't shape this char, i.e. tatweel enumerator
53 ST_NOSHAPE_DUAL = MASK_NOSHAPE | ST_DUAL,
54 ST_NOSHAPE_NONE = MASK_NOSHAPE
DArabicShaping.cpp189 le_bool curShapes = (t & MASK_NOSHAPE) == 0; in shape()