Lines Matching refs:array

147 	text_run_array *array = (text_run_array*)malloc(sizeof(text_run_array)
151 array->count = 16;
152 array->runs[0].offset = offset;
153 array->runs[0].font = *be_fixed_font;
154 array->runs[0].color = prefHandler->getRGB(PREF_ANSI_BLACK_COLOR);
156 array->runs[1].offset = offset;
157 array->runs[1].font = *be_fixed_font;
158 array->runs[1].color = prefHandler->getRGB(PREF_ANSI_RED_COLOR);
160 array->runs[2].offset = offset;
161 array->runs[2].font = *be_fixed_font;
162 array->runs[2].color = prefHandler->getRGB(PREF_ANSI_GREEN_COLOR);
164 array->runs[3].offset = offset;
165 array->runs[3].font = *be_fixed_font;
166 array->runs[3].color = prefHandler->getRGB(PREF_ANSI_YELLOW_COLOR);
168 array->runs[4].offset = offset;
169 array->runs[4].font = *be_fixed_font;
170 array->runs[4].color = prefHandler->getRGB(PREF_ANSI_BLUE_COLOR);
172 array->runs[5].offset = offset;
173 array->runs[5].font = *be_fixed_font;
174 array->runs[5].color = prefHandler->getRGB(PREF_ANSI_MAGENTA_COLOR);
176 array->runs[6].offset = offset;
177 array->runs[6].font = *be_fixed_font;
178 array->runs[6].color = prefHandler->getRGB(PREF_ANSI_CYAN_COLOR);
180 array->runs[7].offset = offset;
181 array->runs[7].font = *be_fixed_font;
182 array->runs[7].color = prefHandler->getRGB(PREF_ANSI_WHITE_COLOR);
186 array->runs[8].offset = offset;
187 array->runs[8].font = *be_fixed_font;
188 array->runs[8].color = prefHandler->getRGB(PREF_ANSI_BLACK_HCOLOR);
190 array->runs[9].offset = offset;
191 array->runs[9].font = *be_fixed_font;
192 array->runs[9].color = prefHandler->getRGB(PREF_ANSI_RED_HCOLOR);
194 array->runs[10].offset = offset;
195 array->runs[10].font = *be_fixed_font;
196 array->runs[10].color = prefHandler->getRGB(PREF_ANSI_GREEN_HCOLOR);
198 array->runs[11].offset = offset;
199 array->runs[11].font = *be_fixed_font;
200 array->runs[11].color = prefHandler->getRGB(PREF_ANSI_YELLOW_HCOLOR);
202 array->runs[12].offset = offset;
203 array->runs[12].font = *be_fixed_font;
204 array->runs[12].color = prefHandler->getRGB(PREF_ANSI_BLUE_HCOLOR);
206 array->runs[13].offset = offset;
207 array->runs[13].font = *be_fixed_font;
208 array->runs[13].color = prefHandler->getRGB(PREF_ANSI_MAGENTA_HCOLOR);
210 array->runs[14].offset = offset;
211 array->runs[14].font = *be_fixed_font;
212 array->runs[14].color = prefHandler->getRGB(PREF_ANSI_CYAN_HCOLOR);
214 array->runs[15].offset = offset;
215 array->runs[15].font = *be_fixed_font;
216 array->runs[15].color = prefHandler->getRGB(PREF_ANSI_WHITE_HCOLOR);
235 fPreview->SetText(previewText.String(), array);