/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
D | fake_filesystem_glob_test.py | 34 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 …]
|
D | fake_filesystem_unittest_test.py | 23 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*'),
|
D | example.py | 42 import glob 117 return glob.glob(glob_path)
|
/external/chromium-trace/catapult/telemetry/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/ltrace/ |
D | glob.c | 28 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/ |
D | tool_urlglob.c | 33 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/ |
D | webmenc.cc | 23 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/ |
D | generate_android_mk.py | 31 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/ |
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/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/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/autotest/client/site_tests/kernel_Delay/ |
D | kernel_Delay.py | 5 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/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/icu/tools/ |
D | updateicudata.py | 5 import glob 77 datfiles = glob.glob('data/out/tmp/icudt??l.dat') 91 jarfiles = glob.glob('out/icu4j/*.jar')
|
/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/opencv3/samples/python2/ |
D | _doc.py | 8 from glob import glob 12 for fn in glob('*.py'):
|
/external/jsoncpp/test/ |
D | cleantests.py | 2 import glob 7 paths += glob.glob( 'data/' + pattern )
|
D | generate_expected.py | 2 import glob 4 for path in glob.glob( '*.json' ):
|
/external/autotest/site_utils/stats/ |
D | __init__.py | 7 import glob 10 glob.glob(os.path.dirname(__file__)+"/*.py")]
|
/external/autotest/client/cros/multimedia/ |
D | usb_facade_native.py | 7 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/llvm/test/DebugInfo/Inputs/ |
D | dwarfdump-test-32bit.elf.c | 3 extern int glob; 7 return a + glob; in foo() 12 return glob - foo(a); in bar()
|
/external/autotest/client/cros/ |
D | tty.py | 8 import glob 14 candidates = glob.glob('/dev/tty*')
|
/external/autotest/client/site_tests/platform_BootPerf/ |
D | platform_BootPerf.py | 5 import glob 118 statlist = (glob.glob(self._UPTIME_FILE_GLOB) + 119 glob.glob(self._DISK_FILE_GLOB)) 414 bootstat_archives = glob.glob(self._BOOTSTAT_ARCHIVE_GLOB)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/ |
D | all_tests.py | 4 from glob import glob 13 *glob('*.doctest'),
|