Changeset View
Changeset View
Standalone View
Standalone View
clang/tools/libclang/CXCursor.cpp
//===- CXCursor.cpp - Routines for manipulating CXCursors -----------------===// | //===- CXCursor.cpp - Routines for manipulating CXCursors -----------------===// | ||||
Lint: Lint: clang-format not found in user's PATH; not linting file. | |||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
▲ Show 20 Lines • Show All 631 Lines • ▼ Show 20 Lines | case Stmt::MSDependentExistsStmtClass: | ||||
K = CXCursor_UnexposedStmt; | K = CXCursor_UnexposedStmt; | ||||
break; | break; | ||||
case Stmt::OMPParallelDirectiveClass: | case Stmt::OMPParallelDirectiveClass: | ||||
K = CXCursor_OMPParallelDirective; | K = CXCursor_OMPParallelDirective; | ||||
break; | break; | ||||
case Stmt::OMPSimdDirectiveClass: | case Stmt::OMPSimdDirectiveClass: | ||||
K = CXCursor_OMPSimdDirective; | K = CXCursor_OMPSimdDirective; | ||||
break; | break; | ||||
case Stmt::OMPTileDirectiveClass: | |||||
K = CXCursor_OMPTileDirective; | |||||
break; | |||||
case Stmt::OMPForDirectiveClass: | case Stmt::OMPForDirectiveClass: | ||||
K = CXCursor_OMPForDirective; | K = CXCursor_OMPForDirective; | ||||
break; | break; | ||||
case Stmt::OMPForSimdDirectiveClass: | case Stmt::OMPForSimdDirectiveClass: | ||||
K = CXCursor_OMPForSimdDirective; | K = CXCursor_OMPForSimdDirective; | ||||
break; | break; | ||||
case Stmt::OMPSectionsDirectiveClass: | case Stmt::OMPSectionsDirectiveClass: | ||||
K = CXCursor_OMPSectionsDirective; | K = CXCursor_OMPSectionsDirective; | ||||
▲ Show 20 Lines • Show All 1,041 Lines • Show Last 20 Lines |
clang-format not found in user's PATH; not linting file.