Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
Dfake_filesystem_glob_test.py34 self.glob = fake_filesystem_glob.FakeGlobModule(self.filesystem)
43 self.assertEqual(self.glob.glob(''), [])
47 self.glob.glob('/xyzzy/*'))
50 self.assertEqual(['/xyzzy'], self.glob.glob('/xyzzy'))
51 self.assertEqual(['/xyzzy/subfile'], self.glob.glob('/xyzzy/subfile'))
55 self.glob.glob('/x?zz?/*'))
58 self.assertEqual(['/xyzzy'], self.glob.glob('/xyzzy'))
59 self.assertEqual(['/xyzzy/subdir'], self.glob.glob('/xyzzy/subdir'))
62 self.assertEqual([], self.glob.glob('nonexistent'))
68 self.assertEqual(['/[Temp]'], self.glob.glob('/*emp*'))
[all …]
Dfake_filesystem_unittest_test.py23 import glob
76 self.assertCountEqual(glob.glob('/test/dir1/dir*'),
79 self.assertCountEqual(glob.glob('/test/dir1/dir*'),
82 self.assertCountEqual(glob.glob('/test/dir1/dir*'),
Dexample.py42 import glob
117 return glob.glob(glob_path)
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
Dlist_ports_posix.py22 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*')
Dlist_ports_linux.py11 import glob
144 devices = glob.glob('/dev/ttyS*') + glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyACM*')
/external/ltrace/
Dglob.c28 match_character_class(const char *glob, size_t length, size_t from) in match_character_class() argument
31 const char *colon = memchr(glob + from + 2, ':', length - 1); in match_character_class()
34 return colon - glob; in match_character_class()
38 match_brack(const char *glob, size_t length, size_t from, int *exclmp) in match_brack() argument
47 if (glob[i] == '^' || glob[i] == '!') { in match_brack()
48 *exclmp = glob[i++] == '!'; in match_brack()
55 if (glob[i] == '[' && glob[i + 1] == ':') { in match_brack()
56 ssize_t j = match_character_class(glob, length, i); in match_brack()
65 char c = glob[i]; in match_brack()
66 if (c == '[' && glob[i + 1] == ':') { in match_brack()
[all …]
/external/curl/src/
Dtool_urlglob.c33 glob->error = string, glob->pos = column, code
35 void glob_cleanup(URLGlob* glob);
37 static CURLcode glob_fixed(URLGlob *glob, char *fixed, size_t len) in glob_fixed() argument
39 URLPattern *pat = &glob->pattern[glob->size]; in glob_fixed()
73 static CURLcode glob_set(URLGlob *glob, char **patternp, in glob_set() argument
82 char *buf = glob->glob_buffer; in glob_set()
87 pat = &glob->pattern[glob->size]; in glob_set()
132 strdup(glob->glob_buffer); in glob_set()
143 buf = glob->glob_buffer; in glob_set()
167 static CURLcode glob_range(URLGlob *glob, char **patternp, in glob_range() argument
[all …]
/external/libvpx/libvpx/
Dwebmenc.cc23 void write_webm_file_header(struct EbmlGlobal *glob, in write_webm_file_header() argument
29 mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(glob->stream); in write_webm_file_header()
39 if (!glob->debug) { in write_webm_file_header()
77 if (glob->debug) { in write_webm_file_header()
80 glob->writer = writer; in write_webm_file_header()
81 glob->segment = segment; in write_webm_file_header()
84 void write_webm_block(struct EbmlGlobal *glob, in write_webm_block() argument
88 reinterpret_cast<mkvmuxer::Segment*>(glob->segment); in write_webm_block()
91 if (pts_ns <= glob->last_pts_ns) in write_webm_block()
92 pts_ns = glob->last_pts_ns + 1000000; in write_webm_block()
[all …]
/external/vixl/third_party/android/
Dgenerate_android_mk.py31 import glob
52 sources = glob.glob(os.path.join(dir_root, 'src', 'vixl', '*.cc')) + \
53 glob.glob(os.path.join(dir_root, 'src', 'vixl', 'a64', '*.cc'))
57 test_sources = glob.glob(os.path.join(dir_root, 'test', '*.cc'))
/external/llvm/test/Assembler/
DConstantExprNoFold.ll35 ; 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/compiler-rt/test/asan/TestCases/Posix/
Dinit-order-pthread-create.cc21 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/compiler-rt/test/tsan/
Dpthread_atfork_deadlock.c9 int glob = 0; variable
13 glob++; in worker()
19 glob++; in atfork()
27 glob++; in main()
/external/autotest/client/site_tests/kernel_Delay/
Dkernel_Delay.py5 import glob
196 self._governor_paths = glob.glob(self.GOVERNOR_GLOB)
197 self._setspeed_paths = glob.glob(self.SETSPEED_GLOB)
198 self._cur_freq_paths = glob.glob(self.CUR_FREQ_GLOB)
/external/icu/tools/
Dupdateicudata.py5 import glob
77 datfiles = glob.glob('data/out/tmp/icudt??l.dat')
91 jarfiles = glob.glob('out/icu4j/*.jar')
/external/autotest/client/site_tests/security_RootCA/
Dsecurity_RootCA.py5 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/clang/test/SemaObjC/
Dconflict-nonfragile-abi2.m5 int glob;
8 @property int glob; property
19 - (int) Meth { return glob; } // no warning
20 @synthesize glob;
/external/opencv3/samples/python2/
D_doc.py8 from glob import glob
12 for fn in glob('*.py'):
/external/jsoncpp/test/
Dcleantests.py2 import glob
7 paths += glob.glob( 'data/' + pattern )
Dgenerate_expected.py2 import glob
4 for path in glob.glob( '*.json' ):
/external/autotest/site_utils/stats/
D__init__.py7 import glob
10 glob.glob(os.path.dirname(__file__)+"/*.py")]
/external/llvm/test/DebugInfo/Inputs/
Ddwarfdump-test-32bit.elf.c3 extern int glob;
7 return a + glob; in foo()
12 return glob - foo(a); in bar()
/external/autotest/client/cros/
Dtty.py8 import glob
14 candidates = glob.glob('/dev/tty*')
/external/autotest/client/cros/multimedia/
Dusb_facade_native.py7 import glob
249 for search_root_path in glob.glob(self._USB_DRIVER_GLOB_PATTERN):
281 hcd_id_paths = glob.glob(glob_pattern)
333 for search_root_path in glob.glob(self._USB_DRIVER_GLOB_PATTERN):
/external/autotest/client/site_tests/hardware_MultiReader/
Dhardware_MultiReader.py5 import glob, logging, os
14 blockdev_paths = glob.glob("/sys/block/*/removable")
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
Dall_tests.py4 from glob import glob
13 *glob('*.doctest'),

12345678910>>...12