HomeSort by relevance Sort by last modified time
    Searched defs:difference (Results 51 - 75 of 157) sorted by null

1 23 4 5 6 7

  /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 250 // entries to see if there's any difference.
263 MergeResult difference = local
265 if (difference & DIFF_UPDATE_NODE) {
292 if (difference & DIFF_LOCAL_ROW_CHANGED) {
296 if (difference & DIFF_LOCAL_VISITS_ADDED) {
605 // No difference.
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_message_bubble_view.cc 195 base::string16 difference = base::IntToString16(i - kMaxExtensionsToShow); local
197 delegate->GetOverflowText(difference));
  /external/chromium_org/skia/ext/
convolver_unittest.cc 119 // Compute the expected results and check, allowing for a small difference
130 int difference = value - output[(y * dest_width + x) * 4 + channel]; local
131 EXPECT_TRUE(difference >= -1 || difference <= 1);
276 // Most bots use debug version, and there are great difference between
278 // difference was 150%-200% depend on alpha channel presence;
279 // while in debug version speed difference was 96%-120%.
  /external/chromium_org/third_party/bintrees/bintrees/
treemixin.py 54 * __sub__(other) <==> T - other, difference
129 * difference(t1, t2, ...) -> Tree with keys in T but not any of t1, t2, ...
185 return self.difference(other)
608 def difference(self, *trees): member in class:TreeMixin
609 """ x.difference(t1, t2, ...) -> Tree with keys in T but not any of t1,
613 rkeys = thiskeys.difference(*_build_sets(trees))
  /external/chromium_org/third_party/icu/source/i18n/
nfrs.cpp 498 int64_t difference = util64_fromDouble(uprv_maxMantissa()); local
521 if (tempDifference < difference) {
522 difference = tempDifference;
524 if (difference == 0) {
  /external/guava/guava/src/com/google/common/collect/
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/icu/icu4c/source/i18n/
nfrs.cpp 523 int64_t difference = util64_fromDouble(uprv_maxMantissa()); local
546 if (tempDifference < difference) {
547 difference = tempDifference;
549 if (difference == 0) {
  /external/aac/libAACenc/src/
qc_main.cpp 215 INT difference; local
219 difference = FDKaacEnc_calcFrameLen( bitRate,
223 *paddingRest-=difference;
540 * In hyperframing mode the difference between grantedDynBits and usedDynBits of all sub frames
    [all...]
  /external/chromium_org/ash/touch/
touch_uma.cc 388 base::TimeDelta difference = event.time_stamp() - last_touch_down_time_; local
389 if (difference > base::TimeDelta::FromMilliseconds(250)) {
  /external/chromium_org/chrome/installer/gcapi/
gcapi.cc 611 TimeDelta difference = Time::NowFromSystemTime() - last_run_time; local
615 int new_days_since_last_run = difference.InDays();
  /external/chromium_org/net/base/
mime_util.cc 623 std::vector<std::string> difference = local
626 return difference.size() == 0;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 345 int difference; local
347 difference = minYear - year;
349 difference = maxYear - year;
353 int quotient = difference / 28;
373 // Get the difference between this time zone and UTC on the 1st of January of this year.
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocket_unittest.cc 158 int difference = ntohl(post_ipv4.s_addr) - ntohl(pre_ipv4.s_addr); local
159 EXPECT_EQ(1, difference);
    [all...]
  /external/chromium_org/third_party/webrtc/base/
virtualsocket_unittest.cc 141 int difference = ntohl(post_ipv4.s_addr) - ntohl(pre_ipv4.s_addr); local
142 EXPECT_EQ(1, difference);
    [all...]
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 452 inline float difference (float src, float dst) { return de::abs(dst-src); } function in namespace:rr::advblend
627 case BLENDEQUATION_ADVANCED_DIFFERENCE: SAMPLE_REGISTER_ADV_BLEND(difference); break;
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 411 float difference = vector1[i] - vector2[i]; local
412 squaredDistance += difference * difference;
  /frameworks/base/core/java/android/widget/
TableLayout.java 519 final int difference = newLength - length; local
522 if (difference > 0) {
528 mMaxWidths, oldMaxWidths.length, difference);
534 // difference will be negative
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 665 // CSS properties that create a visual difference only when applied to text.
686 RefPtrWillBeRawPtr<MutableStylePropertySet> difference = getPropertiesNotIn(m_mutableStyle.get(), styleToCompare); local
689 difference->removePropertiesInSet(textOnlyProperties, WTF_ARRAY_LENGTH(textOnlyProperties));
691 if (difference->isEmpty())
693 if (difference->propertyCount() == m_mutableStyle->propertyCount())
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 338 MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, EMPTY);
348 MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, SINGLETON);
358 MapDifference<Integer, Integer> diff = Maps.difference(SINGLETON, EMPTY);
373 MapDifference<Integer, String> diff1 = Maps.difference(left, right);
385 MapDifference<Integer, String> diff2 = Maps.difference(right, left);
405 MapDifference<Integer, String> original = Maps.difference(left, right);
406 MapDifference<Integer, String> same = Maps.difference(left, right);
407 MapDifference<Integer, String> reverse = Maps.difference(right, left);
408 MapDifference<Integer, String> diff2 = Maps.difference(left, right2);
432 MapDifference<Integer, String> diff1 = Maps.difference(left, right
465 MapDifference<Integer, Integer> difference = Maps.difference(map, EMPTY); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackStateAnimator.java 276 int difference = Math.abs(ownIndex - changingIndex); local
277 difference = Math.max(0, Math.min(DELAY_EFFECT_MAX_INDEX_DIFFERENCE,
278 difference - 1));
279 long delay = (DELAY_EFFECT_MAX_INDEX_DIFFERENCE - difference) * delayPerElement;
298 int difference = Math.abs(ownIndex - nextIndex); local
299 difference = Math.max(0, Math.min(DELAY_EFFECT_MAX_INDEX_DIFFERENCE,
300 difference - 1));
301 long delay = difference * delayPerElement;
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 311 int difference = WifiManager.compareSignalLevel(other.mRssi, mRssi); local
312 if (difference != 0) {
313 return difference;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 1347 LayoutSize difference = (currentSize + newOffset - adjustedOldOffset).expandedTo(minimumSize) - currentSize; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
kernel-jbd.h 844 int difference = (x - y); local
845 return (difference > 0);
850 int difference = (x - y); local
851 return (difference >= 0);
  /external/valgrind/main/VEX/priv/
host_s390_isel.c 774 S390_DFP_ROUND_ZERO_5 or S390_DFP_ROUND_ZERO_9. The difference between
3547 ULong new_value, old_value, difference; local
    [all...]

Completed in 1046 milliseconds

1 23 4 5 6 7