HomeSort by relevance Sort by last modified time
    Searched refs:pBiDi (Results 1 - 6 of 6) sorted by null

  /external/icu/icu4c/source/common/
ubidi.cpp 135 UBiDi *pBiDi;
146 pBiDi=(UBiDi *)uprv_malloc(sizeof(UBiDi));
147 if(pBiDi==NULL) {
153 uprv_memset(pBiDi, 0, sizeof(UBiDi));
156 pBiDi->bdp=ubidi_getSingleton();
160 if( !getInitialDirPropsMemory(pBiDi, maxLength) ||
161 !getInitialLevelsMemory(pBiDi, maxLength)
166 pBiDi->mayAllocateText=TRUE;
172 pBiDi->runsSize=sizeof(Run);
173 } else if(!getInitialRunsMemory(pBiDi, maxRunCount))
    [all...]
ubidiln.cpp 88 * This function is called only from ubidi_setLine(), so pBiDi->paraLevel is
92 setTrailingWSStart(UBiDi *pBiDi) {
93 /* pBiDi->direction!=UBIDI_MIXED */
95 const DirProp *dirProps=pBiDi->dirProps;
96 UBiDiLevel *levels=pBiDi->levels;
97 int32_t start=pBiDi->length;
98 UBiDiLevel paraLevel=pBiDi->paraLevel;
102 Setting trailingWSStart to pBidi->length will avoid changing the
107 pBiDi->trailingWSStart=start; /* currently == pBiDi->length *
    [all...]
ubidiimp.h 118 ubidi_getParaLevelAtIndex(const UBiDi *pBiDi, int32_t index);
172 UBiDi *pBiDi;
211 ubidi_getRuns(UBiDi *pBiDi, UErrorCode *pErrorCode);
433 #define getDirPropsMemory(pBiDi, length) \
434 ubidi_getMemory((BidiMemoryForAllocation *)&(pBiDi)->dirPropsMemory, &(pBiDi)->dirPropsSize, \
435 (pBiDi)->mayAllocateText, (length))
437 #define getLevelsMemory(pBiDi, length) \
438 ubidi_getMemory((BidiMemoryForAllocation *)&(pBiDi)->levelsMemory, &(pBiDi)->levelsSize,
    [all...]
ubidiwrt.cpp 350 ubidi_writeReordered(UBiDi *pBiDi,
364 if( pBiDi==NULL ||
365 (text=pBiDi->text)==NULL || (length=pBiDi->length)<0 ||
375 (dest>=text && dest<text+pBiDi->originalLength)))
386 runCount=ubidi_countRuns(pBiDi, pErrorCode);
399 if(pBiDi->reorderingOptions & UBIDI_OPTION_INSERT_MARKS) {
407 if(pBiDi->reorderingOptions & UBIDI_OPTION_REMOVE_CONTROLS) {
415 if((pBiDi->reorderingMode != UBIDI_REORDER_INVERSE_NUMBERS_AS_L) &&
416 (pBiDi->reorderingMode != UBIDI_REORDER_INVERSE_LIKE_DIRECT) &
    [all...]
  /external/icu/icu4c/source/common/unicode/
ubidi.h 547 * @param pBiDi is a <code>UBiDi</code> object.
554 ubidi_close(UBiDi *pBiDi);
614 * @param pBiDi is a <code>UBiDi</code> object.
624 ubidi_setInverse(UBiDi *pBiDi, UBool isInverse);
633 * @param pBiDi is a <code>UBiDi</code> object.
643 ubidi_isInverse(UBiDi *pBiDi);
657 * @param pBiDi is a <code>UBiDi</code> object.
666 ubidi_orderParagraphsLTR(UBiDi *pBiDi, UBool orderParagraphsLTR);
672 * @param pBiDi is a <code>UBiDi</code> object.
680 ubidi_isOrderParagraphsLTR(UBiDi *pBiDi);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c 38 static void doTests(UBiDi *pBiDi, UBiDi *pLine, UBool countRunsFirst);
42 static void doTest(UBiDi *pBiDi, int testNumber, const BiDiTestData *test,
45 static void _testReordering(UBiDi *pBiDi, int testNumber);
49 static void _testManyInverseBidi(UBiDi *pBiDi, UBiDiLevel direction);
51 static void _testInverseBidi(UBiDi *pBiDi, const UChar *src, int32_t srcLength,
100 static const char* inverseBasic(UBiDi *pBiDi, const char *src, int32_t srcLen,
102 static UBool assertRoundTrip(UBiDi *pBiDi, int32_t tc, int32_t outIndex,
106 static UBool checkResultLength(UBiDi *pBiDi, const char *srcChars,
110 static UBool checkMaps(UBiDi *pBiDi, int32_t stringIndex, const char *src,
175 UBiDi *pBiDi, *pLine=NULL
    [all...]

Completed in 2537 milliseconds