| /third_party/openssl/.github/workflows/ |
| D | run-checker-merge.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 name: Run-checker merge 9 # Jobs run per merge to master 16 run-checker: 18 fail-fast: false 21 enable-asan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT, 22 no-dgram, 23 no-dso, 24 no-dynamic-engine, 25 no-engine no-shared, [all …]
|
| D | run-checker-ci.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 # Jobs run per pull request submission 9 name: Run-checker CI 15 run-checker: 17 fail-fast: false 20 no-cmp, 21 no-cms, 22 no-ct, 23 no-dtls, 24 no-ec, [all …]
|
| D | fuzz-checker.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 name: Fuzz-checker CI 16 fuzz-checker: 18 fail-fast: false 23 config: enable-fuzz-afl no-module, 24 install: afl++-clang, 25 cc: afl-clang-fast 28 config: enable-fuzz-libfuzzer enable-asan enable-ubsan, 29 …libs: --with-fuzzer-lib=/usr/lib/llvm-12/lib/libFuzzer.a --with-fuzzer-include=/usr/lib/llvm-12/bu… 30 install: libfuzzer-12-dev, [all …]
|
| D | run-checker-daily.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 name: Run-checker daily 9 # Jobs run daily 13 - cron: '0 6 * * *' 18 run-checker: 20 fail-fast: false 24 no-afalgeng, 25 no-aria, 26 no-asan, 27 no-asm, [all …]
|
| /third_party/flutter/skia/third_party/externals/sdl/build-scripts/ |
| D | checker-buildbot.sh | 7 # Install Clang (you already have it on Mac OS X, apt-get install clang 9 # or download checker at http://clang-analyzer.llvm.org/ and unpack it in 14 CHECKERDIR="/usr/local/checker-276" 15 if [ ! -d "$CHECKERDIR" ]; then 17 CHECKERDIR="/usr/share/clang/scan-build" 20 if [ ! -d "$CHECKERDIR" ]; then 25 if [ -z "$MAKE" ]; then 26 OSTYPE=`uname -s` 28 NCPU=`cat /proc/cpuinfo |grep vendor_id |wc -l` 31 NCPU=`sysctl -n hw.ncpu` [all …]
|
| /third_party/python/Lib/test/libregrtest/ |
| D | refleak.py | 16 # Reimplement _get_dump() for pure-Python implementation of 24 """Run a test multiple times, looking for reference leaks. 48 zdc = None # Run unmodified on platforms without zipimport support 58 # bpo-31217: Integer pool to get a single integer object for the same 60 # block leaks. Fill the pool with values in -1000..1000 which are the most 62 int_pool = {value: value for value in range(-1000, 1000)} 70 # Pre-allocate to ensure that the loop doesn't allocate anything new 102 rc_deltas[i] = get_pooled_int(rc_after - rc_before) 103 alloc_deltas[i] = get_pooled_int(alloc_after - alloc_before) 104 fd_deltas[i] = get_pooled_int(fd_after - fd_before) [all …]
|
| /third_party/mbedtls/scripts/ |
| D | abi_check.py | 5 This script is a small wrapper around the abi-compliance-checker and 6 abi-dumper tools, applying them to compare the ABI and API of the library 10 Returns 0 on success, 1 on ABI/API non-compliance, and 2 if there is an error 11 while running the script. Note: must be run from Mbed TLS root. 15 # SPDX-License-Identifier: Apache-2.0 21 # http://www.apache.org/licenses/LICENSE-2.0 44 """API and ABI checker.""" 47 """Instantiate the API/ABI checker. 74 raise Exception("Must be run from Mbed TLS root") 86 for command in ["abi-dumper", "abi-compliance-checker"]: [all …]
|
| /third_party/python/Doc/tools/ |
| D | rstlint.py | 2 # -*- coding: utf-8 -*- 9 # TODO: - wrong versions in versionadded/changed 10 # - wrong markup after versionchanged directive 23 'contents', 'csv-table', 'danger', 'date', 'default-role', 'epigraph', 25 'important', 'include', 'line-block', 'list-table', 'meta', 'note', 26 'parsed-literal', 'pull-quote', 'raw', 'replace', 27 'restructuredtext-test-directive', 'role', 'rubric', 'sectnum', 'sidebar', 28 'table', 'target-notes', 'tip', 'title', 'topic', 'unicode', 'warning', 33 'cmdoption', 'cmember', 'code-block', 'confval', 'cssclass', 'ctype', 35 'deprecated-removed', 'deprecated(?!-removed)', 'describe', 'directive', [all …]
|
| /third_party/libxml2/xstc/ |
| D | Makefile.am | 4 PYSCRIPTS=nist-test.py ms-test.py sun-test.py 7 TARBALL=xsts-2002-01-16.tar.gz 8 TARBALL_2=xsts-2004-01-14.tar.gz 9 TSNAME=xmlschema2002-01-16 10 TSNAME_2=xmlschema2004-01-14 11 TARBALLURL=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME)/$(TARBALL) 12 TARBALLURL_2=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME_2)/$(TARBALL_2) 13 MSTESTDEF=MSXMLSchema1-0-20020116.testSet 14 SUNTESTDEF=SunXMLSchema1-0-20020116.testSet 15 NISTTESTDEF=NISTXMLSchema1-0-20020116.testSet [all …]
|
| /third_party/skia/buildtools/checkdeps/ |
| D | checkdeps.py | 3 # Use of this source code is governed by a BSD-style license that can be 35 return re.match(r'(test|mock|dummy)_.*|.*_[a-z]*test\.(cc|mm|java)', filename) 54 base_directory: OS-compatible path to root of checkout, e.g. C:\chr\src. 91 (extension, checker) 92 for checker in [java, cpp, proto] for extension in checker.EXTENSIONS) 101 checker = checkers[file_extension] 102 file_status = checker.CheckFile(rules, full_name) 106 def CheckIncludesAndImports(self, added_lines, checker): argument 112 checker: CppChecker/JavaChecker/ProtoChecker checker instance 117 rule_description is human-readable. Empty if no problems. [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/rasterization/line_continuity/ |
| D | line-strip.amber | 9 # https://www.apache.org/licenses/LICENSE-2.0 65 int slot = atomicAdd(stackPtr, -1) - 1; 76 stack[0] = ivec2(-1); 80 // Use this to break the lines and verify the checker is correct. 97 if (gl_LocalInvocationIndex == 0 && stack[0] != ivec2(-1)) 114 ivec2 p = pixel + ivec2(gl_LocalInvocationID) - ivec2(1); 136 -120 -120 137 -119 120 140 -80 20 141 -80 95 [all …]
|
| D | polygon-mode-lines.amber | 9 # https://www.apache.org/licenses/LICENSE-2.0 67 int slot = atomicAdd(stackPtr, -1) - 1; 78 stack[0] = ivec2(-1); 82 // Use this to break the lines and verify the checker is correct. 99 if (gl_LocalInvocationIndex == 0 && stack[0] != ivec2(-1)) 116 ivec2 p = pixel + ivec2(gl_LocalInvocationID) - ivec2(1); 138 -120 -120 140 120 -120 144 60 -60 146 -100 100 [all …]
|
| /third_party/googletest/googletest/samples/ |
| D | sample10_unittest.cc | 31 // a primitive leak checker. 58 allocated_--; in operator delete() 83 int difference = Water::allocated() - initially_allocated_; in OnTestEnd() 99 // This should fail when the --check_for_leaks command line flag is 111 if (argc > 1 && strcmp(argv[1], "--check_for_leaks") == 0 ) in main() 114 printf("%s\n", "Run this program with --check_for_leaks to enable " in main() 117 // If we are given the --check_for_leaks command line flag, installs the in main() 118 // leak checker. in main() 120 TestEventListeners& listeners = UnitTest::GetInstance()->listeners(); in main() 122 // Adds the leak checker to the end of the test event listener list, in main() [all …]
|
| /third_party/libxml2/ |
| D | README.zOS | 3 - since testapi.c file is huge (over 52000 lines), it's compilation 8 - since the name of files (or qualifier) in PDS are limited to 8 I had to 13 - in order to copy objects to PDS, I had the cp command at line 860 17 … $(AM_V_CCLD)$(libxml2_la_LINK) -rpath $(libdir) $(libxml2_la_OBJECTS) $(libxml2_la_LIBADD) $(LIBS) 20 cp -ACMv $$p "//'<PDS NAME>'"; \ 48 --- Makefile.in 2017-08-01 08:17:15.000000000 +0200 49 +++ Makefile-new.in 2017-08-01 08:07:26.000000000 +0200 50 @@ -41,7 +41,7 @@ 54 - testapi$(EXEEXT) testModule$(EXEEXT) runtest$(EXEEXT) \ 59 @@ -106,6 +106,7 @@ [all …]
|
| /third_party/jerryscript/tools/pylint/ |
| D | pylintrc | 8 #init-hook= 19 load-plugins= 25 # active Python interpreter and may run arbitrary code. 26 unsafe-load-any-extension=no 28 # A comma-separated list of package or module names from where C extensions may 30 # run arbitrary code 31 extension-pkg-whitelist= 39 optimize-ast=no 48 # Enable the message, report, category or checker with the given id(s). You can 50 # multiple time. See also the "--disable" option for examples. [all …]
|
| /third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
| D | StatisticsTool.java | 5 * Copyright (C) 2005-2012, International Business Machines * 29 * Window - Preferences - Java - Code Style - Code Templates 39 "-e specify the target encoding\n" + 40 "-h or -? print this usage text.\n" + 41 "-v also generate statistics for visual order.\n" + 42 "-l only generate statistics for logical order (cancel -v)." + 43 "-c run the checker.\n" + 44 "-t run the encoding test.\n" + 45 "example: com.ibm.icu.dev.tool.charset.StatisticsTool -e 8859-1 Spanish.txt"; 195 String outputFileName = filename.substring(0, extension) + "-" + inputFile.getEncoding() + in writeStatistics() [all …]
|
| /third_party/libsnd/Scripts/ |
| D | cstyle.py | 1 #!/usr/bin/python -tt 3 # Copyright (C) 2005-2017 Erik de Castro Lopo <erikd@mega-nerd.com> 9 libsndfile and other projects I run. 20 maintains state between consecutive lines so it can preprocessess multi-line 23 - Strip C++ style comments from a line. 24 - Strip C comments from a series of lines. When a C comment starts and 26 - Replace arbitrary C strings with the zero length string. 27 - Replace '#define f(x)' with '#define f (c)' (The C #define requires that 36 self.define_hack_re = re.compile ("(#\s*define\s+[a-zA-Z0-9_]+)\(") 48 Strip the provided line of C and C++ comments. Stripping of multi-line [all …]
|
| /third_party/gn/src/gn/ |
| D | command_check.cc | 2 // Use of this source code is governed by a BSD-style license that can be 22 GN's header checker helps validate that the includes match the build 44 But GN's header checker does not understand preprocessor directives, won't 51 advice on fixing problems. Targets can also opt-out of checking, see 58 R"(gn check <out_dir> [<label_pattern>] [--force] [--check-generated] 60 GN's include header checker validates that the includes for C-like source 63 "gn check" is the same thing as "gn gen" with the "--check" flag except that 71 Command-specific switches 73 --check-generated 78 --check-system [all …]
|
| /third_party/flutter/skia/third_party/externals/wuffs/lang/check/ |
| D | check.go | 7 // https://www.apache.org/licenses/LICENSE-2.0 15 //go:generate go run gen.go 62 func Check(tm *t.Map, files []*a.File, resolveUse func(usePath string) ([]byte, error)) (*Checker, … 85 c := &Checker{ 143 check func(*Checker, *a.Node) error 145 {a.KUse, (*Checker).checkUse}, 146 {a.KStatus, (*Checker).checkStatus}, 147 {a.KConst, (*Checker).checkConst}, 148 {a.KStruct, (*Checker).checkStructDecl}, 149 {a.KInvalid, (*Checker).checkStructCycles}, [all …]
|
| /third_party/typescript/src/services/codefixes/ |
| D | fixAddMissingMember.ts | 35 const checker = program.getTypeChecker(); constant 41 const info = getInfo(diag.file, diag.start, checker, context.program); 53 addEnumMemberDeclaration(changes, checker, info); 67 const supers = getAllSupers(classDeclaration, checker); 123 …function getInfo(sourceFile: SourceFile, tokenPos: number, checker: TypeChecker, program: Program)… 141 const leftExpressionType = skipConstraint(checker.getTypeAtLocation(parent.expression)); 173 …((leftExpressionType as TypeReference).target || leftExpressionType) !== checker.getDeclaredTypeOf… 273 function getTypeNode(checker: TypeChecker, classDeclaration: ClassOrInterface, token: Node) { 278 …const widenedType = checker.getWidenedType(checker.getBaseTypeOfLiteralType(checker.getTypeAtLocat… 279 typeNode = checker.typeToTypeNode(widenedType, classDeclaration, /*flags*/ undefined); [all …]
|
| /third_party/icu/ |
| D | .travis.yml | 7 - name: "c: docs" 14 - doxygen 16 - cd icu4c/source 17 - ./runConfigureICU Linux --disable-renaming 20 # The Doxygen version from Travis is down-rev, and doesn't recognize some options 23 …- set +o pipefail && make doc 2>&1 | tee doxygen.log && ( ! grep -P 'warning:(?! .* file Doxyfile)… 26 - name: "j" 31 - ant 32 - ant-optional 35 - cd icu4j [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | parserRealSource7.js | 9 public exceptionBlock = -1; 43 context.checker.locationInfo.unitIndex, true, field); 116 …symbol = context.tcContext.checker.findSymbolForDynamicModule(name, context.tcContext.script.locat… 160 var isGlobal = context.scopeChain.container == context.checker.gloMod; 171 context.checker.locationInfo.unitIndex, modType); 181 context.checker.errorReporter, isExported || isGlobal, true, false); 183 … context.checker.errorReporter, isExported || isGlobal, false, false); 194 var isGlobal = context.scopeChain.container == context.checker.gloMod; 218 context.checker.locationInfo.unitIndex, modType); 226 … context.checker.errorReporter, isExported || isGlobal, true, isAmbient); [all …]
|
| /third_party/jsoncpp/src/jsontestrunner/ |
| D | CMakeLists.txt | 20 add_definitions(-DJSON_DLL) 30 # Run end to end parser/writer tests 34 # Run unit tests in post-build 37 …"${PYTHON_EXECUTABLE}" -B "${RUNJSONTESTS_PATH}" $<TARGET_FILE:jsontestrunner_exe> "${TEST_DIR}/da… 44 …COMMAND "${PYTHON_EXECUTABLE}" -B "${RUNJSONTESTS_PATH}" $<TARGET_FILE:jsontestrunner_exe> "${TEST… 48 …COMMAND "${PYTHON_EXECUTABLE}" -B "${RUNJSONTESTS_PATH}" --with-json-checker $<TARGET_FILE:jsonte…
|
| /third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
| D | parserRealSource7.ts | 8 public exceptionBlock = -1; 42 context.checker.locationInfo.unitIndex, true, field); 115 …symbol = context.tcContext.checker.findSymbolForDynamicModule(name, context.tcContext.script.locat… 159 var isGlobal = context.scopeChain.container == context.checker.gloMod; 170 context.checker.locationInfo.unitIndex, modType); 180 context.checker.errorReporter, isExported || isGlobal, true, false); 182 … context.checker.errorReporter, isExported || isGlobal, false, false); 193 var isGlobal = context.scopeChain.container == context.checker.gloMod; 217 context.checker.locationInfo.unitIndex, modType); 225 … context.checker.errorReporter, isExported || isGlobal, true, isAmbient); [all …]
|
| /third_party/icu/tools/commit-checker/ |
| D | README.md | 1 <!--- 4 --> 6 # Commit Checker Tool 29 https://confluence.atlassian.com/cloud/api-tokens-938839638.html 35 $ git fetch --tags upstream 37 Run the tool and save the result into REPORT.md; set fixVersion to the upcoming ICU version, and ta… 39 $ pipenv run python3 check.py \ 40 --jira-query "project=ICU AND fixVersion=64.1" \ 41 --rev-range "release-63-1..upstream/maint/maint-64" 46 --rev-range "release-64-2..upstream/master" [all …]
|