| 26 skipped lines |
|
| 28 | U | 28 | U | unsigned int startSeg; |
|
| 29 | U | 29 | U | int startPosStyling; |
|
| | | 30 | A | int mask; |
|
| 31 | U | 32 | U | bool InternalIsLeadByte(char ch); |
|
| 32 | U | 33 | U | void Fill(int position); |
|
| 2 skipped lines |
| 35 | U | 36 | U | DocumentAccessor(Document *pdoc_, PropSet &props_, WindowID id_=0) : |
|
| 36 | U | 37 | U | Accessor(), pdoc(pdoc_), props(props_), id(id_), |
|
| 37 | U | 38 | U | lenDoc(-1), validLen(0), chFlags(0), chWhile(0), |
|
| 38 | C | startSeg(0), startPosStyling(0) { | | 39 | C | startSeg(0), startPosStyling(0), |
| | | 40 | C | mask(127) { // Initialize the mask to be big enough for any lexer. |
|
| 40 | U | 42 | U | ~DocumentAccessor(); |
|
| 41 | U | 43 | U | bool Match(int pos, const char *s); |
|
| 25 skipped lines |