Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'HlSatherDec (./kdevelop/kdevelop/kwrite/highlight.h:242)
class HlSatherDec : public HlItemWw {
public:
HlSatherDec(int attribute, int context);
virtual const QChar *checkHgl(const QChar *);
};
kdevelop'HlSatherDec::HlSatherDec() (./kdevelop/kdevelop/kwrite/highlight.cpp:696)
HlSatherDec::HlSatherDec(int attribute, int context)
: HlItemWw(attribute,context) {
}
kdevelop'HlSatherDec::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:700)
const QChar *HlSatherDec::checkHgl(const QChar *s) {
if (*s >= '0' && *s <= '9') {
s++;
while ((*s >= '0' && *s <= '9') || *s == '_') s++;
if (*s == 'i') s++;
return s;
}
return 0L;
}