Home | History | Annotate | Download | only in lib

Lines Matching refs:subObj

97     if (NULL == this || NULL == this->subObj) {
101 pdfdur = (picokpdf_pdfdur_t *)this->subObj;
151 if (NULL == this || NULL == this->subObj) {
155 pdfmul = (picokpdf_pdfmul_t *)this->subObj;
254 if (NULL == this || NULL == this->subObj) {
258 pdfphs = (picokpdf_pdfphs_t *)this->subObj;
279 if ((NULL != this) && (NULL != this->subObj)) {
280 pdfmul = (picokpdf_pdfmul_t *)this->subObj;
283 picoos_deallocate(mm, (void *) &(this->subObj));
291 picoos_deallocate(mm, (void *) &this->subObj);
299 picoos_deallocate(mm, (void *) &this->subObj);
320 this->subObj = picoos_allocate(common->mm,sizeof(picokpdf_pdfdur_t));
321 if (NULL == this->subObj) {
329 this->subObj = picoos_allocate(common->mm,sizeof(picokpdf_pdfmul_t));
330 if (NULL == this->subObj) {
338 this->subObj = picoos_allocate(common->mm,sizeof(picokpdf_pdfphs_t));
339 if (NULL == this->subObj) {
352 picoos_deallocate(common->mm, (void *) &this->subObj);
364 return ((NULL == this) ? NULL : ((picokpdf_PdfDUR) this->subObj));
368 return ((NULL == this) ? NULL : ((picokpdf_PdfMUL) this->subObj));
372 return ((NULL == this) ? NULL : ((picokpdf_PdfPHS) this->subObj));