/third_party/ffmpeg/libavdevice/ |
D | libcdio.c | 45 cdrom_drive_t *drive; member 63 s->drive = cdio_cddap_identify(ctx->url, CDDA_MESSAGE_LOGIT, &err); in read_header() 64 if (!s->drive) { in read_header() 72 if ((ret = cdio_cddap_open(s->drive)) < 0 || !s->drive->opened) { in read_header() 77 cdio_cddap_verbose_set(s->drive, CDDA_MESSAGE_LOGIT, CDDA_MESSAGE_LOGIT); in read_header() 79 cdio_cddap_speed_set(s->drive, s->speed); in read_header() 81 s->paranoia = cdio_paranoia_init(s->drive); in read_header() 89 if (s->drive->bigendianp) in read_header() 95 if (s->drive->audio_last_sector != CDIO_INVALID_LSN && in read_header() 96 s->drive->audio_first_sector != CDIO_INVALID_LSN) in read_header() [all …]
|
/third_party/node/test/parallel/ |
D | test-fs-realpath-on-substed-drive.js | 17 let drive; variable 20 drive = `${driveLetters[i]}:`; 21 result = spawnSync('subst', [drive, fixtures.fixturesDir]); 30 spawnSync('subst', ['/d', drive]); 34 const filename = `${drive}\\empty.js`;
|
/third_party/python/Lib/ |
D | nturl2path.py | 34 drive = comp[0][-1].upper() 36 path = drive + ':' 75 drive = urllib.parse.quote(comp[0].upper()) 77 path = '///' + drive + ':'
|
D | ntpath.py | 310 drive = os.environ['HOMEDRIVE'] 312 drive = '' 313 userhome = join(drive, os.environ['HOMEPATH']) 780 drive, path = splitdrive(paths[0].replace(altsep, sep)) 794 prefix = drive + sep if isabs else drive
|
D | glob.py | 229 drive, pathname = os.path.splitdrive(pathname) 234 return drive + pathname
|
D | pathlib.py | 220 drive = path.drive 221 if len(drive) == 2 and drive[1] == ':': 225 drive, urlquote_from_bytes(rest.encode('utf-8'))) 696 drive = property(attrgetter('_drv'), variable in PurePath
|
/third_party/jerryscript/jerry-port/default/ |
D | default-module.c | 108 char drive[_MAX_DRIVE]; in jerry_port_normalize_path() local 117 drive, in jerry_port_normalize_path() 125 strncat (path_p, drive, _MAX_DRIVE); in jerry_port_normalize_path()
|
/third_party/python/Doc/library/ |
D | os.path.rst | 250 off a potential drive letter. 294 same filesystem. On Windows, a drive letter root and a share UNC are 314 On Windows, the drive letter is not reset when an absolute path component 315 (e.g., ``r'\foo'``) is encountered. If a component contains a drive 316 letter, all previous components are thrown away and the drive letter is 317 reset. Note that since there is a current directory for each drive, 319 directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\foo`. 465 Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is either 466 a mount point or the empty string. On systems which do not use drive 467 specifications, *drive* will always be the empty string. In all cases, ``drive [all …]
|
D | pathlib.rst | 130 previous drive setting:: 268 (note how the drive and local root are regrouped in a single part) 280 .. data:: PurePath.drive 282 A string representing the drive letter or name, if any:: 284 >>> PureWindowsPath('c:/Program Files/').drive 286 >>> PureWindowsPath('/Program Files/').drive 288 >>> PurePosixPath('/etc').drive 293 >>> PureWindowsPath('//host/share/foo.txt').drive 314 The concatenation of the drive and root:: 373 A string representing the final path component, excluding the drive and [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | af_aexciter.c | 42 double drive; member 58 …{ "drive", "set harmonics", OFFSET(drive), AV_OPT_TYPE_DOUBLE, {.dbl=8.5}, 0.1, 10… 81 double blend, double drive, in set_params() argument 87 p->rdrive = 12.0 / drive; in set_params() 269 set_params(&s->cp[i], s->blend, s->drive, inlink->sample_rate, in config_input()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | reparse.c | 396 char *drive; in ntfs_drive_letter() local 403 drive = (char*)NULL; in ntfs_drive_letter() 404 sz = ntfs_ucstombs(&letter, 1, &drive, 0); in ntfs_drive_letter() 407 if ((*drive >= 'a') && (*drive <= 'z')) in ntfs_drive_letter() 408 *drive += 'A' - 'a'; in ntfs_drive_letter() 409 strcat(defines,drive); in ntfs_drive_letter() 422 if (drive) in ntfs_drive_letter() 423 free(drive); in ntfs_drive_letter()
|
/third_party/rust/crates/libc/ci/ |
D | run.sh | 76 -drive if=virtio,file="${tmpdir}/${qemufile}" \ 77 -drive if=virtio,file="${tmpdir}/libc-test.img" \
|
/third_party/googletest/googletest/test/ |
D | googletest-filepath-test.cc | 376 for (char drive = 'Z'; drive >= 'A'; drive--) in TEST() local 377 if (_chdrive(drive - 'A' + 1) == -1) { in TEST() 379 non_drive[0] = drive; in TEST()
|
/third_party/FatFs/source/ |
D | 00history.txt | 48 Supported multiple drive system. 49 Changed some interfaces for multiple drive system. 56 Supported multiple partitions on a physical drive. 202 Added arbitrary strings as drive number in the path name. (_STR_VOLUME_ID) 204 2nd argument of f_rename() can have a drive number and it will be ignored. 205 Fixed f_mount() with forced mount fails when drive number is >= 1. (appeared at R0.10) 329 …Fixed f_getcwd() cause output buffer overrun when the buffer has a valid drive number. (appeared a…
|
/third_party/libdrm/man/ |
D | drmModeGetResources.3.rst | 55 position information. CRTCs drive encoders, which are responsible for 68 to drive a particular encoder.
|
D | drm-kms.7.rst | 44 **drmModeCrtcSet**\ (3) to drive the display devices. 93 the correct ones to use. For each connector, you need to find a CRTC to drive 116 As a last step, you want to program your CRTC to drive your selected connector. 166 shows, how you can find a suitable CRTC id to drive this connector. This 196 * to drive one connector only, then you can skip this
|
/third_party/python/Lib/distutils/ |
D | dir_util.py | 207 drive, path = os.path.splitdrive(path) 209 path = drive + path[1:]
|
/third_party/gn/src/base/files/ |
D | file_util_win.cc | 402 char16_t drive[] = u" :"; in DevicePathToDriveLetterPath() local 408 drive[0] = drive_map_ptr[0]; // Copy the drive letter. in DevicePathToDriveLetterPath() 410 if (QueryDosDevice(ToWCharT(drive), ToWCharT(device_path_as_string), in DevicePathToDriveLetterPath() 416 FilePath(drive + nt_device_path.value().substr( in DevicePathToDriveLetterPath()
|
/third_party/protobuf/objectivec/Tests/CocoaPods/ |
D | README.md | 5 used to then drive `pod` and `xcodebuild` to ensure things integrate/build
|
/third_party/python/Lib/test/ |
D | test_py_compile.py | 65 drive = os.path.splitdrive(self.source_path)[0] 66 if drive: 67 os.chdir(drive)
|
D | test_ntpath.py | 611 drive, _ = ntpath.splitdrive(cwd_dir) 612 tester('ntpath.abspath("/abc/")', drive + "\\abc") 744 drive, path = ntpath.splitdrive(sys.executable) 746 self.assertFalse(ntpath.ismount(drive.lower())) 747 self.assertFalse(ntpath.ismount(drive.upper()))
|
/third_party/gptfdisk/ |
D | gptcurses.cc | 752 string drive="Disk Drive: "; in DrawMenu() local 753 drive += device; in DrawMenu() 761 move(2, (COLS - drive.length()) / 2); in DrawMenu() 762 printw("%s", drive.c_str()); in DrawMenu()
|
D | README-efi.txt | 39 Alternatively, you can create a USB flash drive that will launch gdisk when 41 flash drive and copy gdisk_x64.efi to it as EFI/BOOT/bootx64.efi. (You'll 45 drive. Some such boot managers present two options for booting USB flash
|
/third_party/skia/site/docs/dev/present/ |
D | pathops.md | 32 ## [Path Ops Inverse Fill Illustration](https://drive.google.com/file/d/0BwoLUwz9PYkHLWpsaXd0UDdaN0…
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 674.txt | 15 # Source: Digicel's IR 21 doc https://drive.google.com/open?id=1Xog5KczfMREzSHfiAj-6az5Hpd1t8ltH
|