HomeSort by relevance Sort by last modified time
    Searched full:clang (Results 26 - 50 of 3687) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/Inputs/
retain-comments-from-system-headers.h 1 #pragma clang system_header
  /external/clang/test/Preprocessor/
missing-system-header.h 1 #pragma clang system_header
pushable-diagnostics.c 3 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
5 #pragma clang diagnostic puhs // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
9 #pragma clang diagnostic push
10 #pragma clang diagnostic ignored "-Wmultichar"
13 #pragma clang diagnostic pop
17 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
  /frameworks/compile/slang/
.clang-format 1 # See http://clang.llvm.org/docs/ClangFormatStyleOptions.html
slang_rs_ast_replace.h 20 #include "clang/AST/StmtVisitor.h"
23 #include "clang/AST/ASTContext.h"
25 namespace clang { namespace
33 class RSASTReplace : public clang::StmtVisitor<RSASTReplace> {
35 clang::ASTContext &C;
36 clang::Stmt *mOuterStmt;
37 clang::Stmt *mOldStmt;
38 clang::Stmt *mNewStmt;
39 clang::Expr *mOldExpr;
40 clang::Expr *mNewExpr
    [all...]
  /external/clang/test/Parser/
pragma-loop.cpp 9 #pragma clang loop vectorize(enable)
10 #pragma clang loop interleave(enable)
11 #pragma clang loop unroll(enable)
16 #pragma clang loop vectorize_width(4)
17 #pragma clang loop interleave_count(8)
18 #pragma clang loop unroll_count(16)
23 #pragma clang loop vectorize(disable)
24 #pragma clang loop interleave(disable)
25 #pragma clang loop unroll(disable)
30 #pragma clang loop vectorize_width(4) interleave_count(8) unroll_count(16
    [all...]
  /external/clang/test/PCH/
pragma-loop.cpp 7 // CHECK: #pragma clang loop unroll_count(16)
8 // CHECK: #pragma clang loop interleave_count(8)
9 // CHECK: #pragma clang loop vectorize_width(4)
10 // CHECK: #pragma clang loop unroll(disable)
11 // CHECK: #pragma clang loop interleave(disable)
12 // CHECK: #pragma clang loop vectorize(enable)
13 // CHECK: #pragma clang loop unroll(enable)
14 // CHECK: #pragma clang loop interleave(enable)
15 // CHECK: #pragma clang loop vectorize(disable)
24 #pragma clang loop vectorize_width(4
    [all...]
  /external/clang/docs/
doxygen.intro 1 /// @mainpage clang
4 /// Welcome to the clang project.
7 /// up clang, not the @b external use of clang. There are no instructions
8 /// here on how to use clang, only the APIs that make up the software. For
14 /// Since clang is constantly under active development, what you're about to
  /external/clang/tools/driver/
CMakeLists.txt 21 option(CLANG_PLUGIN_SUPPORT "Build clang with plugin support" ON)
29 add_clang_executable(clang
35 target_link_libraries(clang
42 set_target_properties(clang PROPERTIES VERSION ${CLANG_EXECUTABLE_VERSION})
46 set_target_properties(clang PROPERTIES ENABLE_EXPORTS 1)
49 add_dependencies(clang clang-headers)
54 set(clang_binary "clang${CMAKE_EXECUTABLE_SUFFIX}")
57 set(clang_binary "${LLVM_RUNTIME_OUTPUT_INTDIR}/clang${CMAKE_EXECUTABLE_SUFFIX}")
60 # Create the clang++ symlink in the build directory
    [all...]
clang_symlink.cmake 20 set(clang "clang${EXECUTABLE_SUFFIX}")
21 set(clangxx "clang++${EXECUTABLE_SUFFIX}")
22 set(clang_cl "clang-cl${EXECUTABLE_SUFFIX}")
25 message("Creating clang++ executable based on ${clang}")
28 COMMAND "${CMAKE_COMMAND}" -E ${CLANGXX_LINK_OR_COPY} "${clang}" "${clangxx}"
31 message("Creating clang-cl executable based on ${clang}")
34 COMMAND "${CMAKE_COMMAND}" -E ${CLANGXX_LINK_OR_COPY} "${clang}" "${clang_cl}
    [all...]
  /external/clang/utils/
clang-completion-mode.el 0 ;;; Clang Code-Completion minor mode, for use with C/Objective-C/C++.
5 ;; This minor mode uses Clang's command line interface for code
7 ;; and C++ source files. When enabled, Clang will provide
10 ;; space), Clang will provide the names of all structs visible from
12 ;; Clang will provide the names of all of the members of whatever
15 ;; completion based on Clang. It needs your help to make it better!
17 ;; To use the Clang code completion mode, first make sure that the
18 ;; "clang" variable below refers to the "clang" executable,
20 ;; clang-completion-mode.el somewhere in your Emacs load path. You ca
54 (defcustom clang "clang" function
    [all...]
  /external/lldb/include/lldb/Symbol/
ClangASTImporter.h 17 #include "clang/AST/ASTImporter.h"
18 #include "clang/Basic/FileManager.h"
19 #include "clang/Basic/FileSystemOptions.h"
90 m_file_manager(clang::FileSystemOptions())
94 clang::QualType
95 CopyType (clang::ASTContext *dst_ctx,
96 clang::ASTContext *src_ctx,
97 clang::QualType type);
100 CopyType (clang::ASTContext *dst_ctx,
101 clang::ASTContext *src_ctx
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/
RecordInfo.h 17 #include "clang/AST/AST.h"
18 #include "clang/AST/CXXInheritance.h"
36 BasePoint(const clang::CXXBaseSpecifier& spec,
41 const clang::CXXBaseSpecifier& spec() { return spec_; }
45 const clang::CXXBaseSpecifier& spec_;
52 FieldPoint(clang::FieldDecl* field, Edge* edge)
57 clang::FieldDecl* field() { return field_; }
61 clang::FieldDecl* field_;
71 typedef std::map<clang::CXXRecordDecl*, BasePoint> Bases;
72 typedef std::map<clang::FieldDecl*, FieldPoint> Fields
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.h 20 #include "clang/AST/AST.h"
21 #include "clang/AST/ASTConsumer.h"
22 #include "clang/AST/Attr.h"
23 #include "clang/AST/CXXInheritance.h"
24 #include "clang/AST/TypeLoc.h"
25 #include "clang/Basic/SourceManager.h"
35 FindBadConstructsConsumer(clang::CompilerInstance& instance,
39 virtual void CheckChromeClass(clang::SourceLocation record_location,
40 clang::CXXRecordDecl* record);
41 virtual void CheckChromeEnum(clang::SourceLocation enum_location
    [all...]
  /external/clang/test/Frontend/
cc1-return-codes.c 3 // RUN: %clang -cc1 -help
4 // RUN: %clang -cc1 -version
  /external/clang/utils/TableGen/
CMakeLists.txt 3 add_tablegen(clang-tblgen CLANG
  /external/clang/test/Index/Inputs/Headers/
crash.h 3 # pragma clang __debug crash
  /external/clang/test/Integration/
carbon.c 1 // RUN: %clang -fsyntax-only %s
  /external/clang/test/Lexer/
comment-escape.c 1 // RUN: %clang -fsyntax-only %s
  /external/clang/test/Modules/
driver.c 1 // RUN: %clang -fmodules %s -### 2>&1 | FileCheck -check-prefix CHECK-NO_MODULE_CACHE %s
2 // RUN: %clang -fmodules -fmodules-cache-path=blarg %s -### 2>&1 | FileCheck -check-prefix CHECK-WITH_MODULE_CACHE %s
4 // CHECK-NO_MODULE_CACHE: {{clang.*"-fmodules-cache-path=.*ModuleCache"}}
6 // CHECK-WITH_MODULE_CACHE: {{clang.*"-fmodules-cache-path=blarg"}}
  /external/clang/tools/clang-format-vs/
CMakeLists.txt 1 option(BUILD_CLANG_FORMAT_VS_PLUGIN "Build clang-format VS plugin" OFF)
5 "${LLVM_TOOLS_BINARY_DIR}/${CMAKE_CFG_INTDIR}/clang-format.exe"
6 "${CMAKE_CURRENT_SOURCE_DIR}/ClangFormat/clang-format.exe"
7 DEPENDS clang-format)
  /external/clang/
clang.mk 5 CLANG_HOST_BUILD_MK := $(CLANG_ROOT_PATH)/clang-host-build.mk
6 CLANG_TBLGEN_RULES_MK := $(CLANG_ROOT_PATH)/clang-tblgen-rules.mk
7 CLANG_VERSION_INC_MK := $(CLANG_ROOT_PATH)/clang-version-inc.mk
  /external/clang/test/Driver/
cc-print-options.c 3 // RUN: %clang -no-canonical-prefixes -S -o %t.s %s
6 // CHECK: [Logging clang options]{{.*}}clang{{.*}}"-S"
inhibit-downstream-commands.c 1 // RUN: not %clang -no-integrated-as %s 2>&1 | FileCheck %s
3 // CHECK-NOT: clang: error: assembler command failed
4 // CHECK-NOT: clang: error: linker command failed
  /external/clang/test/Misc/
ast-print-pragmas.cpp 6 // CHECK: #pragma clang loop interleave_count(8)
7 // CHECK-NEXT: #pragma clang loop vectorize_width(4)
11 #pragma clang loop vectorize_width(4)
12 #pragma clang loop interleave_count(8)
19 // CHECK: #pragma clang loop interleave(disable)
20 // CHECK-NEXT: #pragma clang loop vectorize(enable)
22 #pragma clang loop vectorize(enable)
23 #pragma clang loop interleave(disable)
30 // CHECK: #pragma clang loop interleave(enable)
31 // CHECK-NEXT: #pragma clang loop vectorize(disable
    [all...]

Completed in 682 milliseconds

12 3 4 5 6 7 8 91011>>