| /third_party/python/Doc/library/ |
| D | glob.rst | 1 :mod:`glob` --- Unix style pathname pattern expansion 4 .. module:: glob 7 **Source code:** :source:`Lib/glob.py` 11 -------------- 14 single: * (asterisk); in glob-style wildcards 15 single: ? (question mark); in glob-style wildcards 16 single: [] (square brackets); in glob-style wildcards 17 single: ! (exclamation); in glob-style wildcards 18 single: - (minus); in glob-style wildcards 19 single: . (dot); in glob-style wildcards [all …]
|
| D | fnmatch.rst | 1 :mod:`fnmatch` --- Unix filename pattern matching 13 -------------- 15 This module provides support for Unix shell-style wildcards, which are *not* the 17 special characters used in shell-style wildcards are: 20 single: * (asterisk); in glob-style wildcards 21 single: ? (question mark); in glob-style wildcards 22 single: [] (square brackets); in glob-style wildcards 23 single: ! (exclamation); in glob-style wildcards 24 single: - (minus); in glob-style wildcards 26 +------------+------------------------------------+ [all …]
|
| /third_party/rust/rust/tests/ui/imports/ |
| D | glob-resolve1.stderr | 2 --> $DIR/glob-resolve1.rs:26:5 7 note: function `bar::fpriv` exists but is inaccessible 8 --> $DIR/glob-resolve1.rs:7:5 14 --> $DIR/glob-resolve1.rs:27:5 19 note: function `bar::epriv` exists but is inaccessible 20 --> $DIR/glob-resolve1.rs:9:9 26 --> $DIR/glob-resolve1.rs:28:5 31 note: the enum is defined here 32 --> $DIR/glob-resolve1.rs:14:5 44 --> $DIR/glob-resolve1.rs:29:5 [all …]
|
| D | glob-shadowing.stderr | 1 error[E0659]: `env` is ambiguous 2 --> $DIR/glob-shadowing.rs:11:17 7 …= note: ambiguous because of a conflict between a name from a glob import and an outer scope durin… 10 --> $DIR/glob-shadowing.rs:9:9 17 error[E0659]: `env` is ambiguous 18 --> $DIR/glob-shadowing.rs:19:21 23 …= note: ambiguous because of a conflict between a name from a glob import and an outer scope durin… 26 --> $DIR/glob-shadowing.rs:17:13 32 error[E0659]: `fenv` is ambiguous 33 --> $DIR/glob-shadowing.rs:29:21 [all …]
|
| /third_party/curl/src/ |
| D | tool_urlglob.c | 10 * This software is licensed as described in the file COPYING, which 15 * copies of the Software, and permit persons to whom the Software is 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 * SPDX-License-Identifier: curl 38 glob->error = string, glob->pos = column, code 40 static CURLcode glob_fixed(struct URLGlob *glob, char *fixed, size_t len) in glob_fixed() argument 42 struct URLPattern *pat = &glob->pattern[glob->size]; in glob_fixed() 43 pat->type = UPTSet; in glob_fixed() 44 pat->content.Set.size = 1; in glob_fixed() 45 pat->content.Set.ptr_s = 0; in glob_fixed() [all …]
|
| /third_party/rust/rust/tests/ui/resolve/ |
| D | issue-107563-ambiguous-glob-reexports.stderr | 1 error[E0659]: `A` is ambiguous 2 --> $DIR/issue-107563-ambiguous-glob-reexports.rs:25:24 7 = note: ambiguous because of multiple glob imports of a name in the same module 9 --> $DIR/issue-107563-ambiguous-glob-reexports.rs:19:13 15 --> $DIR/issue-107563-ambiguous-glob-reexports.rs:21:13 21 error: ambiguous glob re-exports 22 --> $DIR/issue-107563-ambiguous-glob-reexports.rs:12:9 25 | ^^^^^^ the name `X` in the type namespace is first re-exported here 28 | ------ but the name `X` in the type namespace is also re-exported here 30 note: the lint level is defined here [all …]
|
| /third_party/mindspore/mindspore-src/source/tests/ut/python/dataset/ |
| D | test_decode.py | 1 # Copyright 2019-2022 Huawei Technologies Co., Ltd 7 # http://www.apache.org/licenses/LICENSE-2.0 10 # distributed under the License is distributed on an "AS IS" BASIS, 18 import glob 30 DATA_DIR = ["../data/dataset/test_tf_file_3_images/train-0000-of-0001.data"] 89 unsupported_list = glob.glob('unsupported_image*') 99 assert len(glob.glob('unsupported_image.gif')) == 1 100 # delete the dump file which is not supported 101 os.remove(glob.glob('unsupported_image.gif')[0]) 109 abnormal_list = glob.glob('abnormal_image*') [all …]
|
| /third_party/vk-gl-cts/external/amber/src/tools/ |
| D | copyright.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 11 # distributed under the License is distributed on an "AS IS" BASIS, 18 usage: copyright.py [--check] 20 With --check, prints out all the files missing the copyright notice and exits 40 http://www.apache.org/licenses/LICENSE-2.0 43 distributed under the License is distributed on an "AS IS" BASIS, 55 for glob in skip_glob_list: 56 for match in fnmatch.filter(dirs, glob): 63 def filtered_descendants(glob): argument 64 """Returns glob-matching filenames under the current directory, but skips [all …]
|
| D | check_language.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 19 and flag non-inclusive terminology which is identified. 31 r"(?i)black[-_]?list", 32 r"(?i)white[-_]?list", 33 r"(?i)gr[ea]y[-_]?list", 35 r"(?i)black[-_]?hat", 36 r"(?i)white[-_]?hat", 37 r"(?i)gr[ea]y[-_]?hat", 77 r"(?i)red[-_]?line", [all …]
|
| /third_party/python/Lib/test/ |
| D | test_glob.py | 1 import glob 49 if self.dir_fd is not None: 53 def glob(self, *parts, **kwargs): member in GlobTests 59 res = glob.glob(p, **kwargs) 60 res2 = glob.iglob(p, **kwargs) 61 self.assertCountEqual(glob.iglob(p, **kwargs), res) 64 self.assertCountEqual(glob.glob(os.fsencode(p), **kwargs), bres) 65 self.assertCountEqual(glob.iglob(os.fsencode(p), **kwargs), bres) 68 res2 = glob.glob(pattern, **kwargs) 77 self.assertCountEqual(glob.iglob(pattern, **kwargs), res2) [all …]
|
| /third_party/ffmpeg/compat/solaris/ |
| D | make_sunver.pl | 8 # This file is free software; you can redistribute it and/or modify it 13 # This program is distributed in the hope that it will be useful, but 26 # Each glob pattern, C++ mangled pattern or literal in the input script is 29 # A comment with the original pattern and its type is left in the output 60 if (($so = $file) =~ s/\.a$/.so/ && -e $so) { 61 printf STDERR "omitted $file -> $so\n"; 70 # so use elfdump -s in the native case and GNU readelf -s otherwise. 71 # GNU objdump -t cannot be used since it produces a variable number of 77 if (-f $elfdump) { 78 open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!; [all …]
|
| /third_party/grpc/src/objective-c/examples/ |
| D | BUILD | 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 21 "//src/objective-c:grpc_objc_internal_library.bzl", 49 "//src/objective-c/examples:test_proto", 58 "//src/objective-c/examples:test_proto", 63 name = "Sample-lib", 64 srcs = glob(["Sample/Sample/**/*.m"]), 65 hdrs = glob(["Sample/Sample/**/*.h"]), 66 data = glob([ 82 deps = ["Sample-lib"], [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/utils/ |
| D | check_copyright.py | 2 # coding=utf-8 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 46 YEARS = '(2014-2016|2015-2016|2015-2020|2016|2016-2017|2017|2017-2019|2018|2019|2020|2021)' 50 MIT_BEGIN_RE = re.compile('Permission is hereby granted, ' 62 http://www.apache.org/licenses/LICENSE-2.0 65 distributed under the License is distributed on an "AS IS" BASIS, 79 for glob in skip_glob_dir_list: 80 for match in fnmatch.filter(dirs, glob): 89 def filtered_descendants(glob): argument [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
| D | check_copyright.py | 2 # coding=utf-8 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 46 YEARS = '(2014-2016|2015-2016|2015-2020|2016|2016-2017|2017|2017-2019|2018|2019|2020|2021)' 50 MIT_BEGIN_RE = re.compile('Permission is hereby granted, ' 62 http://www.apache.org/licenses/LICENSE-2.0 65 distributed under the License is distributed on an "AS IS" BASIS, 79 for glob in skip_glob_dir_list: 80 for match in fnmatch.filter(dirs, glob): 89 def filtered_descendants(glob): argument [all …]
|
| /third_party/grpc/src/objective-c/tests/ |
| D | BUILD | 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 22 "//src/objective-c:grpc_objc_internal_library.bzl", 57 resources = ["TestCertificates.bundle/test-certificates.pem"], 60 # TestConfigs is added to each grpc_objc_testing_library's deps 63 srcs = glob([ 66 hdrs = glob([ 74 "HOST_PORT_REMOTE=grpc-test.sandbox.googleapis.com", 79 name = "host-lib", 80 srcs = glob(["Hosts/ios-host/*.m"]), [all …]
|
| /third_party/skia/m133/toolchain/ |
| D | ndk.BUILD | 1 # This file is copied from the SkCMS repository. Original file: 4 # This file is based on the `external/androidndk/BUILD.bazel` file produced by the built-in 16 srcs = glob(["toolchains/llvm/**"]) + glob([ 17 "platforms/android-29/arch-arm64/**/*", 18 "sources/cxx-stl/llvm-libc++/include/**/*", 19 "sources/cxx-stl/llvm-libc++abi/include/**/*", 22 "toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/**/*", 32 srcs = glob(["sources/cxx-stl/llvm-libc++/libs/arm64-v8a/*.so"]), 38 srcs = glob(["sources/cxx-stl/llvm-libc++/libs/arm64-v8a/*.a"]), 44 srcs = glob(["toolchains/llvm/**"]) + glob([ [all …]
|
| /third_party/skia/infra/bots/assets/chromebook_arm_gles/ |
| D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 14 import glob 37 'sudo','apt-get','install', 38 'libgles2-mesa-dev', 39 'libegl1-mesa-dev' 47 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 49 to_copy.extend(glob.glob(os.path.join(gl_path,'libmali*'))) 66 parser.add_argument('--target_dir', '-t', required=True) 70 # this script is called via `sk` and not directly.
|
| /third_party/skia/m133/infra/bots/assets/chromebook_x86_64_gles/ |
| D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 14 import glob 37 'sudo','apt-get','install', 38 'libgles2-mesa-dev', 39 'libegl1-mesa-dev' 47 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 49 to_copy.extend(glob.glob(os.path.join(gl_path,'libdrm*'))) 66 parser.add_argument('--target_dir', '-t', required=True) 70 # this script is called via `sk` and not directly.
|
| /third_party/skia/infra/bots/assets/chromebook_x86_64_gles/ |
| D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 14 import glob 37 'sudo','apt-get','install', 38 'libgles2-mesa-dev', 39 'libegl1-mesa-dev' 47 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 49 to_copy.extend(glob.glob(os.path.join(gl_path,'libdrm*'))) 66 parser.add_argument('--target_dir', '-t', required=True) 70 # this script is called via `sk` and not directly.
|
| /third_party/skia/m133/infra/bots/assets/chromebook_arm_gles/ |
| D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 14 import glob 37 'sudo','apt-get','install', 38 'libgles2-mesa-dev', 39 'libegl1-mesa-dev' 47 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 48 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 49 to_copy.extend(glob.glob(os.path.join(gl_path,'libmali*'))) 66 parser.add_argument('--target_dir', '-t', required=True) 70 # this script is called via `sk` and not directly.
|
| /third_party/spirv-tools/utils/ |
| D | check_copyright.py | 2 # coding=utf-8 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 54 # A regular expression to make a range of years in the form <year1>-<year2>. 58 YEAR_RANGE_REGEX += str(year1) + '-' + str(year2) + '|' 59 YEAR_RANGE_REGEX = YEAR_RANGE_REGEX[:-1] + ')' 61 # In the copyright info, the year can be a single year or a range. This is a 69 MIT_BEGIN_RE = re.compile('Permission is hereby granted, ' 81 http://www.apache.org/licenses/LICENSE-2.0 84 distributed under the License is distributed on an "AS IS" BASIS, [all …]
|
| /third_party/grpc/examples/objective-c/ |
| D | BUILD | 7 # http://www.apache.org/licenses/LICENSE-2.0 10 # distributed under the License is distributed on an "AS IS" BASIS, 39 name = "HelloWorld-lib", 40 srcs = glob(["helloworld/**/*.m"]), 41 hdrs = glob(["helloworld/**/*.h"]), 42 data = glob([ 61 deps = [":HelloWorld-lib"], 65 name = "HelloWorldMacos-lib", 66 srcs = glob(["helloworld_macos/**/*.m"]), 67 hdrs = glob(["helloworld_macos/**/*.h"]), [all …]
|
| /third_party/grpc/src/benchmark/ |
| D | gen_build_yaml.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 19 import glob 33 "src": sorted(glob.glob("third_party/benchmark/src/*.cc")), 35 glob.glob("third_party/benchmark/src/*.h") 36 + glob.glob("third_party/benchmark/include/benchmark/*.h")
|
| /third_party/lz4/tests/ |
| D | test-lz4-versions.py | 5 # Copyright (C) 2011-present, Takayuki Matsuoka 11 import glob 28 parser.add_argument("--verbose", action="store_true", help="increase output verbosity") 61 # favor compilation speed for faster total test time, actual runtime is very short 62 env["CFLAGS"] = env_or_empty(env, 'CFLAGS') + " -O0" 71 stdout, stderr = git(['tag', '-l', 'r[0-9][0-9][0-9]']) 72 tags = stdout.decode('utf-8').split() 73 stdout, stderr = git(['tag', '-l', 'v[1-9].[0-9].[0-9]']) 74 tags += stdout.decode('utf-8').split() 113 git(['--work-tree=' + r_dir, 'checkout', tag, '--', '.'], False) [all …]
|
| /third_party/protobuf/python/dist/ |
| D | setup.py | 2 # Protocol Buffers - Google's data interchange format 5 # Use of this source code is governed by a BSD-style 7 # https://developers.google.com/open-source/licenses/bsd 11 import glob 30 exec(version_file.read(), file_globals) # pylint:disable=exec-used 38 extra_link_args = ['-static'] 46 url='https://developers.google.com/protocol-buffers/', 52 license='BSD-3-Clause', 68 glob.glob('google/protobuf/*.c') 69 + glob.glob('python/*.c') [all …]
|