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

1 2 3 4

  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/
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):
  /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):
  /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'))
  /external/selinux/policycoreutils/scripts/
fixfiles 149 # Find files newer then the passed in date and fix the label
151 newer() { function
225 newer $BOOTTIME
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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):
  /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();

Completed in 1051 milliseconds

1 2 3 4