Lines Matching refs:found
73 StringObject* found; in lookupInternedString() local
87 found = literal; in lookupInternedString()
100 found = insertString(gDvm.literalStrings, key, interned); in lookupInternedString()
101 assert(found == interned); in lookupInternedString()
107 found = insertString(gDvm.literalStrings, key, strObj); in lookupInternedString()
108 assert(found == strObj); in lookupInternedString()
115 found = lookupString(gDvm.literalStrings, key, strObj); in lookupInternedString()
116 if (found == NULL) { in lookupInternedString()
121 found = insertString(gDvm.internedStrings, key, strObj); in lookupInternedString()
124 assert(found != NULL); in lookupInternedString()
126 return found; in lookupInternedString()
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj); in dvmIsWeakInternedString() local
163 return found == strObj; in dvmIsWeakInternedString()