/external/apache-http/src/org/apache/commons/codec/language/ |
Soundex.java | 79 * T-SQL DIFFERENCE </a> 85 public int difference(String s1, String s2) throws EncoderException { method in class:Soundex 86 return SoundexUtils.difference(this, s1, s2);
|
/external/ceres-solver/internal/ceres/ |
canonical_views_clustering.cc | 120 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_org/chrome/browser/profile_resetter/ |
automatic_profile_resetter_delegate.cc | 386 int difference = local 388 if (difference) { 391 SerializeSettingsReport(*old_settings_snapshot, difference);
|
/external/chromium_org/chrome/browser/sync/ |
backend_migrator_unittest.cc | 126 syncer::ModelTypeSet to_migrate, difference; local 128 difference.Put(syncer::AUTOFILL); 129 difference.Put(syncer::BOOKMARKS); 144 SendConfigureDone(DataTypeManager::OK, difference); 157 syncer::ModelTypeSet to_migrate, difference; local 159 difference.Put(syncer::AUTOFILL); 160 difference.Put(syncer::BOOKMARKS); 172 SendConfigureDone(DataTypeManager::OK, difference); 225 Difference(preferred_types(), to_migrate1); 246 syncer::ModelTypeSet difference; local 271 syncer::ModelTypeSet to_migrate, difference; local [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
filesystem_test.cc | 400 double difference = byte_count[i] - expected_count; local 401 chi_squared += difference * difference / expected_count;
|
/external/chromium_org/remoting/codec/ |
video_decoder_vpx.cc | 160 webrtc::DesktopRegion difference = updated_region_; local 161 difference.Subtract(desktop_shape_); 162 updated_region_.Subtract(difference); 163 transparent_region_.AddRegion(difference); 346 webrtc::DesktopRegion difference = *new_desktop_shape; local 347 difference.Subtract(desktop_shape_); 348 updated_region_.AddRegion(difference);
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
bignum.cc | 228 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; local 229 bigits_[i + offset] = difference & kBigitMask; 230 borrow = difference >> (kChunkSize - 1); 233 Chunk difference = bigits_[i + offset] - borrow; local 234 bigits_[i + offset] = difference & kBigitMask; 235 borrow = difference >> (kChunkSize - 1); 752 Chunk difference = bigits_[i + exponent_diff] - ((uint32_t)remove & kBigitMask); 753 bigits_[i + exponent_diff] = difference & kBigitMask; 754 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) + 759 Chunk difference = bigits_[i] - borrow [all...] |
/external/chromium_org/v8/src/ |
bignum.cc | 205 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 = bigits_[i] - borrow [all...] |
/external/chromium_org/ash/touch/ |
touch_uma.cc | 223 base::TimeDelta difference = event.time_stamp() - last_touch_down_time_; local 224 if (difference > base::TimeDelta::FromMilliseconds(250)) {
|
/external/chromium_org/base/time/ |
time_unittest.cc | 707 TimeDelta difference = delta - delta_thread; local 708 EXPECT_GE(difference.InMicroseconds(), 9000);
|
/external/chromium_org/chrome/browser/ |
about_flags_unittest.cc | 433 std::set<CommandLine::StringType> difference; local 435 new_command_line, command_line, &difference)); 436 EXPECT_EQ(1U, difference.size()); 437 EXPECT_EQ(1U, difference.count(CreateSwitch(kDoubleDash + kSwitch1))); 445 std::set<CommandLine::StringType> difference; local 447 new_command_line, command_line, &difference)); 448 EXPECT_TRUE(difference.empty()); 461 std::set<CommandLine::StringType> difference; local 463 new_command_line, another_command_line, &difference)); 464 EXPECT_EQ(2U, difference.size()) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
permissions_updater_unittest.cc | 77 std::set<URLPattern> difference = base::STLSetUnion<std::set<URLPattern> >( local 82 for (std::set<URLPattern>::const_iterator iter = difference.begin(); 83 iter != difference.end();
|
/external/chromium_org/chrome/browser/history/ |
visit_filter.cc | 175 base::TimeDelta difference; local 177 difference = time_of_day2 - time_of_day1; 179 difference = time_of_day1 - time_of_day2; 181 // If the difference is more than 12 hours, we'll get closer by 'wrapping' 183 if (difference > base::TimeDelta::FromHours(12)) 184 difference = base::TimeDelta::FromHours(24) - difference; 186 return difference;
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_context_impl.cc | 494 int64 difference = current_disk_usage - former_disk_usage; local 495 if (difference) { 503 difference);
|
/external/chromium_org/courgette/ |
ensemble_create.cc | 122 // This is a quick hack to avoid the problem by prohibiting a big difference in 177 // more nuanced, returning early if the measured difference is greater than 196 size_t difference = difference_estimator.Measure(old_base, new_subject); local 200 << " --> " << difference 203 if (difference == 0) { 210 if (difference < best_difference) { 211 best_difference = difference;
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
Timer.cpp | 178 // We need to look at the difference of the insertion orders instead of comparing the two 180 unsigned difference = a->m_heapInsertionOrder - b->m_heapInsertionOrder; local 181 return difference < std::numeric_limits<unsigned>::max() / 2;
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoderTest.cpp | 234 const int difference = abs(pixelA[channel] - pixelB[channel]); local 235 if (difference > maxDifference) 236 maxDifference = difference;
|
/external/deqp/framework/common/ |
tcuImageCompare.cpp | 213 float difference = fuzzyCompare(params, reference, result, errorMask.getAccess()); local 214 bool isOk = difference <= threshold; 228 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMessage; 311 * \brief Per-pixel difference accuracy metric 346 << TestLog::Image("DiffMask", "Difference", diffMask) 360 log << TestLog::Integer("DiffSum", "Squared difference sum", "", QP_KEY_TAG_NONE, squaredSum) 367 * \brief Per-pixel difference accuracy metric 395 * difference between floating-point values and thus this function can 406 * \param threshold Maximum allowed difference [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Maps.java | 301 * 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 between the two map 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/llvm/lib/IR/ |
ConstantRange.cpp | 252 ConstantRange ConstantRange::difference(const ConstantRange &CR) const { function in class:ConstantRange
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
qc_main.c | 95 Word16 difference; local 99 difference = calcFrameLen( bitRate, 102 *paddingRest = *paddingRest - difference;
|
/ndk/sources/host-tools/make-3.81/ |
implicit.c | 370 unsigned int difference = lastslash - filename + 1; 371 if (difference > stemlen) 373 stemlen -= difference; 374 stem += difference; 368 unsigned int difference = lastslash - filename + 1; local
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_weakrefset.py | 126 def difference(self, other): member in class:WeakSet 130 __sub__ = difference
|
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/ |
_weakrefset.py | 126 def difference(self, other): member in class:WeakSet 130 __sub__ = difference
|