Lines Matching refs:text

31  * TextSrc.c - TextSrc object. (For use with the text widget).
154 * pos - position of the text to retreive.
155 * RETURNED text - text block that will contain returned text.
162 Read(w, pos, text, length)
165 XawTextBlock *text;
173 * Description: Replaces a block of text with new text.
175 * startPos, endPos - ends of text that will be removed.
176 * text - new text to be inserted into buffer at startPos.
182 Replace (w, startPos, endPos, text)
185 XawTextBlock *text;
191 * Description: Scans the text source for the number and type
220 * Description: Searchs the text source for the text block passed
224 * text - the text block to search for.
230 Search(w, position, dir, text)
234 XawTextBlock * text;
290 * pos - position of the text to retreive.
291 * RETURNED text - text block that will contain returned text.
297 XawTextSourceRead(w, pos, text, length)
300 XawTextBlock *text;
305 return((*class->textSrc_class.Read)(w, pos, text, length));
309 * Description: Replaces a block of text with new text.
311 * startPos, endPos - ends of text that will be removed.
312 * text - new text to be inserted into buffer at startPos.
318 XawTextSourceReplace (w, startPos, endPos, text)
321 XawTextBlock *text;
325 return((*class->textSrc_class.Replace)(w, startPos, endPos, text));
329 * Description: Scans the text source for the number and type
338 * Returns: The position of the text.
357 * Description: Searchs the text source for the text block passed
361 * text - the text block to search for.
362 * Returns: The position of the text we are searching for or
367 XawTextSourceSearch(w, position, dir, text)
371 XawTextBlock * text;
375 return((*class->textSrc_class.Search)(w, position, dir, text));