/external/llvm/test/Object/ |
D | archive-update.test | 6 Create a file named evenlen that is newer than the evenlen on the source dir. 10 RUN: mkdir -p %t.newer 17 RUN: echo newer > %t.newer/evenlen 18 RUN: touch %t.newer/evenlen 21 RUN: llvm-ar rU %t.a %t.newer/evenlen 22 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s 28 Check that with the 'u' option the member is replaced with a newer file. 29 RUN: llvm-ar ruU %t.a %t.newer/evenlen 30 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s 34 RUN: llvm-ar p %t.a | FileCheck --check-prefix=NEWER %s [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | archive-update.test | 6 Create a file named evenlen that is newer than the evenlen on the source dir. 10 RUN: mkdir -p %t/tmp.newer 17 RUN: echo newer > %t/tmp.newer/evenlen 18 RUN: touch %t/tmp.newer/evenlen 21 RUN: llvm-ar rU %t/tmp.a %t/tmp.newer/evenlen 22 RUN: llvm-ar p %t/tmp.a | FileCheck --check-prefix=NEWER %s 28 Check that with the 'u' option the member is replaced with a newer file. 29 RUN: llvm-ar ruU %t/tmp.a %t/tmp.newer/evenlen 30 RUN: llvm-ar p %t/tmp.a | FileCheck --check-prefix=NEWER %s 34 RUN: llvm-ar p %t/tmp.a | FileCheck --check-prefix=NEWER %s [all …]
|
/external/python/cpython3/Lib/distutils/ |
D | dep_util.py | 11 def newer (source, target): function 29 # newer () 33 """Walk two filename lists in parallel, testing if each source is newer 35 targets) where source is newer than target, according to the semantics 36 of 'newer()'. 41 # build a pair of lists (sources, targets) where source is newer 45 if newer(sources[i], targets[i]): 56 listed in 'sources'. In other words, if 'target' exists and is newer 61 "newer", any missing source files make us assume that 'target' is 83 elif missing == 'newer': # missing source means target is
|
/external/python/cpython2/Lib/distutils/ |
D | dep_util.py | 13 def newer(source, target): function 14 """Tells if the target is newer than the source. 34 """Walk two filename lists in parallel, testing if each source is newer 36 targets) where source is newer than target, according to the semantics 37 of 'newer()'. 42 # build a pair of lists (sources, targets) where source is newer 46 if newer(source, target): 56 In other words, if 'target' exists and is newer 61 "newer", any missing source files make us assume that 'target' is 83 elif missing == 'newer': # missing source means target is
|
/external/openssh/openbsd-compat/regress/ |
D | opensslvertest.c | 29 { 0x0090802fL, 0x0090804fL, 1}, /* newer library fix version: ok */ 32 { 0x0090802fL, 0x0090902fL, 0}, /* newer library minor version: NO */ 34 { 0x0090802fL, 0x1000100fL, 0}, /* newer library major version: NO */ 38 { 0x1000101fL, 0x1000102fL, 1}, /* newer library patch version: ok */ 40 { 0x1000101fL, 0x1000201fL, 1}, /* newer library fix version: ok */ 42 { 0x1000101fL, 0x1010101fL, 0}, /* newer library minor version: NO */ 44 { 0x1000101fL, 0x2000101fL, 0}, /* newer library major version: NO */
|
/external/curl/tests/libtest/ |
D | testutil.c | 112 long tutil_tvdiff(struct timeval newer, struct timeval older) in tutil_tvdiff() argument 114 return (long)(newer.tv_sec-older.tv_sec)*1000+ in tutil_tvdiff() 115 (long)(newer.tv_usec-older.tv_usec)/1000; in tutil_tvdiff() 124 double tutil_tvdiff_secs(struct timeval newer, struct timeval older) in tutil_tvdiff_secs() argument 126 if(newer.tv_sec != older.tv_sec) in tutil_tvdiff_secs() 127 return (double)(newer.tv_sec-older.tv_sec)+ in tutil_tvdiff_secs() 128 (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs() 129 return (double)(newer.tv_usec-older.tv_usec)/1000000.0; in tutil_tvdiff_secs()
|
/external/python/setuptools/setuptools/tests/ |
D | test_dep_util.py | 8 """Sets up some older sources, a target and newer sources. 11 creation_order = ['older.c', 'older.h', 'target.o', 'newer.c', 'newer.h'] 28 newer = newer_pairwise_group([groups_target[2]], [groups_target[1]]) 30 assert newer == ([groups_target[2]], [groups_target[1]])
|
/external/squashfs-tools/ |
D | INSTALL | 9 This release is for 2.6.29 and newer kernels. Kernel patching is not necessary. 11 Extended attribute support requires 2.6.35 or newer. File systems with 12 extended attributes can be mounted on 2.6.29 and newer kernels (the 15 LZO compression support requires 2.6.36 or newer kernels. 17 XZ compression support requires 2.6.38 or newer kernels.
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_dep_util.py | 6 from distutils.dep_util import newer, newer_pairwise, newer_group 20 self.assertRaises(DistutilsFileError, newer, new_file, old_file) 25 self.assertTrue(newer(new_file, 'I_dont_exist')) 26 self.assertTrue(newer(new_file, old_file)) 30 self.assertFalse(newer(old_file, new_file)) 74 missing='newer'))
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_dep_util.py | 5 from distutils.dep_util import newer, newer_pairwise, newer_group 19 self.assertRaises(DistutilsFileError, newer, new_file, old_file) 24 self.assertTrue(newer(new_file, 'I_dont_exist')) 25 self.assertTrue(newer(new_file, old_file)) 29 self.assertFalse(newer(old_file, new_file)) 73 missing='newer'))
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateBirth.java | 126 Set<String> newer = other.writeBirth(outputDirectory, fileName, english); in main() local 129 dataOut.writeInt(newer.size()); in main() 130 for (String item : newer) { in main() 137 localeToNewer.put(fileName, newer); in main() 150 Set<String> newer = localeAndNewer.getValue(); in main() local 151 if (newer.size() != outdatedPaths.countOutdated(locale)) { in main() 154 for (String xpath : newer) { in main() 267 Set<String> newer = new HashSet<String>(); in writeBirth() local 296 newer.add(xpath); in writeBirth() 312 return newer; in writeBirth() [all …]
|
/external/capstone/msvc/ |
D | README | 7 (1) Visual Studio 2010 or newer versions is required. Open "capstone.sln" to 13 Visual Studio 2010, so if you open them using newer version, an extra step 20 you need to install Visual Studio 2013 or newer versions, and Windows Driver 21 Kit 8.1 Update 1 or newer versions, then check "Build" check boxes for those
|
/external/honggfuzz/ |
D | CHANGELOG | 27 - Should compile cleanly with newer MacOS-X versions 37 - Added missing symbols for newer -fsanitize-coverage (const) 39 - Android: Make it compile with newer SDKs 64 - Android: works with Android-NDK 15 and newer only 92 - Support for Intel PT under Linux v4.0 and newer (and Broadwell/Skylake/newer Intel CPUs)
|
/external/python/cpython2/Tools/scripts/ |
D | treesync.py | 14 if the slave file is newer: 18 else (the master is newer): 134 # Master is newer -- copy master to slave 138 print "is newer than slave", slave 141 # Slave is newer -- copy slave to master 142 print "Slave is", sft-mft, "seconds newer than master"
|
/external/curl/ |
D | buildconf | 94 # autoconf 2.57 or newer. Unpatched version 2.67 does not generate proper 102 echo " You need autoconf version $need_autoconf or newer installed." 108 echo " You need autoconf version $need_autoconf or newer installed." 138 # autoheader 2.50 or newer 143 echo " You need autoheader version 2.50 or newer installed." 149 echo " You need autoheader version 2.50 or newer installed." 159 # automake 1.7 or newer 165 echo " You need automake version $need_automake or newer installed." 171 echo " You need automake version $need_automake or newer installed." 209 echo " You need GNU libtoolize $want_lt_version or newer installed." [all …]
|
/external/curl/lib/ |
D | timeval.c | 189 timediff_t Curl_timediff(struct curltime newer, struct curltime older) in Curl_timediff() argument 191 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff() 196 return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000; in Curl_timediff() 203 timediff_t Curl_timediff_us(struct curltime newer, struct curltime older) in Curl_timediff_us() argument 205 timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec; in Curl_timediff_us() 210 return diff * 1000000 + newer.tv_usec-older.tv_usec; in Curl_timediff_us()
|
/external/python/setuptools/setuptools/ |
D | dep_util.py | 7 """Walk both arguments in parallel, testing if each source group is newer 9 targets) where sources is newer than target, according to the semantics 15 # build a pair of lists (sources_groups, targets) where source is newer
|
/external/capstone/ |
D | COMPILE_MSVC.TXT | 2 Microsoft Visual Studio version 2010 or newer. 14 NOTE: This requires Visual Studio 2010 or newer versions. 16 If you wish to embed Capstone in a kernel driver, Visual Studio 2013 or newer 17 versions, and Windows Driver Kit 8.1 Update 1 or newer versions are required.
|
/external/freetype/builds/windows/vc2010/ |
D | index.html | 4 FreeType 2 Project Files for Visual C++ 2010 or newer 9 FreeType 2 Project Files for Visual C++ 2010 or newer 13 Visual C++ 2010 or newer, named <tt>freetype.sln</tt>,
|
/external/autotest/client/site_tests/kernel_ConfigVerify/ |
D | kernel_ConfigVerify.py | 177 # For linux-3.10 or newer. 183 # For linux-3.14 or newer. 193 # For linux-3.18 or newer. 215 # For linux-4.4 or newer. 219 # For linux-4.19 or newer.
|
/external/curl/docs/libcurl/ |
D | ABI | 35 using the older lib, while newer applications build and use the newer one. 47 tricky thing. Mostly we add features and options to newer libcurls as that
|
/external/googletest/googlemock/ |
D | README.md | 104 * C++98-standard-compliant compiler (e.g. GCC 3.4 or newer) 108 * Microsoft Visual C++ 8.0 SP1 or newer 112 * Mac OS X 10.4 Tiger or newer 120 * Automake version 1.9 or newer 121 * Autoconf version 2.59 or newer 123 * Python version 2.3 or newer (for running some of the tests and
|
/external/libchrome/base/ |
D | template_util.h | 32 // TODO(danakj): Remove this when android builders are all using a newer version 33 // of gcc, or the android ndk is updated to a newer libc++ that works with older 116 // TODO(danakj): Remove this when android builders are all using a newer version 117 // of gcc, or the android ndk is updated to a newer libc++ that does this for
|
/external/toybox/tests/ |
D | find.test | 9 # fs timestamp granularity isn't always enough for -newer to tell, so wait 57 testing "-type l -newer -exec" \ 58 "find dir -type l -newer dir/file -exec ls {} \\;" "dir/link\n" "" ""
|
/external/autotest/client/tests/ltp/patches/ |
D | sysctl.patch | 26 +/* This is an older/deprecated syscall that newer arches are omitting */ 56 +/* This is an older/deprecated syscall that newer arches are omitting */ 86 +/* This is an older/deprecated syscall that newer arches are omitting */ 116 +/* This is an older/deprecated syscall that newer arches are omitting */ 172 +/* The sysctl() wrapper is dead and newer arches omit it now. */
|