Searched defs:difference (Results 26 - 45 of 45) sorted by relevance

12

/external/chromium/webkit/glue/
H A Dwebmediaplayer_impl.cc73 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/
H A DMaps.java304 * 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 betwee
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/
H A DMaps.java301 * Computes the difference between two maps. This difference is an immutable
314 * @return the difference between the two maps
317 public static <K, V> MapDifference<K, V> difference( method in class:Maps
321 SortedMapDifference<K, V> result = difference(sortedLeft, right);
324 return difference(left, right, Equivalences.equals());
328 * Computes the difference between two maps. This difference is an immutable
333 * equality, the value on the 'left' is returned in the difference.
343 * @return the difference betwee
347 public static <K, V> MapDifference<K, V> difference( method in class:Maps
534 public static <K, V> SortedMapDifference<K, V> difference( method in class:Maps
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DDateMath.cpp372 int difference; local
374 difference = minYear - year;
376 difference = maxYear - year;
380 int quotient = difference / 28;
398 // Get the difference between this time zone and UTC on the 1st of January of this year.
1099 * Get the difference in milliseconds between this time zone and UTC (GMT)
/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp523 // CSS properties that create a visual difference only when applied to text.
534 RefPtr<CSSMutableStyleDeclaration> difference = getPropertiesNotIn(m_mutableStyle.get(), styleToCompare); local
537 difference->removePropertiesInSet(textOnlyProperties, WTF_ARRAY_LENGTH(textOnlyProperties));
539 if (!difference->length())
541 if (difference->length() == m_mutableStyle->length())
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database.cc368 std::vector<SBPrefix> difference; local
371 std::back_inserter(difference));
372 if (difference.size())
373 UMA_HISTOGRAM_COUNTS_100("SB2.PrefixSetRestoredExcess", difference.size());
376 difference.clear();
379 std::back_inserter(difference));
380 if (difference.size())
382 difference.size());
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-jbd.h843 int difference = (x - y); local
844 return (difference > 0);
849 int difference = (x - y); local
850 return (difference >= 0);
/external/kernel-headers/original/linux/
H A Djbd.h1045 int difference = (x - y); local
1046 return (difference > 0);
1051 int difference = (x - y); local
1052 return (difference >= 0);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebCore/rendering/
H A DRenderBox.cpp2436 marginLogicalLeftValue = availableSpace / 2; // split the difference
2754 marginBeforeValue = availableSpace / 2; // split the difference
2904 int difference = availableSpace - (logicalLeftValue + logicalRightValue); local
2905 if (difference > 0) {
2906 marginLogicalLeftAlias = difference / 2; // split the difference
2907 marginLogicalRightAlias = difference - marginLogicalLeftAlias; // account for odd valued differences
2912 marginLogicalRightAlias = difference; // will be negative
2914 marginLogicalLeftAlias = difference; // will be negative
3064 int difference local
[all...]
H A DRenderLayer.cpp1667 IntSize difference = (currentSize + newOffset - adjustedOldOffset).expandedTo(minimumSize) - currentSize; local
1674 if (resize != RESIZE_VERTICAL && difference.width()) {
1682 style->setProperty(CSSPropertyWidth, String::number(baseWidth + difference.width()) + "px", false, ec);
1685 if (resize != RESIZE_HORIZONTAL && difference.height()) {
1693 style->setProperty(CSSPropertyHeight, String::number(baseHeight + difference.height()) + "px", false, ec);
/external/yaffs2/yaffs2/
H A Dyaffs_guts.c6606 int difference = dev->nFreeChunks - counted; local
6608 if (difference) {
6611 dev->nFreeChunks, counted, difference));
/external/clang/lib/Sema/
H A DSemaOverload.cpp1592 // [...] Any difference in top-level cv-qualification is
2495 // Unable to find a difference, so add no extra info.
4284 // the argument expression. Any difference in top-level
10569 Qualifiers difference = objectQuals - funcQuals; local
10570 difference.removeObjCGCAttr();
10571 difference.removeAddressSpace();
10572 if (difference) {
10573 std::string qualsString = difference.getAsString();

Completed in 758 milliseconds

12