| /external/clang/lib/StaticAnalyzer/Core/ |
| CheckerRegistry.cpp | 10 #include "clang/StaticAnalyzer/Core/CheckerRegistry.h" 11 #include "clang/Basic/Diagnostic.h" 12 #include "clang/Frontend/FrontendDiagnostic.h" 13 #include "clang/StaticAnalyzer/Core/CheckerOptInfo.h" 14 #include "clang/StaticAnalyzer/Core/AnalyzerOptions.h" 18 using namespace clang;
|
| /external/clang/lib/Tooling/Core/ |
| Lookup.cpp | 1 //===--- Lookup.cpp - Framework for clang refactoring tools ---------------===// 10 // This file defines helper methods for clang tools performing name lookup. 14 #include "clang/Tooling/Core/Lookup.h" 15 #include "clang/AST/Decl.h" 16 using namespace clang; 17 using namespace clang::tooling;
|
| /external/clang/runtime/ |
| CMakeLists.txt | 62 DEPENDS llvm-config clang 68 -DCMAKE_C_COMPILER=${LLVM_RUNTIME_OUTPUT_INTDIR}/clang 69 -DCMAKE_CXX_COMPILER=${LLVM_RUNTIME_OUTPUT_INTDIR}/clang++ 74 -DCOMPILER_RT_OUTPUT_DIR=${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION} 76 -DCOMPILER_RT_INSTALL_PATH:STRING=lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION} 94 DEPENDS clang
|
| /external/clang/tools/clang-format/ |
| clang-format-diff.py | 3 #===- clang-format-diff.py - ClangFormat Diff Reformatter ----*- python -*--===# 20 git diff -U0 HEAD^ | clang-format-diff.py -p1 -i 21 svn diff --diff-cmd=diff -x-U0 | clang-format-diff.py -i 52 help='let clang-format sort include blocks') 58 parser.add_argument('-binary', default='clang-format', 59 help='location of binary to use for clang-format')
|
| /external/clang/tools/diagtool/ |
| ShowEnabledWarnings.cpp | 12 #include "clang/Basic/LLVM.h" 13 #include "clang/Frontend/CompilerInstance.h" 14 #include "clang/Frontend/TextDiagnosticBuffer.h" 15 #include "clang/Frontend/TextDiagnosticPrinter.h" 16 #include "clang/Frontend/Utils.h" 23 using namespace clang;
|
| TreeView.cpp | 12 #include "clang/AST/ASTDiagnostic.h" 13 #include "clang/Basic/AllDiagnostics.h" 14 #include "clang/Basic/Diagnostic.h" 15 #include "clang/Basic/DiagnosticOptions.h" 23 using namespace clang; 53 static clang::DiagnosticsEngine Diags(new DiagnosticIDs,
|
| /external/clang/tools/libclang/ |
| ARCMigrate.cpp | 1 //===- ARCMigrate.cpp - Clang-C ARC Migration Library ---------------------===// 10 // This file implements the main API hooks in the Clang-C ARC Migration library. 14 #include "clang-c/Index.h" 16 #include "clang/ARCMigrate/ARCMT.h" 17 #include "clang/Frontend/TextDiagnosticBuffer.h" 20 using namespace clang;
|
| CIndexUSRs.cpp | 1 //===- CIndexUSR.cpp - Clang-C Source Indexing Library --------------------===// 18 #include "clang/Frontend/ASTUnit.h" 19 #include "clang/Index/USRGeneration.h" 20 #include "clang/Lex/PreprocessingRecord.h" 24 using namespace clang; 25 using namespace clang::index;
|
| CIndexer.h | 1 //===- CIndexer.h - Clang-C Source Indexing Library -------------*- C++ -*-===// 18 #include "clang-c/Index.h" 19 #include "clang/Frontend/PCHContainerOperations.h" 20 #include "clang/Lex/ModuleLoader.h" 30 namespace clang { namespace 75 /// \brief Get the path of the clang resource files.
|
| /external/clang/utils/ |
| ClangDataFormat.py | 1 """lldb data formatters for clang classes. 12 (clang::SourceLocation) $0 = { 19 (clang::SourceLocation) $4 = "/usr/include/i386/_types.h:37:1" (offset: 123582, file, local) 25 debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLocation") 26 debugger.HandleCommand("type summary add -F ClangDataFormat.QualType_summary clang::QualType") 63 srcmgr_path = findObjectExpressionPath("clang::SourceManager", self.frame)
|
| /external/deqp/framework/delibs/cmake/ |
| Defs.cmake | 70 # Prevent mixed compile with GCC and Clang 73 elseif (NOT (CMAKE_C_COMPILER_ID MATCHES "Clang") EQUAL (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) 74 message(FATAL_ERROR "CMake C and CXX compilers do not match. Both or neither must be Clang.") 83 elseif (CMAKE_C_COMPILER_ID MATCHES "Clang") 103 DE_MAKE_ENV_BOOL("DE_COMPILER" "CLANG")
|
| /external/llvm/docs/ |
| HowToBuildOnARM.rst | 9 Clang on an ARM machine. 11 This document is *NOT* tailored to help you cross-compile LLVM/Clang 15 Notes On Building LLVM/Clang on ARM 17 Here are some notes on building/testing LLVM/Clang on ARM. Note that 25 Building LLVM/Clang in ``Relese`` mode is preferred since it consumes 52 #. If you are building LLVM/Clang on an ARM board with 1G of memory or less,
|
| /external/llvm/test/DebugInfo/Generic/ |
| varargs.ll | 6 ; Created from tools/clang/tests/CodeGenCXX/debug-info-varargs.cpp 48 ; ModuleID = 'llvm/tools/clang/test/CodeGenCXX/debug-info-varargs.cpp' 75 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !3, globals: !2, imports: !2) 76 !1 = !DIFile(filename: "llvm/tools/clang/test/CodeGenCXX/debug-info-varargs.cpp", directory: "radar/13690847") 87 !15 = !DIFile(filename: "llvm/tools/clang/test/CodeGenCXX/debug-info-varargs.cpp", directory: "radar/13690847") 92 !20 = !{!"clang version 3.5 "}
|
| /external/swiftshader/third_party/subzero/docs/ |
| ASAN.rst | 18 Furthermore, pnacl-clang automatically inlines some calls to calloc(), 20 sz-clang.py and sz-clang++.py, that normally just pass their arguments 21 through to pnacl-clang or pnacl-clang++, but add instrumentation to 27 sz-clang.py -fsanitize-address -o hello.nonfinal.pexe hello.c
|
| /external/tensorflow/tensorflow/tools/graph_transforms/ |
| fuse_convolutions.cc | 35 input_graph_def, // clang-format off 46 }, // clang-format on 89 input_graph_def, // clang-format off 95 }, // clang-format on 144 input_graph_def, // clang-format off 155 }, // clang-format on
|
| /external/vixl/src/ |
| compiler-intrinsics-vixl.h | 54 // clang-format off 60 // clang-format on 66 // clang-format off 72 // clang-format on 78 // clang-format off 85 // clang-format on
|
| /external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
| h264_video_toolbox_nalu_unittest.cc | 49 // clang-format off 54 // clang-format on 65 // clang-format off 72 // clang-format on 118 // clang-format off 123 // clang-format on
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
| DeclGroup.h | 21 namespace clang { namespace 136 } // end clang namespace 143 class PointerLikeTypeTraits<clang::DeclGroupRef> { 145 static inline void *getAsVoidPointer(clang::DeclGroupRef P) { 148 static inline clang::DeclGroupRef getFromVoidPointer(void *P) { 149 return clang::DeclGroupRef::getFromOpaquePtr(P);
|
| DependentDiagnostic.h | 21 #include "clang/AST/DeclBase.h" 22 #include "clang/AST/DeclContextInternals.h" 23 #include "clang/AST/Type.h" 24 #include "clang/Basic/PartialDiagnostic.h" 25 #include "clang/Basic/SourceLocation.h" 27 namespace clang { namespace
|
| VTTBuilder.h | 18 #include "clang/AST/BaseSubobject.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/GlobalDecl.h" 21 #include "clang/AST/RecordLayout.h" 22 #include "clang/Basic/ABI.h" 25 namespace clang { namespace
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/ |
| OSLog.h | 18 #include "clang/AST/ASTContext.h" 19 #include "clang/AST/Expr.h" 21 namespace clang { namespace 150 bool computeOSLogBufferLayout(clang::ASTContext &Ctx, const clang::CallExpr *E, 154 } // namespace clang
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/ |
| SwiftCallingConv.h | 17 #include "clang/AST/CanonicalType.h" 18 #include "clang/AST/CharUnits.h" 19 #include "clang/AST/Type.h" 30 namespace clang { namespace 160 /// private interface for Clang. 168 } // end namespace clang
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/ |
| DeclGroup.h | 21 namespace clang { namespace 136 } // end clang namespace 143 class PointerLikeTypeTraits<clang::DeclGroupRef> { 145 static inline void *getAsVoidPointer(clang::DeclGroupRef P) { 148 static inline clang::DeclGroupRef getFromVoidPointer(void *P) { 149 return clang::DeclGroupRef::getFromOpaquePtr(P);
|
| DependentDiagnostic.h | 21 #include "clang/AST/DeclBase.h" 22 #include "clang/AST/DeclContextInternals.h" 23 #include "clang/AST/Type.h" 24 #include "clang/Basic/PartialDiagnostic.h" 25 #include "clang/Basic/SourceLocation.h" 27 namespace clang { namespace
|
| VTTBuilder.h | 18 #include "clang/AST/BaseSubobject.h" 19 #include "clang/AST/CXXInheritance.h" 20 #include "clang/AST/GlobalDecl.h" 21 #include "clang/AST/RecordLayout.h" 22 #include "clang/Basic/ABI.h" 25 namespace clang { namespace
|