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

1 2 3 4

  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
AgeFileFilter.java 26 * Filters files based on a cutoff time, can filter either newer
50 /** Whether the files accepted will be older or newer. */
69 * are accepted, else newer ones (after the cutoff).
92 * are accepted, else newer ones (after the cutoff).
117 * are accepted, else newer ones (after the cutoff).
128 * If last modification time equals cutoff and newer files are required,
137 boolean newer = FileUtils.isFileNewer(file, cutoff);
138 return acceptOlder ? !newer : newer;
  /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();
  /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'))
  /dalvik/hit/src/com/android/hit/
Queries.java 209 public static final Instance[] newInstances(State older, State newer) {
212 for (Heap newHeap: newer.mHeaps.values()) {
  /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/linux-tools-perf/
builtin-diff.c 133 static void hists__match(struct hists *older, struct hists *newer)
137 for (nd = rb_first(&newer->entries); nd; nd = rb_next(nd)) {
  /external/chromium_org/tools/vim/
ninja-build.vim 45 """Default to the configuration with either a newer build.ninja or a newer
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageOrderManagerTest.java 47 private static void assertCanMove(MessageOrderManager mom, boolean newer, boolean older) {
49 Assert.assertEquals(newer, mom.canMoveToNewer());
94 MyCursor cursor = new MyCursor(11, 22, 33, 44); // Newer to older
117 // Try to move to newer, but no newer messages
178 MyCursor cursor = new MyCursor(11, 22, 33, 44); // Newer to older
193 MyCursor cursor = new MyCursor(11, 22, 33, 44); // Newer to older
  /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...]
  /build/tools/releasetools/
edify_generator.py 89 'abort("Can\'t install this package (%s) over newer '
  /external/openssh/contrib/suse/
openssh.spec 28 # (Build[ing] Prereq[uisites] only work for RPM 2.95 and newer.)
83 - Overhaul to deal with newer versions of SuSE and OpenSSH
103 - Added building prerequisites (works in RPM 3.0 and newer)
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.h 12 #error This file was generated by a newer version of protoc which is
19 #error regenerate this file with a newer version of protoc.
  /external/chromium_org/chrome/browser/resources/history/
history.css 597 html[dir='ltr'] #newer-button::before,
604 html[dir='rtl'] #newer-button::after {

Completed in 298 milliseconds

1 2 3 4