reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  501     osi = ConsumeWhitespace(osi, ose);
  501     osi = ConsumeWhitespace(osi, ose);
  503     while (osi != ose) {
  504       if (*osi >= '0' && *osi <= '9') {
  504       if (*osi >= '0' && *osi <= '9') {
  505         str.push_back(*osi);
  506       } else if (*osi >= 'a' && *osi <= 'f') {
  506       } else if (*osi >= 'a' && *osi <= 'f') {
  508           str.push_back(*osi);
  510           return std::make_pair(Operand(), osi);
  513         switch (*osi) {
  516             return std::make_pair(Operand(), osi);
  519             return std::make_pair(ret, osi);
  524             str.push_back(*osi);
  526             return std::make_pair(Operand(), osi);
  532             return std::make_pair(Operand(), osi);
  539             return std::make_pair(Operand(), osi);
  543       ++osi;
  547     return std::make_pair(ret, osi);