/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
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 i [all...] |
file_util.py | 102 # (not update) and (src newer than dst). 104 from distutils.dep_util import newer namespace 117 if update and not newer(src, dst):
|
bcppcompiler.py | 22 from distutils.dep_util import newer namespace 383 # source file is newer than the target (or the target doesn't 385 if self.force or output_file is None or newer(source, output_file):
|
unixccompiler.py | 22 from distutils.dep_util import newer namespace 103 # the source file is newer than the target (or the target doesn't 105 if self.force or output_file is None or newer(source, output_file):
|
util.py | 11 from distutils.dep_util import newer namespace 483 if force or newer(file, cfile):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
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 i [all...] |
file_util.py | 102 # (not update) and (src newer than dst). 104 from distutils.dep_util import newer namespace 117 if update and not newer(src, dst):
|
bcppcompiler.py | 22 from distutils.dep_util import newer namespace 383 # source file is newer than the target (or the target doesn't 385 if self.force or output_file is None or newer(source, output_file):
|
unixccompiler.py | 22 from distutils.dep_util import newer namespace 103 # the source file is newer than the target (or the target doesn't 105 if self.force or output_file is None or newer(source, output_file):
|
util.py | 11 from distutils.dep_util import newer namespace 483 if force or newer(file, cfile):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dep_util.py | 6 from distutils.dep_util import newer, newer_pairwise, newer_group namespace 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'))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dep_util.py | 6 from distutils.dep_util import newer, newer_pairwise, newer_group namespace 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'))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 10 from distutils.dep_util import newer namespace 68 if not self.force and not newer(script, outfile):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 10 from distutils.dep_util import newer namespace 68 if not self.force and not newer(script, outfile):
|
/external/chromium_org/components/policy/core/common/ |
schema_map_unittest.cc | 286 scoped_refptr<SchemaMap> newer = new SchemaMap(map); local 290 newer->GetChanges(older, &removed, &added); 296 newer = new SchemaMap(map); 297 newer->GetChanges(older, &removed, &added); 302 older = newer; 304 newer = new SchemaMap(map); 305 newer->GetChanges(older, &removed, &added);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
TiledScreenNail.java | 99 TiledScreenNail newer = (TiledScreenNail) other; local 100 mWidth = newer.mWidth; 101 mHeight = newer.mHeight; 102 if (newer.mTexture != null) { 105 mBitmap = newer.mBitmap; 106 mTexture = newer.mTexture; 107 newer.mBitmap = null; 108 newer.mTexture = null; 110 newer.recycle();
|
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/ |
VPPTest.c | 135 struct timeval newer; variable in typeref:struct:timeval 229 base.tv_sec = newer.tv_sec; 230 base.tv_usec = newer.tv_usec; 231 nStatus = gettimeofday(&newer, NULL); 233 nFrameTime = (newer.tv_sec-base.tv_sec) * 1000000 + (newer.tv_usec-base.tv_usec); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-commons-net.jar | |
/prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/ |
commons-io-1.3.2.jar | |
/prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/ |
ant-1.8.0.jar | |