Lines Matching refs:getTok
259 SegmentName = getTok().getIdentifier(); in ParseDirectiveSegment()
288 SegmentName = getTok().getIdentifier(); in ParseDirectiveSegmentEnd()
324 StringRef nextVal = getTok().getString(); in ParseDirectiveProc()
325 SMLoc nextLoc = getTok().getLoc(); in ParseDirectiveProc()
332 nextVal = getTok().getString(); in ParseDirectiveProc()
333 nextLoc = getTok().getLoc(); in ParseDirectiveProc()
344 getTok().getString().equals_lower("frame")) { in ParseDirectiveProc()
357 SMLoc LabelLoc = getTok().getLoc(); in ParseDirectiveEndProc()
377 if (getTok().isNot(AsmToken::Less) || in ParseDirectiveAlias()
379 return Error(getTok().getLoc(), "expected <aliasName>"); in ParseDirectiveAlias()
382 if (getTok().isNot(AsmToken::Less) || in ParseDirectiveAlias()
384 return Error(getTok().getLoc(), "expected <actualName>"); in ParseDirectiveAlias()
397 SMLoc SizeLoc = getTok().getLoc(); in ParseSEHDirectiveAllocStack()