Lines Matching defs:item
52 /* Constructor: creates item using given character sequence and length */
53 item::item(char *str, int n)
57 FATAL("item::item: cannot allocate space", DB_MEMORY_LIMIT);
63 /* Constructor: creates item by copying given item */
64 item::item(item *model)
68 FATAL(" item::item: cannot allocate space (2)",
74 /* Prints contents of item to stdout */
76 item::print()
85 item::equal(item* other, bool_t casein)
96 item::equal(char* other, int olen, bool_t casein)
106 item::get_hashval(bool_t casein)