enum LookupResult::LookupResultKind

Declared at: clang/include/clang/Sema/Lookup.h:48

Enumerators

NameValueComment
NotFound0No entity found met the criteria.
NotFoundInCurrentInstantiation1No entity found met the criteria within the current instantiation,, but there were dependent base classes of the current instantiation that could not be searched.
Found2Name lookup found a single declaration that met the criteria. getFoundDecl() will return this declaration.
FoundOverloaded3Name lookup found a set of overloaded functions that met the criteria.
FoundUnresolvedValue4Name lookup found an unresolvable value declaration and cannot yet complete. This only happens in C++ dependent contexts with dependent using declarations.
Ambiguous5Name lookup results in an ambiguity; use getAmbiguityKind to figure out what kind of ambiguity we have.