Searched defs:difference (Results 1 - 25 of 58) sorted by relevance

123

/external/apache-http/src/org/apache/commons/codec/language/
H A DSoundexUtils.java88 static int difference(StringEncoder encoder, String s1, String s2) throws EncoderException { method in class:SoundexUtils
H A DRefinedSoundex.java103 public int difference(String s1, String s2) throws EncoderException { method in class:RefinedSoundex
104 return SoundexUtils.difference(this, s1, s2);
H A DSoundex.java85 public int difference(String s1, String s2) throws EncoderException { method in class:Soundex
86 return SoundexUtils.difference(this, s1, s2);
/external/libchrome/base/
H A Dstl_util_unittest.cc81 std::set<int> difference; local
82 difference.insert(1);
83 difference.insert(2);
84 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a1, a2));
88 std::set<int> difference; local
89 difference.insert(5);
90 difference.insert(6);
91 difference.insert(7);
92 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a2, a1));
96 std::vector<int> difference; local
103 std::vector<int> difference; local
[all...]
H A Dstl_util.h213 // Returns a new ResultType containing the difference of two sorted containers.
218 ResultType difference; local
221 std::inserter(difference, difference.end()));
222 return difference;
/external/webrtc/webrtc/system_wrappers/source/
H A Dstl_util_unittest.cc88 std::set<int> difference; local
89 difference.insert(1);
90 difference.insert(2);
91 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a1, a2));
95 std::set<int> difference; local
96 difference.insert(5);
97 difference.insert(6);
98 difference.insert(7);
99 EXPECT_EQ(difference, STLSetDifference<std::set<int> >(a2, a1));
103 std::vector<int> difference; local
110 std::vector<int> difference; local
[all...]
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample10_unittest.cc87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
/external/protobuf/gtest/samples/
H A Dsample10_unittest.cc87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_TRUE(difference <= 0)
93 << "Leaked " << difference << " unit(s) of Water!";
/external/srtp/crypto/replay/
H A Drdbx.c77 * returns the difference of the guess and the local value. The local
79 * index_advance(&guess, delta), where delta is the difference.
117 * and returns the difference between *guess and *local
143 int difference; local
148 // The return value is the relative difference from local_seq to s.
152 // will end up positive difference and rdbx_check would pass. Hence after
157 difference = s - local_seq - seq_num_max;
160 difference = s - local_seq;
165 difference = seq_num_max - local_seq + s;
167 difference
[all...]
/external/v8/test/mjsunit/
H A Dtop-level-assignments.js88 Calculator.prototype.difference = function() { return this.x - this.y; };
94 assertEquals(10, calc.difference());
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
H A Dsample10_unittest.cc87 int difference = Water::allocated() - initially_allocated_; local
92 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
/external/ceres-solver/internal/ceres/
H A Dcanonical_views_clustering.cc120 const double difference = local
122 if (difference > best_difference) {
123 best_difference = difference;
159 // Computes the difference in the quality score if 'candidate' were
165 double difference = local
179 difference += new_similarity - old_similarity;
184 difference -= options_.size_penalty_weight;
188 difference -= options_.similarity_penalty_weight *
192 return difference;
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
H A Dset.py154 def difference(self, other): member in class:Set
177 return self.difference(other)
/external/libbrillo/brillo/http/
H A Dhttp_connection_curl_unittest.cc134 std::vector<std::string> difference; local
137 std::back_inserter(difference));
138 return difference.empty();
/external/webrtc/webrtc/system_wrappers/include/
H A Dstl_util.h216 // Returns a new ResultType containing the difference of two sorted containers.
221 ResultType difference; local
224 std::inserter(difference, difference.end()));
225 return difference;
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Dintset.py325 difference = _make_function("difference","set", variable in class:IntSet
329 # Symmetric difference.
331 "Symmetric difference of two sets as a new set.",
334 "Symmetric difference of two sets as a new set.",
337 "Symmetric difference of two sets as a new set.",
/external/llvm/lib/IR/
H A DConstantRange.cpp316 ConstantRange ConstantRange::difference(const ConstantRange &CR) const { function in class:ConstantRange
/external/v8/src/
H A Dbignum.cc205 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; local
206 bigits_[i + offset] = difference & kBigitMask;
207 borrow = difference >> (kChunkSize - 1);
210 Chunk difference = bigits_[i + offset] - borrow; local
211 bigits_[i + offset] = difference & kBigitMask;
212 borrow = difference >> (kChunkSize - 1);
736 Chunk difference =
738 bigits_[i + exponent_diff] = difference & kBigitMask;
739 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) +
744 Chunk difference
[all...]
/external/deqp/framework/common/
H A DtcuImageCompare.cpp220 float difference = fuzzyCompare(params, reference, result, errorMask.getAccess()); local
221 bool isOk = difference <= threshold;
235 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMessage;
318 * \brief Per-pixel difference accuracy metric
367 log << TestLog::Integer("DiffSum", "Squared difference sum", "", QP_KEY_TAG_NONE, squaredSum)
374 * \brief Per-pixel difference accuracy metric
471 * difference between floating-point values and thus this function can
483 * \param threshold Maximum allowed difference
531 log << TestLog::Message << "Image comparison failed: max difference
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java548 final Set<? extends E> set2minus1 = difference(set2, set1);
629 * Returns an unmodifiable <b>view</b> of the difference of two sets. The
639 public static <E> SetView<E> difference( method in class:Sets
662 * Returns an unmodifiable <b>view</b> of the symmetric difference of two
679 return difference(union(set1, set2), intersection(set1, set2));
/external/libchrome/base/time/
H A Dtime_unittest.cc664 TimeDelta difference = delta - delta_thread; local
665 EXPECT_GE(difference.InMicroseconds(), 9000);
/external/guava/guava/src/com/google/common/collect/
H A DMultisets.java583 * Returns an unmodifiable view of the difference of two multisets.
598 public static <E> Multiset<E> difference( method in class:Multisets
H A DSets.java584 final Set<? extends E> set2minus1 = difference(set2, set1);
665 * Returns an unmodifiable <b>view</b> of the difference of two sets. The
675 public static <E> SetView<E> difference( method in class:Sets
698 * Returns an unmodifiable <b>view</b> of the symmetric difference of two
715 return difference(union(set1, set2), intersection(set1, set2));
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDateIntervalFormat.java266 // 2 means the only difference between fields are v/z,
267 // -1 means there are other fields difference
269 BestMatchInfo(String bestSkeleton, int difference) { argument
271 bestMatchDistanceInfo = difference;
718 /* ignore the millisecond etc. small fields' difference.
1091 /* the difference between time skeleton and normalizedTimeSkeleton are:
1097 * The difference between date skeleton and normalizedDateSkeleton are:
1285 * The difference between date skeleton and normalizedDateSkeleton are:
1290 ** the difference between time skeleton and normalizedTimeSkeleton are:
1495 // best skeleton, and the difference informatio
[all...]
/external/icu/icu4c/source/i18n/
H A Dnfrs.cpp594 int64_t difference = util64_fromDouble(uprv_maxMantissa()); local
617 if (tempDifference < difference) {
618 difference = tempDifference;
620 if (difference == 0) {

Completed in 1291 milliseconds

123