/external/python/cpython2/Lib/test/ |
D | test_glob.py | 1 import glob 45 def glob(self, *parts): member in GlobTests 51 res = glob.glob(p) 52 self.assertEqual(list(glob.iglob(p)), res) 54 self.assertEqual(glob.glob(fsdecode(p)), ures) 55 self.assertEqual(list(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 …]
|
D | test_shelve.py | 4 import glob 35 for f in glob.glob(self.fn+"*"): 45 for f in glob.glob(self.fn+"*"): 55 for f in glob.glob(self.fn+"*"): 129 for f in glob.glob(self.fn+"*"):
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | list_ports_posix.py | 22 import glob 34 devices = glob.glob('/dev/com*') 39 devices = glob.glob('/dev/cua*') 46 devices = glob.glob('/dev/cuad*') 55 devices = glob.glob('/dev/dty*') 61 devices = glob.glob('/dev/ttyf*') 67 devices = glob.glob('/dev/tty*p0') 73 devices = glob.glob('/dev/tty*c') 79 devices = glob.glob('/dev/tty*')
|
D | list_ports_linux.py | 11 import glob 144 devices = glob.glob('/dev/ttyS*') + glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyACM*')
|
/external/curl/src/ |
D | tool_urlglob.c | 35 glob->error = string, glob->pos = column, code 37 void glob_cleanup(URLGlob* glob); 39 static CURLcode glob_fixed(URLGlob *glob, char *fixed, size_t len) in glob_fixed() argument 41 URLPattern *pat = &glob->pattern[glob->size]; in glob_fixed() 75 static CURLcode glob_set(URLGlob *glob, char **patternp, in glob_set() argument 84 char *buf = glob->glob_buffer; in glob_set() 89 pat = &glob->pattern[glob->size]; in glob_set() 134 strdup(glob->glob_buffer); in glob_set() 145 buf = glob->glob_buffer; in glob_set() 169 static CURLcode glob_range(URLGlob *glob, char **patternp, in glob_range() argument [all …]
|
/external/python/cpython2/Doc/library/ |
D | glob.rst | 1 :mod:`glob` --- Unix style pathname pattern expansion 4 .. module:: glob 10 **Source code:** :source:`Lib/glob.py` 14 The :mod:`glob` module finds all the pathnames matching a specified pattern 20 :mod:`glob` treats filenames beginning with a dot (``.``) as special cases. 28 .. function:: glob(pathname) 39 Return an :term:`iterator` which yields the same values as :func:`glob` 45 :file:`1.gif`, :file:`2.txt`, and :file:`card.gif`. :func:`glob` will produce 49 >>> import glob 50 >>> glob.glob('./[0-9].*') [all …]
|
/external/r8/tools/ |
D | gmscore_data.py | 5 import glob 35 'inputs' : glob.glob(os.path.join(V4_BASE, '*.dex')), 44 'inputs' : glob.glob(os.path.join(V5_BASE, '*.dex')), 53 'inputs' : glob.glob(os.path.join(V6_BASE, '*.dex')), 62 'inputs' : glob.glob(os.path.join(V7_BASE, '*.dex')), 71 'inputs' : glob.glob(os.path.join(V8_BASE, '*.dex')),
|
/external/lz4/tests/ |
D | test-lz4-versions.py | 10 import glob 97 for lz4 in glob.glob("*.lz4"): 106 lz4s = sorted(glob.glob('*.lz4')) 113 lz4s = sorted(glob.glob('*.lz4')) 126 lz4s = sorted(glob.glob('*.lz4')) 132 lz4s = sorted(glob.glob('*.lz4')) 133 for dec in glob.glob("*.dec"): 144 decs = glob.glob('*.dec')
|
/external/skia/infra/bots/assets/chromebook_arm_gles/ |
D | create.py | 13 import glob 38 for f in glob.glob(os.path.join(gl_path,'libGL*')): 41 for f in glob.glob(os.path.join(gl_path,'libEGL*')): 44 for f in glob.glob(os.path.join(gl_path,'libmali*')):
|
/external/llvm/test/Assembler/ |
D | ConstantExprNoFold.ll | 35 ; CHECK: @F = global i1 icmp eq (i32* @weakany, i32* @glob) 36 @F = global i1 icmp eq (i32* @weakany, i32* @glob) 45 ; Don't add an inbounds on @glob.a3, since it's not inbounds. 46 ; CHECK: @glob.a3 = alias i32, getelementptr (i32, i32* @glob.a2, i32 1) 47 @glob = global i32 0 48 @glob.a3 = alias i32, getelementptr (i32, i32* @glob.a2, i32 1) 49 @glob.a2 = alias i32, getelementptr (i32, i32* @glob.a1, i32 1) 50 @glob.a1 = alias i32, i32* @glob
|
/external/brotli/ |
D | BUILD | 28 srcs = glob(["include/brotli/*.h"]), 33 srcs = glob(["common/*.h"]), 38 srcs = glob(["common/*.c"]), 43 srcs = glob(["dec/*.h"]), 48 srcs = glob(["dec/*.c"]), 53 srcs = glob(["enc/*.h"]), 58 srcs = glob(["enc/*.c"]),
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | init-order-pthread-create.cc | 21 void *glob = bar((void*)0x1234, false); variable 25 void **glob = (void**)arg; in poll() local 28 printf("glob is now: %p\n", *glob); in poll() 38 pthread_create(&p, 0, poll, &glob); in GlobalPollerStarter() 45 printf("%p %p\n", glob, glob2); in main()
|
/external/swiftshader/third_party/subzero/pydir/ |
D | targets.py | 4 import glob 15 return glob.glob( 19 globs = glob.glob('/usr/mipsel-linux-gnu/include/c++/*/mipsel-linux-gnu')
|
/external/toolchain-utils/automation/clients/report/dejagnu/ |
D | main.py | 6 import glob 20 return chain.from_iterable(map(glob.glob, paths)) 50 for filename in chain.from_iterable(map(glob.glob, args)): 102 for filename in chain.from_iterable(map(glob.glob, args))]
|
/external/compiler-rt/test/tsan/ |
D | pthread_atfork_deadlock.c | 9 int glob = 0; variable 13 glob++; in worker() 19 glob++; in atfork() 27 glob++; in main()
|
/external/clang/test/SemaOpenCL/ |
D | to_addr_builtin.cl | 5 global int *glob; 11 glob = to_global(glob, loc); 20 glob = to_global(x); 27 glob = to_global(con); 34 glob = to_global(con_typedef); 41 loc = to_global(glob);
|
/external/skia/infra/bots/recipe_modules/isolate/resources/ |
D | find_isolated_tests.py | 16 import glob 70 for filepath in sorted(glob.glob(pattern)): 75 for filepath in sorted(glob.glob(pattern)):
|
/external/autotest/client/site_tests/policy_DisableScreenshots/ |
D | policy_DisableScreenshots.py | 5 import glob 80 lambda: len(glob.glob(self._SCREENSHOT_FILENAME)) > 0, 93 for filename in glob.glob(self._SCREENSHOT_FILENAME):
|
/external/autotest/client/site_tests/security_RootCA/ |
D | security_RootCA.py | 5 import glob, json, logging, os, re, stat 56 nss_shlib_glob = glob.glob('/usr/lib*/libnssckbi.so') 105 for certfile in glob.glob(OPENSSL_CERT_GLOB): 132 for certfile in glob.glob(OPENSSL_CERT_GLOB):
|
/external/python/cpython2/Tools/msi/ |
D | msi.py | 4 import msilib, schema, sequence, os, glob, time, re, shutil, zipfile 915 import shutil, glob 926 dirs = glob.glob(srcdir+"/externals/"+pat) 1032 lib.glob("*.txt") 1033 lib.glob("*.whl") 1034 lib.glob("*.0") 1038 files = lib.glob("*.py") 1039 files += lib.glob("*.pyw") 1059 lib.glob("*.uue") 1060 lib.glob("*.pem") [all …]
|
/external/clang/test/CodeGenOpenCL/ |
D | to_addr_builtin.cl | 11 global int *glob; 19 glob = to_global(glob); 24 glob = to_global(loc); 29 glob = to_global(priv); 34 glob = to_global(gen); 39 loc = to_local(glob); 59 priv = to_private(glob);
|
/external/clang/test/SemaObjC/ |
D | conflict-nonfragile-abi2.m | 5 int glob; 8 @property int glob; property 19 - (int) Meth { return glob; } // no warning 20 @synthesize glob;
|
/external/autotest/client/cros/input_playback/ |
D | input_playback.py | 5 import glob 120 return glob.glob('/dev/input/event*') 263 input_names = glob.glob(os.path.join(device_dir, 'input', 'input*')) 285 i2c_paths = glob.glob('/dev/i2c-*') 290 contents_of_input_folder = glob.glob(input_folder_path) 364 hidraws = glob.glob('/dev/hidraw*')
|
/external/autotest/client/site_tests/kernel_Delay/ |
D | kernel_Delay.py | 5 import glob 234 self._governor_paths = glob.glob(self.GOVERNOR_GLOB) 235 self._setspeed_paths = glob.glob(self.SETSPEED_GLOB) 236 self._cur_freq_paths = glob.glob(self.CUR_FREQ_GLOB)
|
/external/jsoncpp/test/ |
D | cleantests.py | 2 import glob 7 paths += glob.glob( 'data/' + pattern )
|