/third_party/boost/tools/quickbook/test/unit/ |
D | glob_test.cpp | 14 BOOST_TEST(quickbook::glob("", "")); in glob_tests() 16 BOOST_TEST(!quickbook::glob("*", "")); in glob_tests() 17 BOOST_TEST(quickbook::glob("*", "a")); in glob_tests() 18 BOOST_TEST(quickbook::glob("*b", "b")); in glob_tests() 19 BOOST_TEST(quickbook::glob("*b", "ab")); in glob_tests() 20 BOOST_TEST(quickbook::glob("*b", "bab")); in glob_tests() 21 BOOST_TEST(quickbook::glob("*b*", "b")); in glob_tests() 22 BOOST_TEST(quickbook::glob("*b*", "ab")); in glob_tests() 23 BOOST_TEST(quickbook::glob("*b*", "bc")); in glob_tests() 24 BOOST_TEST(quickbook::glob("*b*", "abc")); in glob_tests() [all …]
|
/third_party/python/Lib/test/ |
D | test_glob.py | 1 import glob 45 def glob(self, *parts, **kwargs): member in GlobTests 51 res = glob.glob(p, **kwargs) 52 self.assertCountEqual(glob.iglob(p, **kwargs), res) 54 self.assertCountEqual(glob.glob(os.fsencode(p), **kwargs), bres) 55 self.assertCountEqual(glob.iglob(os.fsencode(p), **kwargs), bres) 66 eq(self.glob('a'), [self.norm('a')]) 67 eq(self.glob('a', 'D'), [self.norm('a', 'D')]) 68 eq(self.glob('aab'), [self.norm('aab')]) 69 eq(self.glob('zymurgy'), []) [all …]
|
/third_party/boost/libs/algorithm/string/doc/ |
D | Jamfile.v2 | 21 [ glob ../../../../boost/algorithm/string.hpp ] 22 [ glob ../../../../boost/algorithm/string_regex.hpp ] 24 [ glob ../../../../boost/algorithm/string/classification.hpp ] 25 [ glob ../../../../boost/algorithm/string/iterator_range.hpp ] 26 [ glob ../../../../boost/algorithm/string/sequence_traits.hpp ] 27 [ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ] 28 [ glob ../../../../boost/algorithm/string/concept.hpp ] 29 [ glob ../../../../boost/algorithm/string/compare.hpp ] 30 [ glob ../../../../boost/algorithm/string/constants.hpp ] 31 [ glob ../../../../boost/algorithm/string/case_conv.hpp ] [all …]
|
/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` 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 21 The :mod:`glob` module finds all the pathnames matching a specified pattern [all …]
|
/third_party/curl/src/ |
D | tool_urlglob.c | 36 glob->error = string, glob->pos = column, code 38 static CURLcode glob_fixed(struct URLGlob *glob, char *fixed, size_t len) in glob_fixed() argument 40 struct URLPattern *pat = &glob->pattern[glob->size]; in glob_fixed() 78 static CURLcode glob_set(struct URLGlob *glob, char **patternp, in glob_set() argument 87 char *buf = glob->glob_buffer; in glob_set() 92 pat = &glob->pattern[glob->size]; in glob_set() 137 strdup(glob->glob_buffer); in glob_set() 148 buf = glob->glob_buffer; in glob_set() 172 static CURLcode glob_range(struct URLGlob *glob, char **patternp, in glob_range() argument 187 pat = &glob->pattern[glob->size]; in glob_range() [all …]
|
/third_party/boost/libs/mpl/preprocessed/ |
D | fix_boost_mpl_preprocess.py | 16 import glob 42 files = glob.glob( os.path.join( headerDir, "*.hpp" ) ) 43 files += glob.glob( os.path.join( headerDir, "aux_", "*.hpp" ) ) 44 files += glob.glob( os.path.join( sourceDir, "src", "*" ) ) 55 files = glob.glob( os.path.join( sourceDir, container, container + '*' + suffix ) ) 107 files = glob.glob( os.path.join( headerDir, "*.hpp" ) ) 108 files += glob.glob( os.path.join( headerDir, "aux_", "*.hpp" ) ) 109 files += glob.glob( os.path.join( sourceDir, "src", "*" ) ) 118 files = glob.glob( os.path.join( sourceDir, container, container + '*' + suffix ) )
|
/third_party/grpc/src/re2/ |
D | gen_build_yaml.py | 19 import glob 38 glob.glob('third_party/re2/re2/*.cc') + [ 44 glob.glob('third_party/re2/re2/*.h') + 45 glob.glob('third_party/re2/util/*.h')),
|
/third_party/grpc/src/benchmark/ |
D | gen_build_yaml.py | 19 import glob 38 sorted(glob.glob('third_party/benchmark/src/*.cc')), 41 glob.glob('third_party/benchmark/src/*.h') + 42 glob.glob('third_party/benchmark/include/benchmark/*.h')),
|
/third_party/grpc/tools/mkowners/ |
D | mkowners.py | 80 globs_list = [glob for glob in globs.split(' ') if glob] 135 def git_glob(glob): argument 137 if glob in gg_cache: return gg_cache[glob] 140 'git', 'ls-files', os.path.join(git_root, glob) 142 gg_cache[glob] = r 150 for glob in directive.globs or ['**']: 151 if glob not in globs: 152 globs[glob] = [] 153 if directive.who not in globs[glob]: 154 globs[glob].append(directive.who) [all …]
|
/third_party/libffi/ |
D | make_sunver.pl | 158 my $glob = 'glob'; 189 $glob = 'glob'; 201 $glob = 'glob'; 241 $glob = 'ign'; 249 $glob = 'cxx'; 267 if ($glob eq 'ign') { 274 print "$ws##$ptn ($glob)\n"; 278 if ($glob eq 'glob') { 292 } elsif ($glob eq 'cxx') {
|
/third_party/ffmpeg/compat/solaris/ |
D | make_sunver.pl | 175 my $glob = 'glob'; 208 $glob = 'glob'; 220 $glob = 'glob'; 260 $glob = 'ign'; 268 $glob = 'cxx'; 286 if ($glob eq 'ign') { 293 print "$ws##$ptn ($glob)\n"; 297 if ($glob eq 'glob') { 311 } elsif ($glob eq 'cxx') {
|
/third_party/grpc/templates/tools/doxygen/ |
D | Doxyfile.php.include | 6 import glob 22 glob.glob('src/php/lib/Grpc/*.php'), 23 glob.glob('src/php/lib/Grpc/Internal/*.php') if internal else [], 24 glob.glob('doc/*.md'),
|
/third_party/skia/resources/sksl/shared/ |
D | ScopedSymbol.sksl | 2 int glob; 14 int glob = 1; 16 return glob == 2; 34 int glob = 1; 35 return glob == 1; 39 glob = 2;
|
/third_party/skia/third_party/externals/freetype/builds/meson/ |
D | generate_reference_docs.py | 17 import glob 48 glob.glob(os.path.join(args.input_dir, "include", "freetype", "*.h")) 49 + glob.glob( 54 + glob.glob(
|
/third_party/freetype/builds/meson/ |
D | generate_reference_docs.py | 7 import glob 38 glob.glob(os.path.join(args.input_dir, "include", "freetype", "*.h")) 39 + glob.glob( 44 + glob.glob(
|
/third_party/flutter/skia/infra/bots/assets/chromebook_arm_gles/ |
D | create.py | 13 import glob 38 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 39 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 40 to_copy.extend(glob.glob(os.path.join(gl_path,'libmali*')))
|
/third_party/flutter/skia/infra/bots/assets/chromebook_x86_64_gles/ |
D | create.py | 13 import glob 38 to_copy = glob.glob(os.path.join(gl_path,'libGL*')) 39 to_copy.extend(glob.glob(os.path.join(gl_path,'libEGL*'))) 40 to_copy.extend(glob.glob(os.path.join(gl_path,'libdrm*')))
|
/third_party/skia/infra/bots/assets/chromebook_x86_64_gles/ |
D | create.py | 14 import glob 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*')))
|
/third_party/skia/infra/bots/assets/chromebook_arm_gles/ |
D | create.py | 14 import glob 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*')))
|
/third_party/boost/libs/compute/doc/ |
D | Jamfile.v2 | 39 [ glob ../include/boost/compute/algorithm/*.hpp ] 42 [ glob ../include/boost/compute/allocator/*.hpp ] 45 [ glob ../include/boost/compute/async/*.hpp ] 48 [ glob ../include/boost/compute/container/*.hpp ] 51 [ glob ../include/boost/compute/exception/*.hpp ] 54 [ glob ../include/boost/compute/functional/*.hpp ] 57 [ glob ../include/boost/compute/interop/opengl/*.hpp ] 60 [ glob ../include/boost/compute/image/*.hpp ] 63 [ glob ../include/boost/compute/iterator/*.hpp ] 66 [ glob ../include/boost/compute/memory/*.hpp ] [all …]
|
/third_party/python/Tools/peg_generator/scripts/ |
D | test_pypi_packages.py | 5 import glob 31 glob.glob("./data/pypi/*.tar.gz") 32 + glob.glob("./data/pypi/*.zip") 33 + glob.glob("./data/pypi/*.tgz")
|
/third_party/boost/tools/build/test/ |
D | builtin_glob_archive.py | 76 def test_glob_archive(archives, glob, expected, sort_results = False): argument 79 glob = glob.replace("$archive1", archives[0]).replace("$obj", obj_suffix) 83 glob = glob.replace("$archive2", archives[1]).replace("$obj", obj_suffix) 87 if sort_results : glob = "[ SORT %s ]" % glob 94 """ % glob)
|
/third_party/grpc/src/objective-c/examples/ |
D | BUILD | 64 srcs = glob(["Sample/Sample/**/*.m"]), 65 hdrs = glob(["Sample/Sample/**/*.h"]), 66 data = glob([ 87 srcs = glob(["InterceptorSample/InterceptorSample/**/*.m"]), 88 hdrs = glob(["InterceptorSample/InterceptorSample/**/*.h"]), 89 data = glob([ 109 srcs = glob(["tvOS-sample/tvOS-sample/**/*.m"]), 110 hdrs = glob(["tvOS-sample/tvOS-sample/**/*.h"]), 111 data = glob([ 128 srcs = glob(["watchOS-sample/watchOS-sample/**/*.m"]), [all …]
|
/third_party/skia/tests/sksl/shared/ |
D | ScopedSymbol.glsl | 5 int glob; 10 return glob == 2; 21 int glob = 1; 22 return glob == 1; 25 glob = 2;
|
/third_party/boost/tools/build/src/util/ |
D | path.py | 23 from glob import glob as builtin_glob 260 def glob (dirs, patterns): function 336 import glob 337 result.extend (glob.glob (p)) 376 result = glob(p, patterns) 839 def glob(dirs, patterns, exclude_patterns=None): function 883 result = glob(roots, patterns, exclude_patterns) 884 …subdirs = [s for s in glob(roots, ["*"], exclude_patterns) if s != "." and s != ".." and os.path.i… 906 result = glob([new_dir], patterns)
|