blob: 948049c4dba7212c88d19db5055964ac2679c4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "PPToken.h"
#include <cstring>
using namespace CPlusPlus;
bool ByteArrayRef::startsWith(const char *s) const
{
int l = std::strlen(s);
if (l > m_length)
return false;
return !qstrncmp(start(), s, l);
}
int ByteArrayRef::count(char ch) const
{
int num = 0;
const char *b = start();
const char *i = b + m_length;
while (i != b)
if (*--i == ch)
++num;
return num;
}
void Internal::PPToken::squeezeSource()
{
if (hasSource()) {
m_src = m_src.mid(offset, f.length);
m_src.squeeze();
offset = 0;
}
}
|