Home
last modified time | relevance | path

Searched +full:is +full:- +full:glob (Results 1 – 25 of 1177) sorted by relevance

12345678910>>...48

/external/python/cpython3/Doc/library/
Dglob.rst1 :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 …]
/external/perfetto/src/trace_processor/metrics/sql/android/startup/
Dhsc.sql1 --
2 -- Copyright 2020 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
Dslice_functions.sql1 --
2 -- Copyright 2022 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
/external/perfetto/src/trace_processor/perfetto_sql/stdlib/android/
Dcritical_blocking_calls.sql1 --
2 -- Copyright 2024 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
Dslices.sql1 --
2 -- Copyright 2023 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
/external/python/cpython2/Lib/test/
Dtest_glob.py1 import glob
45 def glob(self, *parts): member in GlobTests
51 res = glob.glob(p)
52 self.assertItemsEqual(glob.iglob(p), res)
54 self.assertItemsEqual(glob.glob(fsdecode(p)), ures)
55 self.assertItemsEqual(glob.iglob(fsdecode(p)), ures)
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 …]
/external/pigweed/pw_module/py/pw_module/
Dcheck.py7 # https://www.apache.org/licenses/LICENSE-2.0
10 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
19 import glob
28 def check_modules(modules: Sequence[str]) -> int:
47 def check_module(module) -> bool:
61 'Running checker: %s - %s',
92 # No per-file error to put in a "cerr" list, so just log.
142 @checker('PWCK001', 'If there is Python code, there is a setup.py')
144 module_python_files = glob.glob(f'{directory}/**/*.py', recursive=True)
145 module_setup_py = glob.glob(f'{directory}/**/setup.py', recursive=True)
[all …]
/external/python/cpython2/Doc/library/
Dglob.rst1 :mod:`glob` --- Unix style pathname pattern expansion
4 .. module:: glob
10 **Source code:** :source:`Lib/glob.py`
12 --------------
14 The :mod:`glob` module finds all the pathnames matching a specified pattern
16 arbitrary order. No tilde expansion is done, but ``*``, ``?``, and character
17 ranges expressed with ``[]`` will be correctly matched. This is done by using
20 :mod:`glob` treats filenames beginning with a dot (``.``) as special cases.
24 For a literal match, wrap the meta-characters in brackets.
28 .. function:: glob(pathname)
[all …]
/external/python/cpython3/Lib/test/
Dtest_glob.py1 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 …]
/external/python/pyserial/serial/tools/
Dlist_ports_posix.py3 # This is a module that gathers a list of serial ports on POSIXy systems.
6 # This file is part of pySerial. https://github.com/pyserial/pyserial
7 # (C) 2011-2015 Chris Liechti <cliechti@gmx.net>
9 # SPDX-License-Identifier: BSD-3-Clause
12 The ``comports`` function is expected to return an iterable that yields tuples
15 As currently no method is known to get the second two strings easily, they are
21 import glob
37 # (such as 'open' call, explicit 'ls'), but 'glob.glob'
40 devices = glob.glob('/dev/ttyS*')
47 devices = glob.glob('/dev/cua*')
[all …]
Dlist_ports_linux.py3 # This is a module that gathers a list of serial ports including details on
6 # This file is part of pySerial. https://github.com/pyserial/pyserial
7 # (C) 2011-2015 Chris Liechti <cliechti@gmx.net>
9 # SPDX-License-Identifier: BSD-3-Clause
13 import glob
24 if device is not None and os.path.islink(device):
37 if self.subsystem == 'usb-serial':
43 # fill-in info for USB devices
44 if self.usb_interface_path is not None:
64 if self.subsystem in ('usb', 'usb-serial'):
[all …]
/external/ComputeLibrary/tests/
DSConscript2 # -*- coding: utf-8 -*-
4 # Copyright (c) 2017-2022 Arm Limited.
6 # SPDX-License-Identifier: MIT
8 # Permission is hereby granted, free of charge, to any person obtaining a copy
12 # sell copies of the Software, and to permit persons to whom the Software is
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31 # vars is imported from arm_compute:
58 if type(option_value) is bool and option_value:
70 # Disable floating-point expression contraction (e.g. fused multiply-add operations)
72 test_env.Append(CXXFLAGS = ['-ffp-contract=off'])
[all …]
/external/curl/src/
Dtool_urlglob.c10 * 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 …]
/external/python/pyfakefs/pyfakefs/tests/
Dfake_filesystem_glob_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
10 # distributed under the License is distributed on an "AS IS" BASIS,
15 """Test for glob using fake_filesystem."""
17 import glob
35 self.assertEqual(glob.glob(""), [])
45 sorted(glob.glob("/xyzzy/*")),
49 self.assertEqual(["/xyzzy"], glob.glob("/xyzzy"))
50 self.assertEqual(["/xyzzy/subfile"], glob.glob("/xyzzy/subfile"))
60 sorted(glob.glob("/x?zz?/*")),
64 self.assertEqual(["/xyzzy"], glob.glob("/xyzzy"))
[all …]
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/
Dlist_ports_posix.py5 # This is a module that gathers a list of serial ports on POSIXy systems.
8 # this is a wrapper module for different platform implementations of the
11 # (C) 2011-2013 Chris Liechti <cliechti@gmx.net>
12 # this is distributed under a free software license, see license.txt
15 The ``comports`` function is expected to return an iterable that yields tuples
18 As currently no method is known to get the second two strings easily, they are
22 import glob
34 devices = glob.glob('/dev/com*')
39 devices = glob.glob('/dev/cua*')
46 devices = glob.glob('/dev/cuad*')
[all …]
/external/curl/.github/
Dlabeler.yml3 # SPDX-License-Identifier: curl
6 # to add labels to pull requests. This is not (yet?) a replacement for human
7 # triaging, but is intended to add labels to the easy cases. If the matching
10 # Labels are added in two ways: the any-glob-to-all-files ones are added if all
11 # the files fit into the category, and the any-glob-to-any-file ones are added
13 # PR is all about that one topic, like HTTP/3), while the second ones are
17 # N.B. any-glob-to-all-files is misnamed; it acts like one-glob-to-all-files.
18 # Therefore, to get any-glob-to-all-files semantics, there must be a single glob
24 - all:
25 - changed-files:
[all …]
/external/bazelbuild-rules_rust/bindgen/3rdparty/patches/
Dllvm-project.cxx17.patch1 diff --git a/utils/bazel/configure.bzl b/utils/bazel/configure.bzl
3 --- a/utils/bazel/configure.bzl
5 @@ -70,6 +70,11 @@ def _overlay_directories(repository_ctx):
17 @@ -86,6 +91,16 @@ llvm_configure = repository_rule(
22 + Label("//utils/bazel/llvm-project-overlay/clang:BUILD.bazel"),
23 + Label("//utils/bazel/llvm-project-overlay/libunwind:BUILD.bazel"),
24 + Label("//utils/bazel/llvm-project-overlay/llvm:binary_alias.bzl"),
25 + Label("//utils/bazel/llvm-project-overlay/llvm:BUILD.bazel"),
26 + Label("//utils/bazel/llvm-project-overlay/llvm:cc_plugin_library.bzl"),
27 + Label("//utils/bazel/llvm-project-overlay/llvm:config.bzl"),
[all …]
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DGlobToRegex.java8 * http://www.apache.org/licenses/LICENSE-2.0
11 * distributed under the License is distributed on an "AS IS" BASIS,
33 * Converts the given glob to a regular expression pattern. The given separators determine what
34 * characters the resulting expression breaks on for glob expressions such as * which should not
43 * [a-z] = [[^/]&&[a-z]]
44 * [!a-z] = [[^/]&&[^a-z]]
48 public static String toRegex(String glob, String separators) { in toRegex() argument
49 return new GlobToRegex(glob, separators).convert(); in toRegex()
55 private final String glob; field in GlobToRegex
63 private GlobToRegex(String glob, String separators) { in GlobToRegex() argument
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/jank/
Dcujs.sql1 --
2 -- Copyright 2022 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
Drelevant_slices.sql1 --
2 -- Copyright 2022 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
/external/apache-xml/test/java/src/org/apache/qetest/
DFilePatternFilter.java10 * http://www.apache.org/licenses/LICENSE-2.0
13 * distributed under the License is distributed on an "AS IS" BASIS,
40 * @param inc semicolon-delimited string of inclusion name(s)
41 * @param exc semicolon-delimited string of exclusion name(s)
42 * @param glob simple pattern to look for
44 public FilePatternFilter(String inc, String exc, String glob) in FilePatternFilter() argument
48 setPattern(glob); in FilePatternFilter()
53 * Simple globbing char for pattern is "*".
70 * @param glob file pattern we're looking for; if null, we
73 public void setPattern(String glob) in setPattern() argument
[all …]
/external/perfetto/src/trace_processor/metrics/sql/android/
Dandroid_frame_timeline_metric.sql1 --
2 -- Copyright 2022 The Android Open Source Project
3 --
4 -- Licensed under the Apache License, Version 2.0 (the "License");
5 -- you may not use this file except in compliance with the License.
6 -- You may obtain a copy of the License at
7 --
8 -- https://www.apache.org/licenses/LICENSE-2.0
9 --
10 -- Unless required by applicable law or agreed to in writing, software
[all …]
/external/sdv/vsomeip/third_party/boost/algorithm/string/doc/
DJamfile.v21 # Boost string_algo library documentation Jamfile ---------------------------------
3 # Copyright Pavol Droba 2002-2003. Use, modification and
4 # distribution is subject to the Boost Software License, Version
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 ]
[all …]
/external/capstone/bindings/python/
Dsetup.py3 import glob
19 # Reference: https://docs.python.org/2/library/platform.html#cross-platform
91 src.extend(glob.glob(os.path.join(BUILD_DIR, "*.[ch]")))
92 src.extend(glob.glob(os.path.join(BUILD_DIR, "*.mk")))
94 src.extend(glob.glob(os.path.join(BUILD_DIR, "Makefile")))
95 src.extend(glob.glob(os.path.join(BUILD_DIR, "LICENSE*")))
96 src.extend(glob.glob(os.path.join(BUILD_DIR, "README")))
97 src.extend(glob.glob(os.path.join(BUILD_DIR, "*.TXT")))
98 src.extend(glob.glob(os.path.join(BUILD_DIR, "RELEASE_NOTES")))
99 src.extend(glob.glob(os.path.join(BUILD_DIR, "make.sh")))
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/mkowners/
Dmkowners.py8 # http://www.apache.org/licenses/LICENSE-2.0
11 # distributed under the License is distributed on an "AS IS" BASIS,
27 git_root = (subprocess.check_output(['git', 'rev-parse', '--show-toplevel'
28 ]).decode('utf-8').strip())
37 argp.add_argument('--out',
38 '-o',
82 globs_list = [glob for glob in globs.split(' ') if glob]
107 if possible_parent is owners:
135 # glob using git
139 def git_glob(glob): argument
[all …]

12345678910>>...48