OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pBiDi
(Results
1 - 3
of
3
) sorted by null
/external/icu/icu4c/source/common/
ubidi.c
133
UBiDi *
pBiDi
;
144
pBiDi
=(UBiDi *)uprv_malloc(sizeof(UBiDi));
145
if(
pBiDi
==NULL) {
151
uprv_memset(
pBiDi
, 0, sizeof(UBiDi));
154
pBiDi
->bdp=ubidi_getSingleton();
158
if( !getInitialDirPropsMemory(
pBiDi
, maxLength) ||
159
!getInitialLevelsMemory(
pBiDi
, maxLength)
164
pBiDi
->mayAllocateText=TRUE;
170
pBiDi
->runsSize=sizeof(Run);
171
} else if(!getInitialRunsMemory(
pBiDi
, maxRunCount))
[
all
...]
ubidiimp.h
115
ubidi_getParaLevelAtIndex(const UBiDi *
pBiDi
, int32_t index);
169
UBiDi *
pBiDi
;
208
ubidi_getRuns(UBiDi *
pBiDi
, UErrorCode *pErrorCode);
430
#define getDirPropsMemory(
pBiDi
, length) \
431
ubidi_getMemory((BidiMemoryForAllocation *)&(
pBiDi
)->dirPropsMemory, &(
pBiDi
)->dirPropsSize, \
432
(
pBiDi
)->mayAllocateText, (length))
434
#define getLevelsMemory(
pBiDi
, length) \
435
ubidi_getMemory((BidiMemoryForAllocation *)&(
pBiDi
)->levelsMemory, &(
pBiDi
)->levelsSize,
[
all
...]
/external/icu/icu4c/source/test/cintltst/
cbiditst.c
36
static void doTests(UBiDi *
pBiDi
, UBiDi *pLine, UBool countRunsFirst);
40
static void doTest(UBiDi *
pBiDi
, int testNumber, const BiDiTestData *test,
43
static void _testReordering(UBiDi *
pBiDi
, int testNumber);
47
static void _testManyInverseBidi(UBiDi *
pBiDi
, UBiDiLevel direction);
49
static void _testInverseBidi(UBiDi *
pBiDi
, const UChar *src, int32_t srcLength,
97
static const char* inverseBasic(UBiDi *
pBiDi
, const char *src, int32_t srcLen,
99
static UBool assertRoundTrip(UBiDi *
pBiDi
, int32_t tc, int32_t outIndex,
103
static UBool checkResultLength(UBiDi *
pBiDi
, const char *srcChars,
107
static UBool checkMaps(UBiDi *
pBiDi
, int32_t stringIndex, const char *src,
171
UBiDi *
pBiDi
, *pLine=NULL
[
all
...]
Completed in 56 milliseconds