Home
last modified time | relevance | path

Searched refs:bdp (Results 1 – 18 of 18) sorted by relevance

/external/icu/icu4c/source/common/
Dubidi_props.c63 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode) { in ubidi_addPropertyStarts() argument
75 utrie2_enum(&bdp->trie, NULL, _enumPropertyStartsRange, sa); in ubidi_addPropertyStarts()
78 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH]; in ubidi_addPropertyStarts()
80 c=UBIDI_GET_MIRROR_CODE_POINT(bdp->mirrors[i]); in ubidi_addPropertyStarts()
85 start=bdp->indexes[UBIDI_IX_JG_START]; in ubidi_addPropertyStarts()
86 limit=bdp->indexes[UBIDI_IX_JG_LIMIT]; in ubidi_addPropertyStarts()
87 jgArray=bdp->jgArray; in ubidi_addPropertyStarts()
102 if(limit==bdp->indexes[UBIDI_IX_JG_LIMIT]) { in ubidi_addPropertyStarts()
104 start=bdp->indexes[UBIDI_IX_JG_START2]; in ubidi_addPropertyStarts()
105 limit=bdp->indexes[UBIDI_IX_JG_LIMIT2]; in ubidi_addPropertyStarts()
[all …]
Dubidi_props.h39 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode);
44 ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which);
47 ubidi_getClass(const UBiDiProps *bdp, UChar32 c);
50 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c);
53 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c);
56 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c);
59 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c);
62 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c);
65 ubidi_getJoiningGroup(const UBiDiProps *bdp, UChar32 c);
68 ubidi_getPairedBracketType(const UBiDiProps *bdp, UChar32 c);
[all …]
Dsprpimpl.h91 const UBiDiProps *bdp; /* used only if checkBiDi is set */ member
Dushape.cpp343 const UBiDiProps *bdp; in _shapeToArabicDigitsWithContext() local
347 bdp=ubidi_getSingleton(); in _shapeToArabicDigitsWithContext()
354 switch(ubidi_getClass(bdp, c)) { in _shapeToArabicDigitsWithContext()
374 switch(ubidi_getClass(bdp, c)) { in _shapeToArabicDigitsWithContext()
Dusprep.cpp349 newProfile->bdp = ubidi_getSingleton(); in usprep_getProfile()
736 direction = ubidi_getClass(profile->bdp, ch); in usprep_prepare()
Dubidiimp.h254 const UBiDiProps *bdp; member
Duts46.cpp1127 const UBiDiProps *bdp=ubidi_getSingleton(); in isLabelOkContextJ() local
1149 UJoiningType type=ubidi_getJoiningType(bdp, c); in isLabelOkContextJ()
1167 UJoiningType type=ubidi_getJoiningType(bdp, c); in isLabelOkContextJ()
Dubidi.c154 pBiDi->bdp=ubidi_getSingleton(); in ubidi_openSized()
921 ubidi_getPairedBracketType(bd->pBiDi->bdp, c)==U_BPT_OPEN) { /* opening bracket */ in bracketProcessChar()
3007 dir = ubidi_getClass(pBiDi->bdp, c); in ubidi_getCustomizedClass()
/external/blktrace/btt/
Dbno_dump.c53 struct bno_dump *bdp; in bno_dump_alloc() local
57 bdp = malloc(sizeof(*bdp)); in bno_dump_alloc()
58 bdp->rfp = bno_dump_open(device, 'r'); in bno_dump_alloc()
59 bdp->wfp = bno_dump_open(device, 'w'); in bno_dump_alloc()
60 bdp->cfp = bno_dump_open(device, 'c'); in bno_dump_alloc()
62 return bdp; in bno_dump_alloc()
72 struct bno_dump *bdp = handle; in bno_dump_add() local
74 if (bdp) { in bno_dump_add()
75 FILE *fp = IOP_READ(iop) ? bdp->rfp : bdp->wfp; in bno_dump_add()
79 if (bdp->cfp) in bno_dump_add()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringPrep.java226 private UBiDiProps bdp; field in StringPrep
289 bdp=UBiDiProps.INSTANCE; in StringPrep()
532 direction = bdp.getClass(ch); in prepare()
DArabicShaping.java830 UBiDiProps bdp=UBiDiProps.INSTANCE; in shapeToArabicDigitsWithContext() local
835 switch (bdp.getClass(ch)) { in shapeToArabicDigitsWithContext()
DBidi.java991 final UBiDiProps bdp; field in Bidi
1272 bdp = UBiDiProps.INSTANCE; in Bidi()
4638 dir = bdp.getClass(c); in getCustomizedClass()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DStringPrep.java241 private UBiDiProps bdp; field in StringPrep
305 bdp=UBiDiProps.INSTANCE; in StringPrep()
550 direction = bdp.getClass(ch); in prepare()
DArabicShaping.java878 UBiDiProps bdp=UBiDiProps.INSTANCE; in shapeToArabicDigitsWithContext() local
883 switch (bdp.getClass(ch)) { in shapeToArabicDigitsWithContext()
DBidi.java1017 final UBiDiProps bdp; field in Bidi
1301 bdp = UBiDiProps.INSTANCE; in Bidi()
4695 dir = bdp.getClass(c); in getCustomizedClass()
/external/toybox/toys/other/
Dbzcat.c605 static int start_bunzip(struct bunzip_data **bdp, int src_fd, char *inbuf, in start_bunzip() argument
616 bd = *bdp = xzalloc(i); in start_bunzip()
/external/icu/icu4c/source/test/cintltst/
Dcucdtst.c3302 UBiDiProps *bdp; in TestUBiDiProps() local
3315 bdp=ubidi_openBinary((const uint8_t *)pData->pHeader, -1, &errorCode); in TestUBiDiProps()
3323 if(0x2215!=ubidi_getMirror(bdp, 0x29F5)) { /* verify some data */ in TestUBiDiProps()
3327 ubidi_closeProps(bdp); in TestUBiDiProps()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...