Searched defs:pchIdentifier (Results 1 - 1 of 1) sorted by relevance

/vbox/src/bldprogs/
H A DVBoxCPP.cpp820 * @param pchIdentifier The start of the identifier to validate.
824 static bool vbcppValidateCIdentifier(PVBCPP pThis, const char *pchIdentifier, size_t cchIdentifier) argument
827 cchIdentifier = strlen(pchIdentifier);
831 vbcppErrorPos(pThis, pchIdentifier, "Zero length identifier");
835 if (!vbcppIsCIdentifierLeadChar(*pchIdentifier))
837 vbcppErrorPos(pThis, pchIdentifier, "Bad lead chararacter in identifier: '%.*s'", cchIdentifier, pchIdentifier);
843 if (!vbcppIsCIdentifierChar(pchIdentifier[off]))
845 vbcppErrorPos(pThis, pchIdentifier + off, "Illegal chararacter in identifier: '%.*s' (#%zu)", cchIdentifier, pchIdentifier, of
[all...]

Completed in 53 milliseconds