| /third_party/benchmark/.github/workflows/ |
| D | clang-tidy.yml | 1 name: clang-tidy 9 name: run-clang-tidy 10 runs-on: ubuntu-latest 12 fail-fast: false 14 - uses: actions/checkout@v2 16 - name: install clang-tidy 17 run: sudo apt update && sudo apt -y install clang-tidy 19 - name: create build environment 20 run: cmake -E make_directory ${{ runner.workspace }}/_build 22 - name: configure cmake [all …]
|
| /third_party/rust/crates/cxx/.github/workflows/ |
| D | ci.yml | 19 runs-on: ${{matrix.os || 'ubuntu'}}-latest 21 fail-fast: false 24 - rust: nightly 25 - rust: beta 26 - rust: stable 27 - rust: 1.60.0 28 - rust: 1.64.0 29 - name: macOS 32 - name: Windows (msvc) 33 rust: nightly-x86_64-pc-windows-msvc [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/ |
| D | Build-Debian10-Clang-x86_64-Debug-Tidy.json | 5 "-u", 7 "--json-output", 23 "-u", 24 "[START_DIR]/cache/work/skia/bin/fetch-gn" 32 "name": "fetch-gn" 38 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-Tidy/Debug", 39 …--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/cache/work/skia/tools/clang-tidy… 51 "-C", 52 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-Tidy/Debug" 64 "-u", [all …]
|
| /third_party/ejdb/docker/testbed/ |
| D | llvm-update-alternatives.sh | 3 set -e 4 set -x 10 update-alternatives \ 11 …--install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-${version} ${priority} \ 12 --slave /usr/bin/llvm-addr2line llvm-addr2line /usr/bin/llvm-addr2line-${version} \ 13 --slave /usr/bin/llvm-ar llvm-ar /usr/bin/llvm-ar-${version} \ 14 --slave /usr/bin/llvm-as llvm-as /usr/bin/llvm-as-${version} \ 15 --slave /usr/bin/llvm-bcanalyzer llvm-bcanalyzer /usr/bin/llvm-bcanalyzer-${version} \ 16 --slave /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-${version} \ 17 --slave /usr/bin/llvm-diff llvm-diff /usr/bin/llvm-diff-${version} \ [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 13 '--chrome-dir', chrome_dir, 14 '--output-dir', out, 15 '--extra-gn-args', 'mac_sdk_min="10.13"', 16 '--no-sync', '--no-hooks', '--make-output-dir']) 31 '-DSWIFTSHADER_BUILD_TESTS=OFF', 32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. 43 # CMakeLists.txt at a harmless non-existent path. 59 '-fsanitize=' + full, [all …]
|
| /third_party/elfio/.vscode/ |
| D | tasks.json | 8 "INCLUDES=-I..", 9 "CXXFLAGS='-g -O0'" 27 "INCLUDES=-I..", 28 "CXXFLAGS='-g -O0'" 40 "label": "clang-tidy", 41 "command": "clang-tidy", 43 …"--checks=*,-modernize-use-trailing-return-type,-modernize-avoid-c-arrays,-llvm*,-fuchsia-*,-alter… 44 "-header-filter=./*", 46 "--", 47 "-I.", [all …]
|
| /third_party/flutter/skia/tools/ |
| D | clang-tidy.sh | 4 # Use of this source code is governed by a BSD-style license that can be 7 set -e 18 if [ "$arg" == "-c" ]; then 27 clang-tidy -quiet -header-filter='.*' -warnings-as-errors='*' $src -- $args 29 exec clang++ $args
|
| /third_party/skia/tools/ |
| D | clang-tidy.sh | 4 # Use of this source code is governed by a BSD-style license that can be 7 set -e 18 if [ "$arg" == "-c" ]; then 27 clang-tidy -quiet -header-filter='.*' -warnings-as-errors='*' $src -- $args 29 exec clang++ $args
|
| /third_party/flutter/skia/infra/bots/ |
| D | compile.isolate | 8 '../../.clang-format', 9 '../../.clang-tidy', 13 '../../bin/fetch-clang-format', 14 '../../bin/fetch-gn',
|
| D | gen_compile_isolate.py | 5 # Use of this source code is governed by a BSD-style license that can be 31 '.clang-format', 32 '.clang-tidy', 33 'bin/fetch-clang-format', 34 'bin/fetch-gn', 78 output = subprocess.check_output(['git', 'ls-files'], cwd=repo_root).rstrip() 83 """Return all checked-in paths in PATH_PATTERNS or EXPLICIT_PATHS.""" 114 raise ValueError('Cannot add a non-matching entry to a Node!') 144 - This Node is a leaf, ie. it represents an entry which was explicitly 147 - This Node has immediate children exceeding COMBINE_PATHS_THRESHOLD and [all …]
|
| D | jobs.json | 2 "Build-Debian9-Clang-arm-Debug-Android", 3 "Build-Debian9-Clang-arm-Debug-Android_Vulkan", 4 "Build-Debian9-Clang-arm-Debug-Chromebook_GLES", 5 "Build-Debian9-Clang-arm-Debug-Chromecast", 6 "Build-Debian9-Clang-arm-Release-Android", 7 "Build-Debian9-Clang-arm-Release-Android_API26", 8 "Build-Debian9-Clang-arm-Release-Android_ASAN", 9 "Build-Debian9-Clang-arm-Release-Android_ASAN_Vulkan", 10 "Build-Debian9-Clang-arm-Release-Android_Vulkan", 11 "Build-Debian9-Clang-arm-Release-Chromebook_GLES", [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/examples/ |
| D | full.py | 2 # Use of this source code is governed by a BSD-style license that can be 30 'Build-Debian9-Clang-arm-Release-Flutter_Android_Docker', 31 'Build-Debian10-GCC-x86-Debug-Docker', 32 'Build-Debian10-GCC-x86_64-Debug-Docker', 33 'Build-Debian10-GCC-x86_64-Release-NoGPU_Docker', 34 'Build-Debian10-GCC-x86_64-Release-Shared_Docker', 35 'Build-Debian10-Clang-arm-Release-Android_API26', 36 'Build-Debian10-Clang-arm-Release-Android_ASAN', 37 'Build-Debian10-Clang-arm-Release-Chromebook_GLES', 38 'Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES_Docker', [all …]
|
| /third_party/mesa3d/.gitlab-ci/container/debian/ |
| D | android_build.sh | 3 set -ex 11 apt-get install -y --no-remove $EPHEMERAL 14 ndk=android-ndk-r21d 15 wget -O $ndk.zip https://dl.google.com/android/repository/$ndk-linux-x86_64.zip 16 unzip -d / $ndk.zip "$ndk/toolchains/llvm/*" 20 rdfind -makehardlinks true -makeresultsfile false /android-ndk-r21d/ 22 find /android-ndk-r21d/ -type f | egrep -i "clang-check|clang-tidy|lldb" | xargs rm -f 24 sh .gitlab-ci/container/create-android-ndk-pc.sh /$ndk zlib.pc "" "-lz" "1.2.3" 26 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk x86_64-linux-android x86_64 x86_64 27 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk i686-linux-android x86 x86 [all …]
|
| /third_party/json/cmake/ |
| D | ci.cmake | 12 execute_process(COMMAND ${ASTYLE_TOOL} --version OUTPUT_VARIABLE ASTYLE_TOOL_VERSION ERROR_VARIABLE… 13 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" ASTYLE_TOOL_VERSION "${ASTYLE_TOOL_VERSION}") 16 find_program(CLANG_TOOL NAMES clang++-HEAD clang++-12 clang++-11 clang++) 17 execute_process(COMMAND ${CLANG_TOOL} --version OUTPUT_VARIABLE CLANG_TOOL_VERSION ERROR_VARIABLE C… 18 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TOOL_VERSION "${CLANG_TOOL_VERSION}") 19 message(STATUS " Clang ${CLANG_TOOL_VERSION} (${CLANG_TOOL})") 21 find_program(CLANG_TIDY_TOOL NAMES clang-tidy-12 clang-tidy-11 clang-tidy) 22 execute_process(COMMAND ${CLANG_TIDY_TOOL} --version OUTPUT_VARIABLE CLANG_TIDY_TOOL_VERSION ERROR_… 23 string(REGEX MATCH "[0-9]+(\\.[0-9]+)+" CLANG_TIDY_TOOL_VERSION "${CLANG_TIDY_TOOL_VERSION}") 24 message(STATUS " Clang-Tidy ${CLANG_TIDY_TOOL_VERSION} (${CLANG_TIDY_TOOL})") [all …]
|
| /third_party/vk-gl-cts/ |
| D | Android.mk | 1 LOCAL_PATH := $(call my-dir) 4 # The clang-tidy google-explicit-constructor warning is issued to nearly 8 # or NOLINT(implicit), we suppress the google-explicit-constructor check. 9 LOCAL_TIDY_CHECKS := -google-explicit-constructor 24 -DDEQP_SUPPORT_GLES1=1 \ 25 -DDE_ANDROID_API=9 \ 26 -D_XOPEN_SOURCE=600 \ 27 -DDEQP_TARGET_NAME=\"android\" \ 28 -DQP_SUPPORT_PNG=1 \ 29 -Wall \ [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
| D | attributes.h | 7 // https://www.apache.org/licenses/LICENSE-2.0 21 // Most macros here are exposing GCC or Clang features, and are stubbed out for 25 // https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Function-Attributes.html 26 // https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Variable-Attributes.html 27 // https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Type-Attributes.html 30 // of them are not supported in older version of Clang. Thus, we check 41 // A function-like feature checking macro that is a wrapper around 42 // `__has_attribute`, which is defined by GCC 5+ and Clang and evaluates to a 47 // GCC: https://gcc.gnu.org/gcc-5/changes.html 48 // Clang: https://clang.llvm.org/docs/LanguageExtensions.html [all …]
|
| /third_party/skia/infra/bots/gen_tasks_logic/ |
| D | compile_cas.go | 2 // Use of this source code is governed by a BSD-style license that can be 46 ".clang-format", 47 ".clang-tidy", 48 "bin/fetch-clang-format", 49 "bin/fetch-gn", 67 cmd := exec.Command("git", "ls-files") 163 // - This Node is a leaf, ie. it represents an entry which was explicitly 166 // - This Node has immediate children exceeding combinePathsThreshold and
|
| /third_party/libabigail/ |
| D | NEWS | 10 abidiff: add a --debug-tc option 11 Bug 29650 - Caching class comparison result potentially too early 15 dwarf-reader: Fix class size setting bug 16 rhbz2114909 - Refer to changed base classes using their non-qualified names 17 ir: Don't crash when looking at corpus-less translation units 21 test-read-ctf: Update tests for fixing size and name for underlying types 23 dwarf-reader: Leverage ODR & DWZ 24 dwarf-reader: Avoid duplicating member functions 25 dwarf-reader: Make die_peel_{qual_ptr,typedef} always set peeled type 26 Bug 29829 - dwarf-reader: Allow DIEs to be in a lexical block [all …]
|
| /third_party/json/ |
| D | CMakeLists.txt | 38 option(JSON_MultipleHeaders "Use non-amalgamated version of the library." OFF) 39 option(JSON_SystemInclude "Include as system headers (skip for clang-tidy)." OFF) 63 message(STATUS "Using the multi-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}") 66 message(STATUS "Using the single-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}") 119 # Install a pkg-config file, so other tools can find this. 121 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/pkg-config.pc.in" 141 # write_basic_package_version_file to ensure that it's architecture-independent
|
| /third_party/json/doc/mkdocs/docs/integration/ |
| D | cmake.md | 114 Enable [extended diagnostic messages](../home/exceptions.md#extended-diagnostic-messages) by defini… 130 Use non-amalgamated version of the library. This option is `OFF` by default. 134 …clude_directories.html) call) to checks for this library by tools like Clang-Tidy. This option is …
|
| /third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/ |
| D | fuzzer.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 86 std::memcpy( // NOLINT - clang-tidy warns about lack of null termination. in LLVMFuzzerCustomMutator()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | Compiler.h | 1 //===-- llvm/Support/Compiler.h - Compiler abstraction support --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // use of compiler-specific features in a way that remains portable. This header 13 //===----------------------------------------------------------------------===// 18 #include "llvm/Config/llvm-config.h" 95 /// Does the compiler support ref-qualifiers for *this? 105 /// Expands to '&' if ref-qualifiers for *this are supported. 115 /// LLVM_LIBRARY_VISIBILITY - If a class marked with this attribute is linked 121 /// LLVM_EXTERNAL_VISIBILITY - classes, functions, and variables marked with [all …]
|
| /third_party/vk-gl-cts/framework/delibs/debase/ |
| D | deDefs.h | 3 /*------------------------------------------------------------------------- 5 * ------------------------------------- 13 * http://www.apache.org/licenses/LICENSE-2.0 24 *//*--------------------------------------------------------------------*/ 27 #define DE_COMPILER_VANILLA 0 /*!< Vanilla compiler. Used for disabling all platform-specific opti… 30 #define DE_COMPILER_CLANG 3 /*!< LLVM Clang Compiler. */ 48 * GCC and Clang, and a generic for other conflicts. 51 # error Detected compiler is Clang, but got DE_COMPILER == DE_COMPILER_GCC 195 # error Define 64-bit and intptr types. 213 /* Use DE_PTR_TYPE(T) instead of T* in macros to avoid clang-tidy warning. */ [all …]
|
| /third_party/skia/infra/bots/ |
| D | jobs.json | 2 {"name": "Build-Debian9-Clang-arm-Release-Flutter_Android_Docker"}, 3 {"name": "Build-Debian10-GCC-x86-Debug-Docker"}, 4 {"name": "Build-Debian10-GCC-x86-Release-Docker"}, 5 {"name": "Build-Debian10-GCC-x86_64-Debug-Docker"}, 6 {"name": "Build-Debian10-GCC-x86_64-Debug-NoGPU_Docker", 9 {"name": "Build-Debian10-GCC-x86_64-Release-Docker", 12 {"name": "Build-Debian10-GCC-x86_64-Release-NoGPU_Docker"}, 13 {"name": "Build-Debian10-GCC-x86_64-Release-Shared_Docker"}, 14 {"name": "Build-Debian10-Clang-arm-Debug-Android", 17 {"name": "Build-Debian10-Clang-arm-Debug-Android_Vulkan"}, [all …]
|
| /third_party/skia/tests/ |
| D | SkTBlockListTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 13 C() : fID(-1) { ++gInstCnt; } in C() 21 ~C() { --gInstCnt; } in ~C() 44 return (size_t) list.fAllocator->scratchBlockSize(); in ScratchBlockSize() 49 return list.fAllocator->totalSize(); in TotalSize() 58 REPORTER_ASSERT(reporter, (0 == cnt) == allocator->empty()); in check_allocator_helper() 59 REPORTER_ASSERT(reporter, cnt == allocator->count()); in check_allocator_helper() 63 for (const C& c : allocator->items()) { in check_allocator_helper() 65 REPORTER_ASSERT(reporter, allocator->item(i).fID == i); in check_allocator_helper() 71 REPORTER_ASSERT(reporter, cnt-1 == allocator->back().fID); in check_allocator_helper() [all …]
|