Searched refs:token (Results 1 – 10 of 10) sorted by relevance
33 std::string_view token = p; in ValidateHexInteger() local34 token.remove_prefix(2U); in ValidateHexInteger()36 for (auto i : token) { in ValidateHexInteger()47 std::string_view token = p; in ValidateBinInteger() local48 token.remove_prefix(2U); in ValidateBinInteger()49 if (token.empty()) { in ValidateBinInteger()52 for (auto i : token) { in ValidateBinInteger()63 std::string_view token = p; in ValidateOctalInteger() local64 token.remove_prefix(1); in ValidateOctalInteger()66 for (auto i : token) { in ValidateOctalInteger()[all …]
30 …token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in Make()38 return token.size(); in Len()43 if (token[0] == c) { in ValidateRegisterName()44 std::string_view p = token; in ValidateRegisterName()74 if (token[0] == 'a') { in ValidateParameterName()75 std::string_view p = token; in ValidateParameterName()87 return token; in GiveToken()132 …token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator ++()147 …token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator ++()166 …token = std::string_view(&*(tokens[number - 1].whole_line.begin() + tokens[number - 1].bound_left), in operator --()[all …]
44 std::string_view token; /* current token */ member
806 auto token = context_.GiveToken(); in LabelValidName() local807 if (!IsNonDigit(token[0])) { in LabelValidName()811 token.remove_prefix(1); in LabelValidName()813 for (auto i : token) { in LabelValidName()1087 auto token = context_.GiveToken(); in ParseStringLiteral() local1090 size_t len = token.length(); in ParseStringLiteral()1094 char c = token[i++]; in ParseStringLiteral()1100 auto res = ParseEscapeSequence(token, &i); in ParseStringLiteral()1293 context_.token = ComponentName; in ParseOperandType()1333 context_.token = record_name; in ParseOperandField()
64 std::string token; in Next() local66 token = str_.substr(pos_); in Next()69 token = str_.substr(pos_, pos - pos_); in Next()72 return token; in Next()
116 export function isAssignmentOperator(token: ts.SyntaxKind) {117 return token >= ts.SyntaxKind.FirstAssignment && token <= ts.SyntaxKind.LastAssignment;
49 export function modifierToFlag(token: ts.SyntaxKind): ts.ModifierFlags;52 export function isKeyword(token: ts.SyntaxKind): boolean;
142 function modifierToFlag(token) { argument143 return ts.modifierToFlag(token);
882 if (heritageClause.token == ts.SyntaxKind.ExtendsKeyword) {
103 Tokens token = ParseToken(); in ParseJSONText() local104 switch (token) { in ParseJSONText()