Home
last modified time | relevance | path

Searched refs:tokenType (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DSemanticHighlightingTests.cpp984 EXPECT_EQ(Results[0].tokenType, unsigned(HighlightingKind::Variable)); in TEST()
992 EXPECT_EQ(Results[1].tokenType, unsigned(HighlightingKind::Function)); in TEST()
998 EXPECT_EQ(Results[2].tokenType, unsigned(HighlightingKind::Variable)); in TEST()
/llvm-project-15.0.7/mlir/lib/Dialect/GPU/Transforms/
H A DAsyncRegionRewriter.cpp89 auto tokenType = builder.getType<gpu::AsyncTokenType>(); in rewriteAsyncOp() local
94 currentToken = createWaitOp(op->getLoc(), tokenType, {}); in rewriteAsyncOp()
106 resultTypes.push_back(tokenType); in rewriteAsyncOp()
/llvm-project-15.0.7/mlir/lib/Conversion/AsyncToLLVM/
H A DAsyncToLLVM.cpp77 static LLVM::LLVMTokenType tokenType(MLIRContext *ctx) { in tokenType() function
288 return AsyncAPI::tokenType(type.getContext()); in convertAsyncTypes()
309 auto token = AsyncAPI::tokenType(op->getContext()); in matchAndRewrite()
453 op, AsyncAPI::tokenType(op->getContext()), adaptor.getOperands()); in matchAndRewrite()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DProtocol.cpp1098 Result.push_back(Tok.tokenType); in encodeTokens()
1106 return std::tie(L.deltaLine, L.deltaStart, L.length, L.tokenType, in operator ==()
1108 R.length, R.tokenType, in operator ==()
H A DSemanticHighlighting.cpp970 Out->tokenType = static_cast<unsigned>(Tok.Kind); in toSemanticTokens()
H A DProtocol.h1655 unsigned tokenType = 0; member