Home
last modified time | relevance | path

Searched refs:enum_pos (Results 1 – 1 of 1) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
DClangASTType.cpp5740 EnumDecl::enumerator_iterator enum_pos, enum_end_pos; in DumpValue() local
5743 …for (enum_pos = enum_decl->enumerator_begin(), enum_end_pos = enum_decl->enumerator_end(); enum_po… in DumpValue()
5745 if (enum_pos->getInitVal() == enum_value) in DumpValue()
5747 s->Printf("%s", enum_pos->getNameAsString().c_str()); in DumpValue()
5969 EnumDecl::enumerator_iterator enum_pos, enum_end_pos; in DumpTypeValue() local
5975 …for (enum_pos = enum_decl->enumerator_begin(), enum_end_pos = enum_decl->enumerator_end(); enum_po… in DumpTypeValue()
5977 if (enum_pos->getInitVal().getSExtValue() == enum_svalue) in DumpTypeValue()
5979 s->PutCString (enum_pos->getNameAsString().c_str()); in DumpTypeValue()
5990 …for (enum_pos = enum_decl->enumerator_begin(), enum_end_pos = enum_decl->enumerator_end(); enum_po… in DumpTypeValue()
5992 if (enum_pos->getInitVal().getZExtValue() == enum_uvalue) in DumpTypeValue()
[all …]