HomeSort by relevance Sort by last modified time
    Searched refs:newer (Results 1 - 25 of 88) 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'))
  /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);
  /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/chromium_org/tools/vim/
ninja-build.vim 45 """Default to the configuration with either a newer build.ninja or a newer
  /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 113 'abort("Can\'t install this package (%s) over newer '
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteStatement.cpp 38 #error SQLite version 3.6.16 or newer is required
  /external/libunwind/doc/
libunwind-setjmp.tex 47 correct unwind information. On newer platforms, this is rarely an
  /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 559 html[dir='ltr'] #newer-button::before,
566 html[dir='rtl'] #newer-button::after {

Completed in 1876 milliseconds

1 2 3 4