Changeset View
Changeset View
Standalone View
Standalone View
clang/include/clang-c/Index.h
/*===-- clang-c/Index.h - Indexing Public C Interface -------------*- C -*-===*\ | /*===-- clang-c/Index.h - Indexing Public C Interface -------------*- C -*-===*\ | ||||
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 *| | |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| | ||||
|* Exceptions. *| | |* 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 2,554 Lines • ▼ Show 20 Lines | enum CXCursorKind { | ||||
/** OpenMP depobj directive. | /** OpenMP depobj directive. | ||||
*/ | */ | ||||
CXCursor_OMPDepobjDirective = 286, | CXCursor_OMPDepobjDirective = 286, | ||||
/** OpenMP scan directive. | /** OpenMP scan directive. | ||||
*/ | */ | ||||
CXCursor_OMPScanDirective = 287, | CXCursor_OMPScanDirective = 287, | ||||
CXCursor_LastStmt = CXCursor_OMPScanDirective, | /** OpenMP tile directive. | ||||
*/ | |||||
CXCursor_OMPTileDirective = 288, | |||||
CXCursor_LastStmt = CXCursor_OMPTileDirective, | |||||
/** | /** | ||||
* Cursor that represents the translation unit itself. | * Cursor that represents the translation unit itself. | ||||
* | * | ||||
* The translation unit cursor exists primarily to act as the root | * The translation unit cursor exists primarily to act as the root | ||||
* cursor for traversing the contents of a translation unit. | * cursor for traversing the contents of a translation unit. | ||||
*/ | */ | ||||
CXCursor_TranslationUnit = 300, | CXCursor_TranslationUnit = 300, | ||||
▲ Show 20 Lines • Show All 4,174 Lines • Show Last 20 Lines |
clang-format not found in user's PATH; not linting file.