/external/chromium/chrome/common/ |
thumbnail_score_unittest.cc | 49 // This one has a lot of redirects but a better score. It should still be 57 ThumbnailScore score; local 58 // By default, the score is 1.0, meaning very boring, thus we should 60 EXPECT_DOUBLE_EQ(1.0, score.boring_score); 61 EXPECT_TRUE(score.ShouldConsiderUpdating()); 64 score.boring_score = 0.0; 65 EXPECT_TRUE(score.ShouldConsiderUpdating()); 68 score.good_clipping = true; 69 EXPECT_TRUE(score.ShouldConsiderUpdating()); 72 score.at_top = true [all...] |
/external/chromium_org/chrome/common/ |
thumbnail_score_unittest.cc | 49 // This one has a lot of redirects but a better score. It should still be 57 ThumbnailScore score; local 58 // By default, the score is low, thus we should generate a new thumbnail. 59 EXPECT_TRUE(score.ShouldConsiderUpdating()); 62 score.boring_score = 0.0; 63 EXPECT_TRUE(score.ShouldConsiderUpdating()); 66 score.good_clipping = true; 67 EXPECT_TRUE(score.ShouldConsiderUpdating()); 70 score.at_top = true; 71 EXPECT_TRUE(score.ShouldConsiderUpdating()) [all...] |
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
test_root.rs | 14 float score;
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
test_root.rs | 14 float score;
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
test_root.rs | 14 float score;
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
test_root.rs | 14 float score;
|
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
cts_report.js | 21 * @param score resulting score 22 * @param isFinal true if this is the last / final score 24 function CtsReport(msg, score, isFinal) 28 "&score=" + score + "&message=" + msg, false);
|
/external/chromium_org/chrome/browser/history/ |
select_favicon_frames.h | 19 // Score which is smaller than the minimum score returned by 27 // If score is non-NULL, it receives a score between 0 (bad) and 1 (good) 30 // The score is arbitrary, but it's best for exact size matches, 36 float* score); 41 // of the largest size is returned. If score is non-NULL, it receives a score 44 // |scale_factors|. The score is arbitrary, but it's best for exact size 52 float* score); [all...] |
scored_history_match.h | 21 // An HistoryMatch that has a score as well as metrics defining where in the 26 // Creates a new match with a raw score calculated for the history 29 // terms in |terms_vector| occur in |row|. If so, calculates a raw score. 30 // This raw score allows the matches to be ordered and can be used to 31 // influence the final score calculated by the client of this index. 32 // If the row does not qualify the raw score will be 0. |bookmark_service| is 46 // Compares two matches by score. Functor supporting URLIndexPrivateData's 52 // Return a topicality score based on how many matches appear in the 70 // Returns a recency score based on |last_visit_days_ago|, which is 78 // Examines the first kMaxVisitsToScore and return a score (higher i [all...] |
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/ |
RagdollPreset.java | 40 int score = lexicon.get(key).getScore(boneName); local 41 if (score > resultScore) { 42 resultScore = score; 51 logger.log(Level.INFO, "Found matching joint for bone {0} : {1} with score {2}", new Object[]{boneName, resultName, resultScore}); 56 logger.log(Level.INFO, "Best match found is {0} with score {1}", new Object[]{resultName, resultScore}); 91 public void addSynonym(String word, int score) { 92 put(word.toLowerCase(), score); local 96 int score = 0; local 100 score += get(key); 103 return score; [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
ContactMatcher.java | 34 // Best possible match score 37 // Suggest to aggregate contacts if their match score is equal or greater than this threshold 40 // Automatically aggregate contacts if their match score is equal or greater than this threshold 43 // Automatically aggregate contacts if the match score is equal or greater than this threshold 47 // Score for missing data (as opposed to present data but a bad match) 50 // Score for matching phone numbers 53 // Score for matching email addresses 56 // Score for matching nickname 81 * "full name", the score may be 99. If we are looking for a "nickname" but 82 * find "first name", the score may be 50 (see specific scores define 222 int score = (mPrimaryScore > mSecondaryScore ? mPrimaryScore : mSecondaryScore); local 316 int score; local 376 MatchScore score = mScoreList.get(i); local 403 MatchScore score = mScoreList.get(i); local [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
ImageGoodnessFilter.java | 16 // Takes sharpness score, rates the image good if above 10, bad otherwise 88 .addOutputPort("score", Signature.PORT_OPTIONAL, floatT) 138 float score = 0.0f; local 139 score = computePictureScore(vectorAccel, sharpness, underExposure, overExposure, 141 if (scoreMean == 0) scoreMean = score; 142 else scoreMean = scoreMean * (1 - DECAY) + score * DECAY; 148 colorfulness, contrastRating, score); 156 if (score >= GREAT_SCORE) { 158 } else if (score >= GOOD_SCORE) { 160 } else if (score >= OK_SCORE) 229 float score = 0.0f; local [all...] |
/frameworks/base/core/java/android/gesture/ |
InstanceLearner.java | 31 double score1 = object1.score; 32 double score2 = object2.score; 66 Double score = label2score.get(sample.label); local 67 if (score == null || weight > score) { 74 double score = label2score.get(name); local 75 // sum += score; 76 predictions.add(new Prediction(name, score)); 81 // prediction.score /= sum;
|
/external/chromium_org/chrome/browser/extensions/api/discovery/ |
suggested_link.h | 20 const std::string& url_image, double score); 26 double score() const { return score_; } function in class:extensions::SuggestedLink 34 // this suggested link. A link with score 1 is twice as likely to be presented 35 // than one with score 0.5. Use a score of 1 if no information is available on
|
discovery_api.cc | 18 const char kInvalidScore[] = "Invalid score, must be between 0 and 1."; 28 double score = 1.0; local 29 if (params->details.score != NULL) { 30 score = *params->details.score; 31 if (score < 0.0 || score > 1.0) { 48 score));
|
suggested_link.cc | 12 double score) 16 score_(score) {}
|
/external/srec/doc/logs/srec/ |
out_SHIP_change_sample_rate2.txt | 25 RAW SCORE[ 0] : '44626' 30 RAW SCORE[ 1] : '44790' 35 RAW SCORE[ 2] : '44836' 40 RAW SCORE[ 3] : '44848' 45 RAW SCORE[ 4] : '44861' 50 RAW SCORE[ 5] : '44863' 55 RAW SCORE[ 6] : '44865' 60 RAW SCORE[ 7] : '44892' 65 RAW SCORE[ 8] : '44893' 70 RAW SCORE[ 9] : '44905 [all...] |
/external/chromium_org/chrome/browser/thumbnails/ |
thumbnailing_context.cc | 17 score.at_top = 19 score.load_completed = !web_contents->IsLoading() && !load_interrupted;
|
/packages/inputmethods/PinyinIME/jni/include/ |
ngram.h | 32 // The maximum score of a lemma item. 37 // After this process, an item with a lower score has a higher frequency. 56 // Score compensation for system dictionary lemmas. 58 // we use this value to normalize the score. 81 // Convert a probability to score. Actually, the score will be limited to 83 // value of the score. 84 // After the conversion, a lower score indicates a higher probability of the
|
/external/chromium_org/base/process/ |
memory_stubs.cc | 15 bool AdjustOOMScore(ProcessId process, int score) {
|
/external/chromium_org/chrome/common/extensions/api/ |
experimental_discovery.idl | 19 // A score indicating how interesting that suggestion is. The value must be 20 // between 0 and 1. A suggestion with score 1 is twice as likely to be 21 // displayed than one with a score of 0.5. Defaults to 1. 23 double? score;
|
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
autocorrection_threshold_utils.cpp | 45 // score = (int)((original score) * SUGGEST_INTERFACE_OUTPUT_SCALE) 46 // Undo the scaling here to recover the original score. 47 // normalizedScore = ((float)score) / SUGGEST_INTERFACE_OUTPUT_SCALE 50 // original score 53 // * (individual word's score which defined in the unigram dictionary, 54 // and this score is defined in range [0, 255].) 60 // capitalization, then treat it as if the score was 255. 63 // So, maximum original score is powf(2, min(before.length(), after.length())) * 255 * 2 * 1.2 67 // So, we can normalize original score by dividing powf(2, min(b.l(),a.l())) * 255 * 2 [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/ |
dromaeorunner.js | 41 var score = message.status.score; 42 if (score) 43 DRT.log(score.name + ': [' + score.times.join(', ') + ']');
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FilePathScoreFunction.js | 70 score: function(data, matchIndexes) 80 var score = this._score; 86 var skipCharScore = j === 0 ? 0 : score[i * m + j - 1]; 87 var prevCharScore = i === 0 || j === 0 ? 0 : score[(i - 1) * m + j - 1]; 92 score[i * m + j] = (prevCharScore + pickCharScore); 95 score[i * m + j] = skipCharScore; 101 return score[n * m - 1]; 153 var score = 10; 155 score += 4; 157 score += 2 [all...] |
/frameworks/base/core/java/android/service/notification/ |
StatusBarNotification.java | 40 private final int score; field in class:StatusBarNotification 43 public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score, 45 this(pkg, null, id, tag, uid, initialPid, score, notification, user); 50 int initialPid, int score, Notification notification, UserHandle user) { 51 this(pkg, basePkg, id, tag, uid, initialPid, score, notification, user, 56 int initialPid, int score, Notification notification, UserHandle user, 67 this.score = score; 86 this.score = in.readInt(); 105 out.writeInt(this.score); [all...] |