/external/chromium_org/ash/touch/ |
touch_uma.cc | 350 base::TimeDelta difference = event.time_stamp() - last_touch_down_time_; local 351 if (difference > base::TimeDelta::FromMilliseconds(250)) {
|
/external/chromium_org/v8/test/mjsunit/ |
math-exp-precision.js | 45 assertTrue(relative_diff < 1e-12, "relative difference of " + relative_diff +
|
array-store-and-grow.js | 190 // Verify that a grow store will deoptimize if the max gap (difference between
|
function-prototype.js | 94 // that this is in difference to ES3, which specified that function instances
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sets.py | 220 """Return the symmetric difference of two sets as a new set. 229 """Return the symmetric difference of two sets as a new set. 248 """Return the difference of two sets as a new Set. 254 return self.difference(other) 256 def difference(self, other): member in class:BaseSet 257 """Return the difference of two sets as a new Set. 452 """Update a set with the symmetric difference of itself and another.""" 458 """Update a set with the symmetric difference of itself and another."""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sets.py | 220 """Return the symmetric difference of two sets as a new set. 229 """Return the symmetric difference of two sets as a new set. 248 """Return the difference of two sets as a new Set. 254 return self.difference(other) 256 def difference(self, other): member in class:BaseSet 257 """Return the difference of two sets as a new Set. 452 """Update a set with the symmetric difference of itself and another.""" 458 """Update a set with the symmetric difference of itself and another."""
|
/external/chromium_org/chrome/browser/sync/glue/ |
typed_url_model_associator.cc | 243 // entries to see if there's any difference. 256 MergeResult difference = local 258 if (difference & DIFF_UPDATE_NODE) { 285 if (difference & DIFF_LOCAL_ROW_CHANGED) { 289 if (difference & DIFF_LOCAL_VISITS_ADDED) { 598 // No difference.
|
/external/chromium_org/net/base/ |
mime_util.cc | 545 std::vector<std::string> difference; local 548 std::inserter(difference, difference.begin())); 550 return difference.size() == 0; [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
DateMath.cpp | 344 int difference; local 346 difference = minYear - year; 348 difference = maxYear - year; 352 int quotient = difference / 28; 372 // Get the difference between this time zone and UTC on the 1st of January of this year. [all...] |
/external/chromium_org/tools/site_compare/commands/ |
maskmaker.py | 195 # Calculate the difference between the new scrape and the baseline, 198 diff = ImageChops.multiply(ImageChops.difference(scrape, baseline), 201 # If the difference is none, there's nothing to update 208 # convert the difference to black and white, then change all
|
/external/grub/stage2/ |
tparm.c | 460 * We'll have to assume that the caller knows the difference, since
|
/external/openfst/src/include/fst/script/ |
fstscript.h | 40 #include <fst/script/difference.h> 100 REGISTER_FST_OPERATION(Difference, Arc, DifferenceArgs1); 101 REGISTER_FST_OPERATION(Difference, Arc, DifferenceArgs2);
|
/external/srec/srec/ca/ |
cnfd_scr.c | 46 #error allocate difference in simapi.h
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.codec_1.3.0.v20100518-1140.jar | |
/external/chromium_org/chrome/installer/gcapi/ |
gcapi.cc | 587 TimeDelta difference = Time::NowFromSystemTime() - last_run_time; local 591 int new_days_since_last_run = difference.InDays();
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
main.py | 201 serial_tests = list(set(serial_tests).difference(set(parallel_tests)))
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
loopfilter_v6.asm | 448 ;roughly 3/7th difference across boundary 483 ;roughly 2/7th difference across boundary 524 ;roughly 1/7th difference across boundary [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
main.py | 234 fixer_names = requested.difference(unwanted_fixes)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
main.py | 234 fixer_names = requested.difference(unwanted_fixes)
|
/external/chromium/webkit/glue/ |
webmediaplayer_impl.cc | 73 float difference = integer - microseconds; local 75 // Round down if difference is large enough. 76 if ((microseconds > 0 && difference > 0.5f) || 77 (microseconds <= 0 && difference >= 0.5f)) {
|
/external/guava/guava/src/com/google/common/collect/ |
Sets.java | 587 final Set<? extends E> set2minus1 = difference(set2, set1); 668 * Returns an unmodifiable <b>view</b> of the difference of two sets. The 678 public static <E> SetView<E> difference( 701 * Returns an unmodifiable <b>view</b> of the symmetric difference of two 718 return difference(union(set1, set2), intersection(set1, set2)); [all...] |
Maps.java | 304 * Computes the difference between two maps. This difference is an immutable 317 * @return the difference between the two maps 320 public static <K, V> MapDifference<K, V> difference( method in class:Maps 324 SortedMapDifference<K, V> result = difference(sortedLeft, right); 327 return difference(left, right, Equivalences.equals()); 331 * Computes the difference between two maps. This difference is an immutable 336 * equality, the value on the 'left' is returned in the difference. 346 * @return the difference between the two map 350 public static <K, V> MapDifference<K, V> difference( method in class:Maps 537 public static <K, V> SortedMapDifference<K, V> difference( method in class:Maps [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Sets.java | 575 final Set<? extends E> set2minus1 = difference(set2, set1); 656 * Returns an unmodifiable <b>view</b> of the difference of two sets. The 666 public static <E> SetView<E> difference( 689 * Returns an unmodifiable <b>view</b> of the symmetric difference of two 706 return difference(union(set1, set2), intersection(set1, set2)); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_weakset.py | 128 i = self.s.difference(self.items2) 133 self.assertRaises(TypeError, self.s.difference, [[]]) 136 i = self.s.difference(self.items2)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_weakset.py | 128 i = self.s.difference(self.items2) 133 self.assertRaises(TypeError, self.s.difference, [[]]) 136 i = self.s.difference(self.items2)
|