OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UBIDI_MAX_EXPLICIT_LEVEL
(Results
1 - 5
of
5
) sorted by null
/dalvik/libcore/text/src/main/java/org/apache/harmony/text/
BidiWrapper.java
31
public static final int
UBIDI_MAX_EXPLICIT_LEVEL
= 61;
/external/icu4c/common/unicode/
ubidi.h
322
* assumes that
UBIDI_MAX_EXPLICIT_LEVEL
is odd.
327
* @see
UBIDI_MAX_EXPLICIT_LEVEL
387
* (The maximum resolved level can be up to <code>
UBIDI_MAX_EXPLICIT_LEVEL
+1</code>).
390
#define
UBIDI_MAX_EXPLICIT_LEVEL
61
[
all
...]
/external/icu4c/common/
ubidi.c
546
* the explicit level must never exceed
UBIDI_MAX_EXPLICIT_LEVEL
==61.
557
* This implementation assumes that
UBIDI_MAX_EXPLICIT_LEVEL
is odd.
597
UBiDiLevel stack[
UBIDI_MAX_EXPLICIT_LEVEL
]; /* we never push anything >=
UBIDI_MAX_EXPLICIT_LEVEL
*/
610
if(newLevel<=
UBIDI_MAX_EXPLICIT_LEVEL
) {
621
} else if((embeddingLevel&~UBIDI_LEVEL_OVERRIDE)==
UBIDI_MAX_EXPLICIT_LEVEL
) {
623
} else /* (embeddingLevel&~UBIDI_LEVEL_OVERRIDE)==
UBIDI_MAX_EXPLICIT_LEVEL
-1 */ {
632
if(newLevel<=
UBIDI_MAX_EXPLICIT_LEVEL
) {
653
} else if(countOver60>0 && (embeddingLevel&~UBIDI_LEVEL_OVERRIDE)!=
UBIDI_MAX_EXPLICIT_LEVEL
) {
755
(
UBIDI_MAX_EXPLICIT_LEVEL
<level))
[
all
...]
ubidiln.c
600
UBiDiLevel minLevel=
UBIDI_MAX_EXPLICIT_LEVEL
+1, maxLevel=0;
720
minLevel=
UBIDI_MAX_EXPLICIT_LEVEL
+1;
724
if(level>
UBIDI_MAX_EXPLICIT_LEVEL
+1) {
[
all
...]
/external/icu4c/test/cintltst/
cbiditst.c
815
UBiDiLevel levels[
UBIDI_MAX_EXPLICIT_LEVEL
]={1,2,3,4,5,6,7,8,9,10};
822
i,
UBIDI_MAX_EXPLICIT_LEVEL
, u_errorName(ec));
[
all
...]
Completed in 73 milliseconds