Home | History | Annotate | Download | only in src

Lines Matching refs:keybase

238 		    if	(entry->keybase.type == ANTLR3_HASH_TYPE_STR && entry->keybase.key.sKey != NULL)
240 ANTLR3_FREE(entry->keybase.key.sKey);
302 if (entry->keybase.key.iKey == key)
359 if (strcmp((const char *)key, (const char *)entry->keybase.key.sKey) == 0)
371 ANTLR3_FREE(entry->keybase.key.sKey);
373 entry->keybase.key.sKey = NULL;
465 if (entry->keybase.key.iKey == key)
505 if (strcmp((const char *)key, (const char *)entry->keybase.key.sKey) == 0)
553 if ((*newPointer)->keybase.key.iKey == key)
578 entry->keybase.type = ANTLR3_HASH_TYPE_INT; /* Indicate the key type stored here for when we free */
579 entry->keybase.key.iKey = key; /* Record the key value */
624 if (strcmp((const char*) key, (const char *)(*newPointer)->keybase.key.sKey) == 0)
649 entry->keybase.type = ANTLR3_HASH_TYPE_STR; /* Indicate the key type stored here for free() */
652 entry->keybase.key.sKey = ANTLR3_STRDUP(key); /* Record the key value */
656 entry->keybase.key.sKey = key; /* Record the key value */
743 *key = &(en->entry->keybase);