| /external/clang/test/Driver/ |
| watchos-version-min.c | 3 // RUN: %clang -target i386-apple-darwin10 -mwatchsimulator-version-min=2.0 -arch i386 -S -o - %s | FileCheck %s 4 // RUN: %clang -target armv7s-apple-darwin10 -mwatchos-version-min=2.0 -arch armv7k -S -o - %s | FileCheck %s
|
| /external/clang/test/Format/ |
| language-detection.cpp | 2 // RUN: | clang-format -style=llvm -assume-filename=foo.js \ 5 // RUN: | clang-format -style=llvm -assume-filename=foo.cpp \
|
| /external/clang/test/Frontend/ |
| ast-codegen.c | 2 // RUN: %clang -target i386-unknown-unknown -emit-ast -o %t.ast %s 3 // RUN: %clang -target i386-unknown-unknown -emit-llvm -S -o - %t.ast | FileCheck %s
|
| /external/clang/test/Preprocessor/ |
| wasm-target-features.c | 1 // RUN: %clang -E -dM %s -o - 2>&1 \ 4 // RUN: %clang -E -dM %s -o - 2>&1 \ 10 // RUN: %clang -E -dM %s -o - 2>&1 \ 13 // RUN: %clang -E -dM %s -o - 2>&1 \ 19 // RUN: %clang -E -dM %s -o - 2>&1 \ 22 // RUN: %clang -E -dM %s -o - 2>&1 \ 28 // RUN: %clang -E -dM %s -o - 2>&1 \ 31 // RUN: %clang -E -dM %s -o - 2>&1 \
|
| /external/clang/test/SemaCXX/ |
| attr-optnone.cpp | 51 // Verify that we can specify the [[clang::optnone]] syntax as well. 53 [[clang::optnone]] 55 [[clang::optnone]] 58 [[clang::optnone]] // expected-note {{conflicting}} 61 [[clang::optnone]] int globalVar2; //expected-warning{{'optnone' attribute only applies to functions}} 64 [[clang::optnone]] int aField; // expected-warning{{'optnone' attribute only applies to functions}} 68 [[clang::optnone]] 70 [[clang::optnone]]
|
| switch-implicit-fallthrough-macro.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wimplicit-fallthrough -DCLANG_PREFIX -DCOMMAND_LINE_FALLTHROUGH=[[clang::fallthrough]] -DUNCHOSEN=[[fallthrough]] %s 3 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++1z -Wimplicit-fallthrough -DCLANG_PREFIX -DCOMMAND_LINE_FALLTHROUGH=[[clang::fallthrough]] %s 4 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++1z -Wimplicit-fallthrough -DCOMMAND_LINE_FALLTHROUGH=[[clang::fallthrough]] %s 5 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++1z -Wimplicit-fallthrough -DCOMMAND_LINE_FALLTHROUGH=[[fallthrough]] -DUNCHOSEN=[[clang::fallthrough]] %s 18 #define COMPATIBILITY_FALLTHROUGH [ [ /* test */ clang /* test */ \ 37 #define M1 [[clang::fallthrough]] 47 #define WRONG_MACRO1 clang::fallthrough 48 #define WRONG_MACRO2 [[clang::fallthrough] 49 #define WRONG_MACRO3 [[clang::fall through]] 50 #define WRONG_MACRO4 [[clang::fallthrough]] [all...] |
| /external/clang/test/SemaObjC/ |
| nullable-weak-property.m | 14 #pragma clang assume_nonnull begin 19 #pragma clang assume_nonnull end
|
| /external/clang/test/Tooling/ |
| auto-detect-from-source-parent.cpp | 3 // RUN: echo "[{\"directory\":\".\",\"command\":\"clang++ -c %/t/abc/def/ijk/qwe/test.cpp\",\"file\":\"%/t/abc/def/ijk/qwe/test.cpp\"}]" | sed -e 's/\\/\\\\/g' > %t/compile_commands.json 5 // RUN: not clang-check "%t/abc/def/ijk/qwe/test.cpp" 2>&1 | FileCheck %s
|
| clang-check-autodetect-dir.cpp | 3 // RUN: echo "[{\"directory\":\".\",\"command\":\"clang++ -c %/t/test.cpp\",\"file\":\"%/t/test.cpp\"}]" | sed -e 's/\\/\\\\/g' > %t/compile_commands.json 5 // RUN: not clang-check -p "%t/abc/def" "%t/test.cpp" 2>&1|FileCheck %s
|
| clang-check-rel-path.cpp | 4 // RUN: echo '[{"directory":"%t","command":"clang++ -c test.cpp","file":"test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json 6 // RUN: not clang-check -p "%t" "%t/test.cpp" 2>&1|FileCheck %s
|
| clang-check-strip-o.cpp | 3 // RUN: echo '[{"directory":".","command":"clang++ -c %t/test.cpp -o foo -ofoo","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json 5 // RUN: not clang-check -p "%t" "%t/test.cpp" -extra-arg=-v 2>&1|FileCheck %s
|
| clang-check.cpp | 3 // RUN: echo '[{"directory":".","command":"clang++ -c %t/test.cpp","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json 5 // RUN: not clang-check -p "%t" "%t/test.cpp" 2>&1|FileCheck %s
|
| multi-jobs.cpp | 1 // RUN: not clang-check "%s" -- -no-integrated-as -c 2>&1 | FileCheck %s 3 // RUN: not clang-check "%s" -- -target x86_64-win32 -c -no-integrated-as -no-integrated-as -no-integrated-as 2>&1 | FileCheck %s
|
| /external/clang/tools/clang-format/ |
| clang-format-sublime.py | 1 # This file is a minimal clang-format sublime-integration. To install: 2 # - Change 'binary' if clang-format is not on the path (see below). 4 # ~/.config/sublime-text-2/Packages/User/clang-format-sublime.py 8 # With this integration you can press the bound key and clang-format will 20 # Change this to the full path if clang-format is not on the path. 21 binary = 'clang-format' 24 # 'clang-format --help' for a list of supported styles. The default looks for 25 # a '.clang-format' or '_clang-format' file to indicate the style that should be
|
| /external/clang/unittests/ |
| CMakeLists.txt | 2 set_target_properties(ClangUnitTests PROPERTIES FOLDER "Clang tests") 6 # Will compile the list of files together and link against the clang
|
| /external/compiler-rt/lib/tsan/ |
| check_cmake.sh | 11 CC=clang CXX=clang++ cmake -G Ninja -DLLVM_ENABLE_WERROR=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON $ROOT/../../../..
|
| /external/compiler-rt/test/asan/TestCases/ |
| interface_test.cc | 4 // RUN: %clang %s -pie -o %t && %run %t 5 // RUN: %clang -x c %s -pie -o %t && %run %t
|
| /external/jemalloc/ |
| .travis.yml | 16 compiler: clang 18 compiler: clang
|
| /external/llvm/test/CodeGen/X86/ |
| fold-call-3.ll | 4 %"struct.clang::Action" = type { %"struct.clang::ActionBase" } 5 %"struct.clang::ActionBase" = type { i32 (...)** } 6 %"struct.clang::ActionBase::ActionResult<0u>" = type { i8*, i8 } 8 @llvm.used = appending global [1 x i8*] [ i8* bitcast (void (i8*, %"struct.clang::Action"*)* @_Z25RawPointerPerformanceTestPvRN5clang6ActionE to i8*) ], section "llvm.metadata" ; <[1 x i8*]*> [#uses=0] 10 define void @_Z25RawPointerPerformanceTestPvRN5clang6ActionE(i8* %Val, %"struct.clang::Action"* %Actions) nounwind { 12 %0 = alloca %"struct.clang::ActionBase::ActionResult<0u>", align 8 ; <%"struct.clang::ActionBase::ActionResult<0u>"*> [#uses=3] 18 %3 = getelementptr %"struct.clang::Action", %"struct.clang::Action"* %Actions, i64 0, i32 0, i32 0 ; <i32 (...)***> [#uses=1 [all...] |
| /external/llvm/test/DebugInfo/Inputs/ |
| split-dwarf-test.cc | 13 // 1) clang++ -### -gsplit-dwarf split-dwarf-test.cc -o split-dwarf-test 16 // 3) Manually run clang-cc1, objcopy and ld invocations.
|
| /external/skqp/infra/bots/recipe_modules/vars/examples/ |
| full.py | 25 'Build-Debian9-Clang-x86_64-Release-ParentRevision', 26 'Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD', 29 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', 30 'Build-Win-Clang-x86_64-Release-Vulkan', 33 'Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN', 35 'Upload-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Coverage', 36 'Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All', 37 'Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All'
|
| /frameworks/base/cmds/incidentd/ |
| README.md | 25 Use clang-format to style the file 27 clang-format -style=file -i <file list
|
| /frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
| jit.cpp | 1 // RUN: %clang %s -g -fexceptions %extra-clang-opts -o %t
|
| /frameworks/compile/slang/ |
| slang_rs_export_element.cpp | 19 #include "clang/AST/Decl.h" 20 #include "clang/AST/Type.h" 22 #include "clang/Basic/SourceLocation.h" 23 #include "clang/Basic/IdentifierTable.h" 72 const clang::Type *T, 89 case clang::Type::Builtin: 90 case clang::Type::Pointer: { 103 case clang::Type::ExtVector: { 108 static_cast<const clang::ExtVectorType*>( 132 const clang::DeclaratorDecl *DD) [all...] |
| slang_rs_export_foreach.h | 24 #include "clang/AST/Decl.h" 31 namespace clang { namespace 33 } // namespace clang 41 typedef llvm::SmallVectorImpl<const clang::ParmVarDecl*> InVec; 61 llvm::SmallVector<const clang::ParmVarDecl*, 16> mIns; 62 const clang::ParmVarDecl *mOut; 63 const clang::ParmVarDecl *mUsrData; 68 clang::QualType mResultType; // return type (if present). 75 RSExportForEach(RSContext *Context, const llvm::StringRef &Name, clang::SourceLocation Loc) 81 mResultType(clang::QualType()), mHasReturnType(false) [all...] |