HomeSort by relevance Sort by last modified time
    Searched full:clang (Results 1 - 25 of 1469) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/
CMakeLists.txt 1 add_subdirectory(clang)
Makefile 2 DIRS := clang clang-c
  /external/clang/test/Sema/Inputs/
pragma-arc-cf-code-audited.h 16 #pragma clang arc_cf_code_audited begin
  /external/clang/examples/
CMakeLists.txt 1 add_subdirectory(clang-interpreter)
  /external/clang/examples/wpa/
CMakeLists.txt 23 add_clang_executable(clang-wpa
24 clang-wpa.cpp
26 add_dependencies(clang-wpa clang-headers)
  /external/clang/test/Driver/
immediate-options.c 1 // RUN: %clang --help
2 // RUN: %clang --help-hidden
3 // RUN: %clang -dumpversion
4 // RUN: %clang -print-search-dirs
  /external/clang/
clang-tblgen-rules.mk 13 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/AST/AttrImpl.inc
14 $(intermediates)/include/clang/AST/AttrImpl.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
15 @echo "Building Clang attribute implementations with tblgen"
16 $(call transform-host-clang-td-to-out,clang-attr-impl)
20 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Basic/AttrList.inc
21 $(intermediates)/include/clang/Basic/AttrList.inc: $(CLANG_ROOT_PATH)/include/clang/Basic/Attr.td $(CLANG_TBLGEN)
22 @echo "Building Clang attribute list with tblgen
    [all...]
clang.mk 5 CLANG_TBLGEN := $(BUILD_OUT_EXECUTABLES)/clang-tblgen$(BUILD_EXECUTABLE_SUFFIX)
7 CLANG_HOST_BUILD_MK := $(CLANG_ROOT_PATH)/clang-host-build.mk
8 CLANG_TBLGEN_RULES_MK := $(CLANG_ROOT_PATH)/clang-tblgen-rules.mk
9 CLANG_VERSION_INC_MK := $(CLANG_ROOT_PATH)/clang-version-inc.mk
  /external/llvm/utils/lit/lit/ExampleTests/Clang/
lit.cfg 6 config.name = 'Clang'
22 # Discover the 'clang' and 'clangcc' to use.
27 # Determine which clang to use.
28 clang = os.getenv('CLANG')
30 # If the user set clang in the environment, definitely use that and don't
32 if clang:
33 return clang
36 clang = lit.util.which('clang', PATH
    [all...]
  /external/clang/test/Preprocessor/
pragma_diagnostic_output.c 15 // CHECK: #pragma clang diagnostic warning "-Wall"
16 #pragma clang diagnostic warning "-Wall"
17 // CHECK: #pragma clang diagnostic ignored "-Wall"
18 #pragma clang diagnostic ignored "-Wall"
19 // CHECK: #pragma clang diagnostic error "-Wall"
20 #pragma clang diagnostic error "-Wall"
21 // CHECK: #pragma clang diagnostic fatal "-Wall"
22 #pragma clang diagnostic fatal "-Wall"
23 // CHECK: #pragma clang diagnostic push
24 #pragma clang diagnostic pus
    [all...]
dump-options.c 1 // RUN: %clang %s -E -dD | grep __INTMAX_MAX__
2 // RUN: %clang %s -E -dM | grep __INTMAX_MAX__
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}}
  /external/clang/test/Sema/
pragma-arc-cf-code-audited.c 3 #pragma clang arc_cf_code_audited foo // expected-error {{expected 'begin' or 'end'}}
5 #pragma clang arc_cf_code_audited begin foo // expected-warning {{extra tokens at end of #pragma directive}}
7 #pragma clang arc_cf_code_audited end
8 #pragma clang arc_cf_code_audited end // expected-error {{not currently inside '#pragma clang arc_cf_code_audited'}}
10 #pragma clang arc_cf_code_audited begin // expected-note {{#pragma entered here}}
11 #pragma clang arc_cf_code_audited begin // expected-error {{already inside '#pragma clang arc_cf_code_audited'}} expected-note {{#pragma entered here}}
13 #include "Inputs/pragma-arc-cf-code-audited.h" // expected-error {{cannot #include files inside '#pragma clang arc_cf_code_audited'}}
16 // expected-error {{'#pragma clang arc_cf_code_audited' was not ended within this file}
    [all...]
  /external/clang/tools/driver/
CMakeLists.txt 32 add_clang_executable(clang
38 set_target_properties(clang PROPERTIES VERSION ${CLANG_EXECUTABLE_VERSION})
46 # Create the clang++ symlink in the build directory.
47 set(clang_pp "${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang++${CMAKE_EXECUTABLE_SUFFIX}")
48 add_custom_target(clang++ ALL
50 "${LLVM_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/clang${CMAKE_EXECUTABLE_SUFFIX}"
52 DEPENDS clang)
53 set_target_properties(clang++ PROPERTIES FOLDER "Clang executables")
58 install(TARGETS clang
    [all...]
clang_symlink.cmake 20 set(clang "clang${EXECUTABLE_SUFFIX}")
21 set(clangxx "clang++${EXECUTABLE_SUFFIX}")
23 message("Creating clang++ executable based on ${clang}")
26 COMMAND "${CMAKE_COMMAND}" -E ${CLANGXX_LINK_OR_COPY} "${clang}" "${clangxx}"
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 21 #include "clang/AST/DeclGroup.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/NestedNameSpecifier.h"
24 #include "clang/AST/OperationKinds.h"
25 #include "clang/AST/Stmt.h"
26 #include "clang/AST/StmtVisitor.h"
35 clang::FunctionDecl *RSObjectRefCount::
38 clang::FunctionDecl *RSObjectRefCount::
42 void RSObjectRefCount::GetRSRefCountingFunctions(clang::ASTContext &C) {
44 i < (sizeof(RSClearObjectFD) / sizeof(clang::FunctionDecl*))
    [all...]
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/Index/Inputs/
crash-recovery-reparse-remap.c 8 #pragma clang __debug crash
  /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/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
50 (defcustom clang "clang" function
    [all...]
  /external/clang/www/
related.html 7 <title>Clang Related Projects</title>
14 <h1>Clang Related Projects</h1>
16 <p>As Clang matures, more and more projects are being built atop the Clang
17 libraries and other open source projects are starting their own Clang
18 related subprojects, like building their source code with Clang or writing
19 custom analysis tools using Clang. This page tracks some of those Clang
22 <p>Please email cfe-dev if you have a Clang related project you would like
26 <dt>FreeBSD Clang Page</dt
    [all...]
  /external/clang/utils/TableGen/
CMakeLists.txt 4 add_tablegen(clang-tblgen CLANG
  /external/clang/test/Lexer/
comment-escape.c 1 // RUN: %clang -fsyntax-only %s
  /external/clang/test/Modules/
driver.c 1 // RUN: %clang %s -### 2>&1 | FileCheck -check-prefix NO_MODULE_CACHE %s
2 // RUN: %clang -fmodule-cache-path blarg %s -### 2>&1 | FileCheck -check-prefix WITH_MODULE_CACHE %s
4 // CHECK-NO_MODULE_CACHE: {{clang.*"-fmodule-cache-path"}}
6 // CHECK-WITH_MODULE_CACHE: {{clang.*"-fmodule-cache-path" "blarg"}}

Completed in 234 milliseconds

1 2 3 4 5 6 7 8 91011>>