/external/icu/icu4c/source/common/ |
udatamem.h | 12 * UDataMemory A class-like struct that serves as a handle to a piece of memory 16 * a UDataMemory * is returned. 25 struct UDataMemory { 29 /* UDataMemory object. */ 32 UBool heapAllocated; /* True if this UDataMemory Object is on the */ 45 U_CFUNC UDataMemory *UDataMemory_createNewInstance(UErrorCode *pErr); 46 U_CFUNC void UDatamemory_assign (UDataMemory *dest, UDataMemory *source); 47 U_CFUNC void UDataMemory_init (UDataMemory *This); 48 U_CFUNC UBool UDataMemory_isLoaded(const UDataMemory *This) [all...] |
udatamem.c | 12 * UDataMemory A class-like struct that serves as a handle to a piece of memory 16 * a UDataMemory * is returned. 26 U_CFUNC void UDataMemory_init(UDataMemory *This) { 27 uprv_memset(This, 0, sizeof(UDataMemory)); 32 U_CFUNC void UDatamemory_assign(UDataMemory *dest, UDataMemory *source) { 33 /* UDataMemory Assignment. Destination UDataMemory must be initialized first. */ 35 uprv_memcpy(dest, source, sizeof(UDataMemory)); 39 U_CFUNC UDataMemory *UDataMemory_createNewInstance(UErrorCode *pErr) [all...] |
umapfile.h | 30 U_CFUNC UBool uprv_mapFile(UDataMemory *pdm, const char *path); 31 U_CFUNC void uprv_unmapFile(UDataMemory *pData);
|
ucmndata.h | 77 * To call one, given a UDataMemory *p, the code looks like this: 83 (U_CALLCONV * LookupFn)(const UDataMemory *pData, 89 (U_CALLCONV * NumEntriesFn)(const UDataMemory *pData); 100 * Functions to check whether a UDataMemory refers to memory containing 104 * set the CommonDataFuncs function dispatch vector in the UDataMemory 109 U_CFUNC void udata_checkCommonData(UDataMemory *pData, UErrorCode *pErrorCode);
|
dictionarydata.h | 103 // The UDataMemory * will be closed on this object's destruction. 104 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { } 112 UDataMemory *file; 120 // the UDataMemory * fed in here will be closed on this object's destruction 121 BytesDictionaryMatcher(const char *c, int32_t t, UDataMemory *f) 133 UDataMemory *file;
|
udata.cpp | 61 * - udatamem.c has code for managing UDataMemory structs. These are little 80 static UDataMemory *udata_findCachedData(const char *path); 104 static UDataMemory *gCommonICUDataArray[10] = { NULL }; // Access protected by icu global mutex. 140 UDataMemory *pData = udata_findCachedData(inBasename); 159 * setCommonICUData. Set a UDataMemory to be the global ICU Data 162 setCommonICUData(UDataMemory *pData, /* The new common data. Belongs to caller, we copy it. */ 167 UDataMemory *newCommonData = UDataMemory_createNewInstance(pErr); 205 UDataMemory tData; 254 UDataMemory *item; 296 static UDataMemory *udata_findCachedData(const char *path [all...] |
umapfile.c | 83 uprv_mapFile(UDataMemory *pData, const char *path) { 88 U_CFUNC void uprv_unmapFile(UDataMemory *pData) { 94 UDataMemory *pData, /* Fill in with info on the result doing the mapping. */ 149 uprv_unmapFile(UDataMemory *pData) { 162 uprv_mapFile(UDataMemory *pData, const char *path) { 203 uprv_unmapFile(UDataMemory *pData) { 232 uprv_mapFile(UDataMemory *pData, const char *path) { 273 uprv_unmapFile(UDataMemory *pData) { 360 U_CFUNC UBool uprv_mapFile(UDataMemory *pData, const char *path) { 453 U_CFUNC void uprv_unmapFile(UDataMemory *pData) [all...] |
rbbidata.h | 150 RBBIDataWrapper(UDataMemory* udm, UErrorCode &status); 186 UDataMemory *fUDataMem;
|
ucmndata.c | 208 static uint32_t offsetTOCEntryCount(const UDataMemory *pData) { 218 offsetTOCLookupFn(const UDataMemory *pData, 263 static uint32_t pointerTOCEntryCount(const UDataMemory *pData) { 269 static const DataHeader *pointerTOCLookupFn(const UDataMemory *pData, 311 * If the data is invalid, close the UDataMemory * 315 U_CFUNC void udata_checkCommonData(UDataMemory *udm, UErrorCode *err) {
|
sprpimpl.h | 90 UDataMemory* sprepData;
|
udataswp.h | 342 U_CAPI UDataMemory * U_EXPORT2
|
brkeng.cpp | 266 UDataMemory *file = udata_open(U_ICUDATA_BRKITR, ext.data(), dictnbuf.data(), &status);
|
ubidi_props.c | 31 UDataMemory *mem;
|
uresdata.h | 383 UDataMemory *data;
|
brkiter.cpp | 108 UDataMemory* file = udata_open(U_ICUDATA_BRKITR, ext, fnbuff, &status);
|
loadednormalizer2impl.cpp | 42 UDataMemory *memory;
|
ucnv_bld.cpp | 282 ucnv_data_unFlattenClone(UConverterLoadArgs *pArgs, UDataMemory *pData, UErrorCode *status) 335 UDataMemory *data; 521 UDataMemory *data = (UDataMemory*)deadSharedData->dataMemory; [all...] |
/external/icu/icu4c/source/common/unicode/ |
udata.h | 156 typedef struct UDataMemory UDataMemory; 198 U_STABLE UDataMemory * U_EXPORT2 250 U_STABLE UDataMemory * U_EXPORT2 263 udata_close(UDataMemory *pData); 271 * "Smart pointer" class, closes a UDataMemory via udata_close(). 278 U_DEFINE_LOCAL_OPEN_POINTER(LocalUDataMemoryPointer, UDataMemory, udata_close); 294 udata_getMemory(UDataMemory *pData); 315 udata_getInfo(UDataMemory *pData, UDataInfo *pInfo);
|
rbbi.h | 274 * ICU UDataMemory handle for the pre-compiled break iterator tables. 276 * Ownership of the UDataMemory handle passes to the Break Iterator, 283 RuleBasedBreakIterator(UDataMemory* image, UErrorCode &status);
|
/external/icu/icu4c/source/i18n/ |
collationdatareader.h | 21 struct UDataMemory;
|
collationtailoring.h | 26 struct UDataMemory; 78 UDataMemory *memory;
|
uspoof_impl.h | 203 // A UDataMemory is what the ICU internal data loading functions provide. 205 SpoofData(UDataMemory *udm, UErrorCode &status); 240 UDataMemory *fUDM; // If not NULL, our data came from a 241 // UDataMemory, which we must close when
|
collationdata.h | 25 struct UDataMemory;
|
/external/icu/icu4c/source/samples/udata/ |
reader.c | 76 UDataMemory *result = NULL;
|
/external/icu/icu4c/source/test/cintltst/ |
udatatst.c | 118 UDataMemory *result; 443 /* UDataMemory *dataItem;*/ 642 UDataMemory *result; 742 UDataMemory *result; 790 UDataMemory *result; 867 UDataMemory *result; [all...] |