/external/skia/site/docs/user/sample/ |
D | pdf.md | 2 --- 6 --- 12 <fiddle-embed name='@PDF'></fiddle-embed> 13 <!-- https://fiddle.skia.org/c/@PDF docs/examples/PDF.cpp --> 18 ------------------------------------------ 22 there is no simple PDF-ish way to handle it. 28 + **ignore** means to draw without the effect 30 + **expand** means to implement something in a non-PDF-ish way. 31 This may mean to rasterize vector graphics, to expand paths with 32 path effects into many individual paths, or to convert text to [all …]
|
/external/skqp/site/user/sample/ |
D | pdf.md | 7 <!--?prettify lang=cc?--> 27 SkCanvas* pageCanvas = pdfDocument->beginPage(pageSize.width(), 30 pdfDocument->endPage(); 32 pdfDocument->close(); 38 ------------------------------------------ 42 there is no simple PDF-ish way to handle it. 48 + **ignore** means to draw without the effect 50 + **expand** means to implement something in a non-PDF-ish way. 51 This may mean to rasterize vector graphics, to expand paths with 52 path effects into many individual paths, or to convert text to [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_embed.py | 95 print(f"--- {cmd} failed ---") 98 print(f"------") 110 # --- Pass 0 --- 116 # --- Pass 1 --- 119 interp_pat = (r"^interp (\d+) <(0x[\dA-F]+)>, " 120 r"thread state <(0x[\dA-F]+)>: " 127 if line == "--- Pass {} ---".format(numloops): 195 env = dict(os.environ, PYTHONIOENCODING="utf-8:surrogateescape") 201 expected_stream_encoding = "utf-8" 204 "--- Use defaults ---", [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | defaults.py | 17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 33 ignore = re.compile(r"^\s*(?:#.+)?$") 37 if ignore.match(line): continue 45 paths = self.config.get(pathset, None) 46 if paths is None: 48 paths = paths.split(":") 49 for p in paths: 52 return os.path.join(paths[0], testfilename)
|
/external/oss-fuzz/infra/ |
D | presubmit.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 42 # TODO: Check for -fsanitize=fuzzer in files as well. 46 """Returns False if |build_sh_file| contains -lFuzzingEngine. 48 so that -fsanitize=fuzzer is used.""" 56 if '-lFuzzingEngine' in uncommented_code: 58 'Error: build.sh contains deprecated "-lFuzzingEngine" on line: {0}. ' 64 def check_lib_fuzzing_engine(paths): argument 65 """Call _check_one_lib_fuzzing_engine on each path in |paths|. Return True if 67 return all([_check_one_lib_fuzzing_engine(path) for path in paths]) 112 # Note that some projects like boost only have auto-ccs. However, forgetting [all …]
|
/external/python/cpython3/Tools/scripts/ |
D | pysource.py | 9 - has_python_ext() checks whether a file name ends in '.py[w]'. 10 - look_like_python() checks whether the file is not binary and either has 12 - can_be_compiled() checks whether the file can be compiled by compile(). 14 The file also must be of appropriate size - not bigger than a megabyte. 25 binary_re = re.compile(br'[\x00-\x08\x0E-\x1F\x7F]') 36 except OSError as err: # Permission denied - ignore the file 46 except IOError as err: # Access denied, or a special file - ignore it 91 def walk_python_files(paths, is_python=looks_like_python, exclude_dirs=None): argument 93 Recursively yield all Python source files below the given paths. 95 paths: a list of files and/or directories to be checked. [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | pysource.py | 9 - has_python_ext() checks whether a file name ends in '.py[w]'. 10 - look_like_python() checks whether the file is not binary and either has 12 - can_be_compiled() checks whether the file can be compiled by compile(). 14 The file also must be of appropriate size - not bigger than a megabyte. 25 binary_re = re.compile('[\x00-\x08\x0E-\x1F\x7F]') 36 except OSError, err: # Permission denied - ignore the file 46 except IOError, err: # Access denied, or a special file - ignore it 91 def walk_python_files(paths, is_python=looks_like_python, exclude_dirs=None): argument 93 Recursively yield all Python source files below the given paths. 95 paths: a list of files and/or directories to be checked. [all …]
|
/external/skia/tools/ |
D | check-headers-self-sufficient | 5 # Use of this source code is governed by a BSD-style license that can be 16 self-sufficient and idempotent. 18 Otherwise, test all checked-in headers except for those in the ignore list. 21 ignore = re.compile('|'.join([ variable 65 # test header for self-sufficiency and idempotency. 68 cmd = ['c++', '--std=c++14', '-I.', '-o', '/dev/null', '-c', '-x', 'c++', '-'] 106 paths = [os.path.relpath(os.path.abspath(arg), skia_dir) for arg in argv[1:]] 110 paths = [path for path in subprocess.check_output(['git', 'ls-files']).splitlines() 111 if path.endswith('.h') and not ignore.match(path)] 112 compile_headers(paths)
|
/external/pigweed/pw_watch/py/pw_watch/ |
D | watch.py | 8 # https://www.apache.org/licenses/LICENSE-2.0 29 pw watch -C out/cmake pw_run_tests.modules 32 pw watch -C out -C out/cmake pw_apps 35 pw watch python.tests -C out/cmake pw_apps 50 from watchdog.events import FileSystemEventHandler # type: ignore[import] 51 from watchdog.observers import Observer # type: ignore[import] 79 # Pick a visually-distinct font from "PASS" to ensure that readers can't 97 def _die(*args) -> NoReturn: 116 def args(self) -> Tuple[str, ...]: 119 def __str__(self) -> str: [all …]
|
/external/skqp/tools/ |
D | check-headers-self-sufficient | 5 # Use of this source code is governed by a BSD-style license that can be 16 self-sufficient and idempotent. 18 Otherwise, test all checked-in headers except for those in the ignore list. 22 '-Iinclude/core', 23 '-Iinclude/config', 24 '-Iinclude/android', 25 '-Iinclude/codec', 26 '-Iinclude/effects', 27 '-Iinclude/gpu', 28 '-Iinclude/gpu/gl', [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | hicpp-multiway-paths-covered-else.cpp | 1 // RUN: %check_clang_tidy %s hicpp-multiway-paths-covered %t \ 2 // RUN: -config='{CheckOptions: \ 3 // RUN: [{key: hicpp-multiway-paths-covered.WarnOnMissingElse, value: 1}]}'\ 4 // RUN: -- 14 …// CHECK-MESSAGES: [[@LINE-1]]:10: warning: potentially uncovered codepath; add an ending else sta… in problematic_if() 18 // Could be considered as false positive because all paths are covered logically. in problematic_if() 20 // codepath is expected from if-else if. in problematic_if() 24 …// CHECK-MESSAGES: [[@LINE-1]]:10: warning: potentially uncovered codepath; add an ending else sta… in problematic_if() 28 // Test if nesting of if-else chains does get caught as well. in problematic_if() 33 // if logically all paths are covered, which is more the area of the static analyzer. in problematic_if() [all …]
|
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | FieldMaskUtil.java | 1 // Protocol Buffers - Google's data interchange format 3 // https://developers.google.com/protocol-buffers/ 68 // Ignore empty paths. in toString() 90 * Parses from a string to a FieldMask and validates all field paths. 100 * Constructs a FieldMask for a list of field paths in a certain type. 105 public static FieldMask fromStringList(Class<? extends Message> type, Iterable<String> paths) { in fromStringList() argument 107 for (String path : paths) { in fromStringList() 109 // Ignore empty field paths. in fromStringList() 151 * case and joining all paths into one string with commas. 154 List<String> paths = new ArrayList<String>(fieldMask.getPathsCount()); in toJsonString() local [all …]
|
/external/rust/cxx/gen/build/src/ |
D | out.rs | 3 use crate::paths; 6 pub(crate) fn write(path: impl AsRef<Path>, content: &[u8]) -> Result<()> { in write() 24 // As long as write succeeded, ignore any create_dir_all error. in write() 31 pub(crate) fn symlink_file(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()> { in symlink_file() 43 match paths::symlink_or_copy(original, link) { in symlink_file() 44 // As long as symlink_or_copy succeeded, ignore any create_dir_all error. in symlink_file() 51 pub(crate) fn symlink_dir(original: impl AsRef<Path>, link: impl AsRef<Path>) -> Result<()> { in symlink_dir() 64 // As long as symlink_dir succeeded, ignore any create_dir_all error. in symlink_dir() 81 // On non-Windows, we check metadata not following symlinks. All in best_effort_remove()
|
/external/libxkbcommon/tools/ |
D | xkbcli-compile-keymap.1 | 6 .Nm "xkbcli compile\-keymap" 17 .Bl -tag -width Ds 18 .It Fl \-help 21 .It Fl \-verbose 24 .It Fl \-rmlvo 27 .It Fl \-from\-xkb 28 Load the XKB file from stdin, ignore RMLVO options. 30 .Fl \-kccgst . 32 .It Fl \-include Ar PATH 34 This option is order\-dependent, include paths given first are searched first. [all …]
|
/external/mesa3d/docs/relnotes/ |
D | 17.3.4.rst | 15 ---------------- 19 2d3a4c3cbc995b3e192361dce710d8c749e046e7575aa1b7d8fc9e6b4df28f84 mesa-17.3.4.tar.gz 20 71f995e233bc5df1a0dd46c980d1720106e7f82f02d61c1ca50854b5e02590d0 mesa-17.3.4.tar.xz 23 ------------ 28 --------- 30 - `Bug 90311 <https://bugs.freedesktop.org/show_bug.cgi?id=90311>`__ - 32 - `Bug 101442 <https://bugs.freedesktop.org/show_bug.cgi?id=101442>`__ 33 - Piglit shaders@ssa@fs-if-def-else-break fails with sb but passes 35 - `Bug 102435 <https://bugs.freedesktop.org/show_bug.cgi?id=102435>`__ 36 - [skl,kbl] [drm] GPU HANG: ecode 9:0:0x86df7cf9, in csgo_linux64 [all …]
|
/external/webrtc/tools_webrtc/android/ |
D | suppressions.xml | 1 <?xml version="1.0" encoding="utf-8"?> 3 <!-- These lint settings is for the Android linter that gets run by 5 should lint cleanly for the issues below. --> 6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring 7 to suppress.py. --> 9 <issue id="UseSparseArrays" severity="ignore"/> 11 <issue id="Registered" severity="ignore"/> 12 <issue id="MissingPermission" severity="ignore"/> 13 <issue id="ApplySharedPref" severity="ignore"/> 14 <issue id="UnusedResources" severity="ignore"/> [all …]
|
/external/python/cpython3/.github/workflows/ |
D | coverage.yml | 6 - master 7 - 3.9 8 - 3.8 9 - 3.7 10 paths-ignore: 11 - 'Doc/**' 12 - 'Misc/**' 15 # - master 16 # - 3.9 17 # - 3.8 [all …]
|
/external/webrtc/tools_webrtc/ios/ |
D | merge_ios_libs.py | 5 # Use of this source code is governed by a BSD-style license 54 for library, paths in libs.items(): 55 if len(paths) < len(archs): 56 orphaned_libs[library] = paths 58 valid_libs[library] = paths 59 for library, paths in orphaned_libs.items(): 60 components = library[:-2].split('_')[:-1] 66 valid_libs[parent_library].extend(paths) 69 components = components[:-1] 72 base_prefix = library[:-2].split('_')[0] [all …]
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | URI.cpp | 1 //===---- URI.h - File URIs with schemes -------------------------*- C++-*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 34 /// This manages file paths in the file system. All paths in the scheme 49 // Windows UNC paths e.g. file://server/share => \\server\share in getAbsolutePath() 52 // Windows paths e.g. file:///X:/path => X:\path in getAbsolutePath() 66 // Windows UNC paths e.g. \\server\share => file://server/share in uriFromAbsolutePath() 70 // Windows paths e.g. X:\path => file:///X:/path in uriFromAbsolutePath() 97 case '-': in shouldEscape() 102 // ':' is only reserved for relative URI paths, which clangd doesn't produce. in shouldEscape() [all …]
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | python_checks.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 42 return call('python', '-m', *args, **kwargs) 50 patterns: Iterable[str] = TEST_PATTERNS) -> None: 53 Finds the Python packages containing the affected paths, then searches 59 packages += python_packages_containing(ctx.paths, repo=repo)[0] 72 def pylint(ctx: pw_presubmit.PresubmitContext) -> None: 80 'bad-continuation', 84 '--jobs=0', 85 f'--disable={",".join(disable_checkers)}', 86 *ctx.paths, [all …]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowIoUtils.java | 9 import java.nio.file.Paths; 19 return new String(Files.readAllBytes(Paths.get(absolutePath)), UTF_8); in readFileAsString() 22 // BEGIN-INTERNAL 25 // ignore, fails in JVM environment in setFdOwner() 27 // END-INTERNAL
|
/external/tensorflow/tensorflow/lite/micro/kernels/vexriscv/utils/ |
D | log_parser.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 21 python log_parser.py profile.txt --regex=gdb_regex.json --visualize --top=7 23 * To add a title in the graph, use the optional argument --title to set it 27 python log_parser.py profile.txt --regex=gdb_regex.json \ 28 --visualize --top=7 --title=magic_wand 95 ignore_list: list of string (functions) to ignore 131 # `0x40002998 in __addsf3` -> `__addsf3` 133 target = target.split()[-1] 165 for top, paths in trace.items(): 167 counter = collections.Counter(paths) [all …]
|
/external/llvm-project/clang/test/Driver/ |
D | cuda-detect.cu | 1 // REQUIRES: clang-driver 2 // REQUIRES: x86-registered-target 3 // REQUIRES: nvptx-registered-target 6 // RUN: %clang -v --target=i386-unknown-linux \ 7 // RUN: --sysroot=%S/no-cuda-there --cuda-path-ignore-env 2>&1 | FileCheck %s -check-prefix NOCUDA 8 // RUN: %clang -v --target=i386-apple-macosx \ 9 // RUN: --sysroot=%S/no-cuda-there --cuda-path-ignore-env 2>&1 | FileCheck %s -check-prefix NOCUDA 10 // RUN: %clang -v --target=x86_64-unknown-linux \ 11 // RUN: --sysroot=%S/no-cuda-there --cuda-path-ignore-env 2>&1 | FileCheck %s -check-prefix NOCUDA 12 // RUN: %clang -v --target=x86_64-apple-macosx \ [all …]
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-cov.rst | 1 llvm-cov - emit coverage information 4 .. program:: llvm-cov 7 -------- 9 :program:`llvm-cov` *command* [*args...*] 12 ----------- 14 The :program:`llvm-cov` tool shows code coverage information for 16 work with ``gcov``\-style coverage or with ``clang``\'s instrumentation 20 the :program:`llvm-cov gcov` command were called. Otherwise, a command should 24 -------- 26 * :ref:`gcov <llvm-cov-gcov>` [all …]
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | Jimfs.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 51 * // A file system with paths and behavior generally matching that of Windows 89 * Creates a new in-memory file system with a {@linkplain Configuration#forCurrentPlatform() 101 * Creates a new in-memory file system with a {@linkplain Configuration#forCurrentPlatform() 109 * paths in the file system. For example, given the name {@code my-file-system}, the file system's 110 * URI will be {@code jimfs://my-file-system} and the URI of the path {@code /foo/bar} will be 111 * {@code jimfs://my-file-system/foo/bar}. 117 /** Creates a new in-memory file system with the given configuration. */ 123 * Creates a new in-memory file system with the given configuration. 126 * paths in the file system. For example, given the name {@code my-file-system}, the file system's [all …]
|