HomeSort by relevance Sort by last modified time
    Searched defs:pBiDi (Results 1 - 3 of 3) 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...]
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...]
  /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 190 milliseconds