Lines Matching refs:pRes
684 void res_info::Attach(res_info *pRes) in Attach() argument
687 pRes->next = NULL; in Attach()
696 test->next = pRes; in Attach()
700 child = pRes; in Attach()
702 pRes->parent = this; in Attach()
5551 res_info *pRes = mDisplays[Display].themes[theme_id].GetFirstResourceInfo(); in FindResource() local
5560 return FindResource(pRes, res_type, name); in FindResource()
5573 return FindResource(pRes, res_type, name); in FindResource()
5587 return FindResource(pRes, res_type, name); in FindResource()
5596 return FindResourceFolder(pRes, res_type, res_id); in FindResource()
5604 res_info *studiox_project::FindResource(const res_info *pRes, int restype, const CString &name) con… in FindResource() argument
5608 while(pRes) in FindResource()
5610 if (pRes->type == restype && in FindResource()
5611 pRes->name == name) in FindResource()
5613 return (res_info *)pRes; in FindResource()
5615 if (pRes->child) in FindResource()
5617 found = FindResource(pRes->child, restype, name); in FindResource()
5623 pRes = pRes->next; in FindResource()
5635 res_info *studiox_project::FindResourceFolder(const res_info *pRes, int restype, int folder_id, CSt… in FindResourceFolder() argument
5639 while(pRes) in FindResourceFolder()
5642 if (pRes->type == restype && in FindResourceFolder()
5643 pRes->folder_id == folder_id && in FindResourceFolder()
5644 ((pRes->name == name) || name.IsEmpty())) in FindResourceFolder()
5646 return (res_info *)pRes; in FindResourceFolder()
5648 if (pRes->child) in FindResourceFolder()
5650 found = FindResourceFolder(pRes->child, restype, folder_id, name); in FindResourceFolder()
5656 pRes = pRes->next; in FindResourceFolder()