Lines Matching defs:word
198 ficlSystemAddPrimitiveParseStep(system, "?word", ficlVmParseWord);
290 ficlSystemAddParseStep(ficlSystem *system, ficlWord *word)
295 system->parseList[i] = word;
304 * Compile a word into the dictionary that invokes the specified ficlParseStep
307 * stack) before using the resulting word.
314 ficlWord *word;
317 word = ficlDictionaryAppendPrimitive(dictionary, name,
322 ficlSystemAddParseStep(system, word);
429 ficlWord *word = NULL;
442 word = ficlHashLookup(hash, name, hashCode);
445 * If no joy, (!word) ------------------------------v
448 for (i = (int)dictionary->wordlistCount - 1; (i >= 0) && (!word); --i) {
450 word = ficlHashLookup(hash, name, hashCode);
454 return (word);