Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'HlMHex (./kdevelop/kdevelop/kwrite/highlight.h:195)
class HlMHex : public HlItemWw {
public:
HlMHex(int attribute, int context);
virtual const QChar *checkHgl(const QChar *);
};
//ada decimal
kdevelop'HlMHex::HlMHex() (./kdevelop/kdevelop/kwrite/highlight.cpp:559)
HlMHex::HlMHex(int attribute, int context)
: HlItemWw(attribute,context) {
}
kdevelop'HlMHex::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:563)
const QChar *HlMHex::checkHgl(const QChar *s) {
if (*s >= '0' && *s <= '9') {
s++;
while ((*s >= '0' && *s <= '9') || (*s >= 'A' && *s <= 'F')) s++;
if (*s == 'H') return s + 1;
}
return 0L;
}