Lines Matching refs:found
73 StringObject* found;
85 * A match was found in the literal table, the easy case.
87 found = literal;
96 * A match was found in the interned table. Move the
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
107 found = insertString(gDvm.literalStrings, key, strObj);
108 assert(found == strObj);
115 found = lookupString(gDvm.literalStrings, key, strObj);
116 if (found == NULL) {
118 * No match was found in the literal table. Insert into
121 found = insertString(gDvm.internedStrings, key, strObj);
124 assert(found != NULL);
126 return found;
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj);
163 return found == strObj;