Lines Matching defs:text
60 // Uncomment to save input to a text file in DEBUG_DUMP_PATTERN
3617 TextInputStream(const char* text, size_t textLength)
3618 : pText(text), mTextLength(textLength), mPosition(0) {
3925 char* dptr; // point to macro text during macro playback
6074 int compile(const char* text, size_t textLength) {
6101 file = new TextInputStream(text, textLength);
6232 text = 0;
6238 delete text;
6258 char* text;
6302 delete script->text;
6303 char* text = new char[totalLength + 1];
6304 script->text = text;
6306 char* dest = text;
6319 text[totalLength] = '\0';
6335 fwrite(text, totalLength, 1, fd);
6347 int result = script->compiler.compile(script->text, script->textLength);