Lines Matching refs:start

710 void resource_view::InsertTreeResources(resource_item *parent, res_info *start)  in InsertTreeResources()  argument
712 while(start) in InsertTreeResources()
714 resource_item *current = mpTree->InsertItem(parent, start); in InsertTreeResources()
716 switch(start->type) in InsertTreeResources()
759 current->SetColorValue(start->colorval); in InsertTreeResources()
767 if (start->child) in InsertTreeResources()
769 InsertTreeResources(current, start->child); in InsertTreeResources()
771 start = start->next; in InsertTreeResources()
2035 void resource_view::UpdateStringTableFonts(FontCharMap *map, res_info *start) in UpdateStringTableFonts() argument
2039 if (!start) in UpdateStringTableFonts()
2042 start = project->mDisplays[mDisplayIndex].themes[active_theme].GetFirstResourceInfo(); in UpdateStringTableFonts()
2045 while(start) in UpdateStringTableFonts()
2047 if (start->type == RES_TYPE_FONT) in UpdateStringTableFonts()
2049 if (start->font_charset_include_string_table) in UpdateStringTableFonts()
2051 if (start->font) in UpdateStringTableFonts()
2053 if (!start->is_default || !start->pathinfo.pathname.IsEmpty()) in UpdateStringTableFonts()
2057 if (!InsertStringTableGlyphs(map, start, mDisplayIndex)) in UpdateStringTableFonts()
2059 DestroyFont(start->font); in UpdateStringTableFonts()
2060 start->font = MakeFont(start, mDisplayIndex, FALSE); in UpdateStringTableFonts()
2061 start->storage_size = GetFontStorage(start, project, mDisplayIndex); in UpdateStringTableFonts()
2065 if (start->font_charset_include_string_table) in UpdateStringTableFonts()
2067 start->storage_size = GetFontStorage(start, project, mDisplayIndex); in UpdateStringTableFonts()
2074 start->font = MakeFont(start, mDisplayIndex, FALSE); in UpdateStringTableFonts()
2075 start->storage_size = GetFontStorage(start, project, mDisplayIndex); in UpdateStringTableFonts()
2080 if (start->child) in UpdateStringTableFonts()
2082 UpdateStringTableFonts(map, start->child); in UpdateStringTableFonts()
2084 start = start->next; in UpdateStringTableFonts()