Home | History | Annotate | Download | only in common

Lines Matching defs:This

26 U_CFUNC void UDataMemory_init(UDataMemory *This) {
27 uprv_memset(This, 0, sizeof(UDataMemory));
28 This->length=-1;
40 UDataMemory *This;
45 This = uprv_malloc(sizeof(UDataMemory));
46 if (This == NULL) {
49 UDataMemory_init(This);
50 This->heapAllocated = TRUE;
52 return This;
65 TODO: Fix this once the compiler implements this feature. Keep in sync with genccode.c
67 This is here because this platform can't currently put
84 U_CFUNC void UDataMemory_setData (UDataMemory *This, const void *dataAddr) {
85 This->pHeader = UDataMemory_normalizeDataPointer(dataAddr);
114 * TODO Consider making this function public.
157 U_CFUNC UBool UDataMemory_isLoaded(const UDataMemory *This) {
158 return This->pHeader != NULL;