Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KDE/kdevelop
/ isBeginIdentifierCharacter
Function
isBeginIdentifierCharacter
plugins/qmakemanager/parser/qmakelexer.cpp:23–26 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
21
}
22
23
bool isBeginIdentifierCharacter(QChar* c)
24
{
25
return (c->isLetter() || c->isDigit() || c->unicode() ==
'_'
|| c->unicode() ==
'.'
|| c->unicode() ==
'$'
);
26
}
27
28
bool isEndIdentifierCharacter(QChar* c)
29
{
Callers
1
nextTokenKind
Method · 0.85
Calls
1
isDigit
Method · 0.80
Tested by
no test coverage detected