Searched refs:clang (Results 76 - 100 of 1951) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/clang/include/clang/Tooling/Transformer/
H A DParsing.h19 #include "clang/ASTMatchers/ASTMatchFinder.h"
20 #include "clang/Basic/SourceLocation.h"
21 #include "clang/Tooling/Transformer/RangeSelector.h"
25 namespace clang { namespace
38 } // namespace clang
/openbsd-current/gnu/llvm/clang/tools/libclang/
H A DCXType.h16 #include "clang-c/Index.h"
17 #include "clang/AST/Type.h"
19 namespace clang { namespace
24 }} // end namespace clang::cxtype
/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DLambda.h19 namespace clang { namespace
41 } // end namespace clang
H A DAllDiagnostics.h17 #include "clang/Basic/DiagnosticAST.h"
18 #include "clang/Basic/DiagnosticAnalysis.h"
19 #include "clang/Basic/DiagnosticComment.h"
20 #include "clang/Basic/DiagnosticCrossTU.h"
21 #include "clang/Basic/DiagnosticDriver.h"
22 #include "clang/Basic/DiagnosticFrontend.h"
23 #include "clang/Basic/DiagnosticLex.h"
24 #include "clang/Basic/DiagnosticParse.h"
25 #include "clang/Basic/DiagnosticSema.h"
26 #include "clang/Basi
29 namespace clang { namespace
[all...]
H A DTokenKinds.h10 /// Defines the clang::TokenKind enum and support functions.
20 namespace clang { namespace
27 #include "clang/Basic/TokenKinds.def"
35 #include "clang/Basic/TokenKinds.def"
43 #include "clang/Basic/TokenKinds.def"
103 } // end namespace clang
106 template <> struct DenseMapInfo<clang::tok::PPKeywordKind> {
107 static inline clang::tok::PPKeywordKind getEmptyKey() {
108 return clang::tok::PPKeywordKind::pp_not_keyword;
110 static inline clang
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h27 // AST_MATCHER_P(clang::MemberExpr, Member,
28 // clang::ast_matchers::internal::Matcher<clang::ValueDecl>,
36 // namespace clang {
45 // } // namespace clang
58 return ::clang::ast_matchers::internal::MemoizedMatcher< \
97 : public ::clang::ast_matchers::internal::MatcherInterface<Type> { \
101 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \
102 ::clang::ast_matchers::internal::BoundNodesTreeBuilder \
106 inline ::clang
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h23 #include "clang/AST/ASTContext.h"
24 #include "clang/AST/ASTFwd.h"
25 #include "clang/AST/TemplateBase.h"
26 #include "clang/AST/Type.h"
27 #include "clang/Basic/TargetInfo.h"
44 namespace clang { namespace
48 } // namespace clang
98 /// This class uses a single clang::ASTContext as the backend for storing
99 /// its types and declarations. Every clang::ASTContext should also just have
102 /// The clang
[all...]
/openbsd-current/gnu/llvm/clang/tools/clang-format/fuzzer/
H A DClangFormatFuzzer.cpp15 #include "clang/Format/Format.h"
20 auto Style = getGoogleStyle(clang::format::FormatStyle::LK_Cpp);
22 auto Replaces = reformat(Style, s, clang::tooling::Range(0, s.size()));
/openbsd-current/gnu/llvm/clang/lib/DirectoryWatcher/default/
H A DDirectoryWatcher-not-implemented.cpp9 #include "clang/DirectoryWatcher/DirectoryWatcher.h"
12 using namespace clang;
14 llvm::Expected<std::unique_ptr<DirectoryWatcher>> clang::DirectoryWatcher::create(
/openbsd-current/gnu/llvm/clang/lib/Basic/Targets/
H A DLe64.cpp15 #include "clang/Basic/Builtins.h"
16 #include "clang/Basic/MacroBuilder.h"
17 #include "clang/Basic/TargetBuiltins.h"
19 using namespace clang;
20 using namespace clang::targets;
H A DMSP430.cpp14 #include "clang/Basic/MacroBuilder.h"
16 using namespace clang;
17 using namespace clang::targets;
H A DPNaCl.cpp14 #include "clang/Basic/MacroBuilder.h"
16 using namespace clang;
17 using namespace clang::targets;
H A DXCore.cpp14 #include "clang/Basic/Builtins.h"
15 #include "clang/Basic/MacroBuilder.h"
16 #include "clang/Basic/TargetBuiltins.h"
18 using namespace clang;
19 using namespace clang::targets;
26 #include "clang/Basic/BuiltinsXCore.def"
37 clang::XCore::LastTSBuiltin - Builtin::FirstTSBuiltin);
/openbsd-current/gnu/llvm/clang/lib/Basic/
H A DCLWarnings.cpp13 #include "clang/Basic/CLWarnings.h"
14 #include "clang/Basic/DiagnosticCategories.h"
17 using namespace clang;
20 clang::diagGroupFromCLWarningID(unsigned CLWarningID) {
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DAttrDocTable.cpp13 #include "clang/AST/Attr.h"
20 #include "clang/Basic/AttrList.inc"
23 llvm::StringRef clang::Attr::getDocumentation(clang::attr::Kind K) {
/openbsd-current/gnu/llvm/clang/tools/diag-build/
H A Ddiag-build.sh36 if [[ -x $(dirname $0)/clang ]]; then
37 CC=$(dirname $0)/clang
38 elif [[ ! -z $(which clang) ]]; then
39 CC=$(which clang)
49 if [[ -x $(dirname $0)/clang++ ]]; then
50 CXX=$(dirname $0)/clang++
51 elif [[ ! -z $(which clang++) ]]; then
52 CXX=$(which clang++)
/openbsd-current/gnu/llvm/clang/tools/clang-check/
H A DClangCheck.cpp1 //===--- tools/clang-check/ClangCheck.cpp - Clang check tool --------------===//
9 // This file implements a clang-check tool that runs clang based on the info
13 // http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
18 #include "clang/AST/ASTConsumer.h"
19 #include "clang/CodeGen/ObjectFilePCHContainerOperations.h"
20 #include "clang/Driver/Options.h"
21 #include "clang/Frontend/ASTConsumers.h"
22 #include "clang/Frontend/CompilerInstance.h"
23 #include "clang/Rewrit
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DCharUnits.h21 namespace clang { namespace
223 } // namespace clang
225 inline clang::CharUnits operator* (clang::CharUnits::QuantityType Scale,
226 const clang::CharUnits &CU) {
232 template<> struct DenseMapInfo<clang::CharUnits> {
233 static clang::CharUnits getEmptyKey() {
234 clang::CharUnits::QuantityType Quantity =
235 DenseMapInfo<clang::CharUnits::QuantityType>::getEmptyKey();
237 return clang
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.h16 #include "clang/AST/ASTContext.h"
31 clang::QualType type;
38 clang::QualType BuildType(TypeSystemClang &clang_ast_ctx, StringLexer &type,
42 clang::QualType BuildStruct(TypeSystemClang &ast_ctx, StringLexer &type,
45 clang::QualType BuildAggregate(TypeSystemClang &clang_ast_ctx,
49 clang::QualType BuildUnion(TypeSystemClang &ast_ctx, StringLexer &type,
52 clang::QualType BuildArray(TypeSystemClang &ast_ctx, StringLexer &type,
60 clang::QualType BuildObjCObjectPointerType(TypeSystemClang &clang_ast_ctx,
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPITypes.h19 #include "clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h"
20 #include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
23 namespace clang { namespace
49 typedef llvm::ImmutableMap<const clang::ento::MemRegion *,
50 clang::ento::mpi::Request>
65 } // end of namespace: clang
/openbsd-current/gnu/usr.bin/clang/include/clang/Driver/
H A DMakefile6 CLANG_INC=${.CURDIR}/../../../../../llvm/clang/include
18 Options.inc: ${CLANG_INC}/clang/Driver/Options.td
19 ${TBLGEN} -I${CLANG_INC}/clang/Driver \
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DHaiku.cpp12 using namespace clang::driver;
13 using namespace clang::driver::toolchains;
14 using namespace clang;
/openbsd-current/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionHelper.h20 namespace clang { namespace
53 virtual clang::ASTConsumer *
54 ASTTransformer(clang::ASTConsumer *passthrough) = 0;
H A DNameSearchContext.cpp13 using namespace clang;
16 clang::NamedDecl *NameSearchContext::AddVarDecl(const CompilerType &type) {
28 clang::ASTContext &ast = lldb_ast->getASTContext();
30 clang::NamedDecl *Decl = VarDecl::Create(
38 clang::NamedDecl *NameSearchContext::AddFunDecl(const CompilerType &type,
56 clang::ASTContext &ast = lldb_ast->getASTContext();
62 clang::DeclContext *context = const_cast<DeclContext *>(m_decl_context);
67 clang::LinkageSpecDecl::LanguageIDs::lang_c, false);
73 clang::DeclarationName decl_name =
78 clang
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStandardLibrary.h25 namespace clang { namespace
108 } // namespace clang
112 template <> struct DenseMapInfo<clang::tooling::stdlib::Header> {
113 static inline clang::tooling::stdlib::Header getEmptyKey() {
114 return clang::tooling::stdlib::Header(-1);
116 static inline clang::tooling::stdlib::Header getTombstoneKey() {
117 return clang::tooling::stdlib::Header(-2);
119 static unsigned getHashValue(const clang::tooling::stdlib::Header &H) {
122 static bool isEqual(const clang::tooling::stdlib::Header &LHS,
123 const clang
[all...]

Completed in 336 milliseconds

1234567891011>>