Lines Matching refs:loop
865 int loop; in ReadIniInfo() local
883 for (loop = 0; loop < MAX_RECENT_PROJECTS; loop++) in ReadIniInfo()
885 StudioXIni.recent_project_paths[loop] = ""; in ReadIniInfo()
950 for (loop = 0; loop < MAX_RECENT_PROJECTS; loop++) in ReadIniInfo()
952 reader.ReadString("pathname", StudioXIni.recent_project_paths[loop]); in ReadIniInfo()
976 int loop; in WriteIniInfo() local
1006 for (loop = 0; loop < MAX_RECENT_PROJECTS; loop++) in WriteIniInfo()
1008 if (StudioXIni.recent_project_paths[loop].IsEmpty()) in WriteIniInfo()
1014 writer.WriteString("pathname", StudioXIni.recent_project_paths[loop]); in WriteIniInfo()
1127 int loop; in MoveRecentPathToFront() local
1132 for (loop = index; loop > 0; loop--) in MoveRecentPathToFront()
1134 StudioXIni.recent_project_paths[loop] = in MoveRecentPathToFront()
1135 StudioXIni.recent_project_paths[loop - 1]; in MoveRecentPathToFront()
1144 int loop; in AddRecentProject() local
1150 for (loop = 0; loop < MAX_RECENT_PROJECTS; loop++) in AddRecentProject()
1152 if (StudioXIni.recent_project_paths[loop] == pathname) in AddRecentProject()
1154 if (loop == 0) in AddRecentProject()
1159 MoveRecentPathToFront(loop); in AddRecentProject()
1167 for (loop = MAX_RECENT_PROJECTS - 1; loop > 0; loop--) in AddRecentProject()
1169 StudioXIni.recent_project_paths[loop] = in AddRecentProject()
1170 StudioXIni.recent_project_paths[loop - 1]; in AddRecentProject()