HomeSort by relevance Sort by last modified time
    Searched defs:newer (Results 1 - 25 of 31) sorted by null

1 2

  /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 315 scoped_refptr<SchemaMap> newer = new SchemaMap(map); local
319 newer->GetChanges(older, &removed, &added);
325 newer = new SchemaMap(map);
326 newer->GetChanges(older, &removed, &added);
331 older = newer;
333 newer = new SchemaMap(map);
334 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();
  /external/chromium_org/third_party/cython/src/Cython/Distutils/
build_ext.py 16 from distutils.dep_util import newer, newer_group namespace
281 or newer(source, newest_dependency):
296 rebuild = self.force or newer_group(depends, target, 'newer')
298 rebuild = newer(newest_dependency, target)
  /external/chromium_org/third_party/cython/src/pyximport/
pyximport.py 80 # mod time of the .pyx is newer than the mod time of the .so but
140 # some of the dependencies are newer than the pyxfile.
157 # if any file that the pyxfile depends upon is newer than
161 from distutils.dep_util import newer namespace
162 if newer(file, pyxfilename):
  /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/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py 1419 def newer(self): member in class:Frame
    [all...]
  /external/clang/test/CXX/drs/
dr3xx.cpp 1032 namespace newer { namespace in namespace:dr387
    [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/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 

Completed in 475 milliseconds

1 2