Home
last modified time | relevance | path

Searched refs:score (Results 1 – 25 of 45) sorted by relevance

12

/external/webkit/WebCore/inspector/front-end/
DAuditRules.js130 result.score = 100 * compressedSize / candidateSize;
179 result.score = 100 - (penalizedResourceCount * this.getValue("ScorePerResource"));
232 result.score = 100 - violationDomains.length * this.getValue("ViolationDomainScore");
298 result.score = 100;
302 result.score = (1 - (pctAboveAvg - minBalanceThreshold)) * 100;
392 result.score = (1 - totalUnusedPercent * pctMultiplier) * 100;
395 result.score = 100;
468 result.score = 100;
517 result.score = 0;
522 result.score -= 50 * severity * failingResources / resourceCount;
[all …]
Daudits.css70 #audit-result-view > .pane img.score {
79 #audit-result-view > .pane img.score.red {
83 #audit-result-view > .pane img.score.green {
/external/v8/benchmarks/
Dbase.js126 var score = BenchmarkSuite.GeometricMean(BenchmarkSuite.scores);
127 var formatted = BenchmarkSuite.FormatScore(100 * score);
179 var score = this.reference / mean;
180 BenchmarkSuite.scores.push(score);
182 var formatted = BenchmarkSuite.FormatScore(100 * score);
Drun.js51 function PrintScore(score) { argument
54 print('Score (version ' + BenchmarkSuite.version + '): ' + score);
/external/srec/doc/logs/uapi/
Drun_robustness1.log31 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:24
50 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:25
69 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:27
88 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:18
107 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:15
126 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:16
145 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:16
164 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:16
183 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:16
202 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:17
[all …]
Drun_robustness2.log34 …gnition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup Andy Wyatt score:67
60 …test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco score:76
86 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:83
112 …gnition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup Andy Wyatt score:79
138 …test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco score:88
164 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:80
190 …gnition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup Andy Wyatt score:81
216 …test.contacts.CLRecognizer:result 1 semantic: Dennis Velasco literal:lookup Dennis Velasco score:85
242 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:90
268 …gnition.test.contacts.CLRecognizer:result 1 semantic: Andy Wyatt literal:lookup Andy Wyatt score:85
[all …]
Drun_contacts.log30 …gnition.test.contacts.CLRecognizer:result 1 semantic: Jen Parker literal:lookup Jen Parker score:24
/external/freetype/src/autofit/
Dafcjk.c213 if ( dist * 8 < seg1->score * 9 && in af_cjk_hints_link_segments()
214 ( dist * 8 < seg1->score * 7 || seg1->len < len ) ) in af_cjk_hints_link_segments()
216 seg1->score = dist; in af_cjk_hints_link_segments()
221 if ( dist * 8 < seg2->score * 9 && in af_cjk_hints_link_segments()
222 ( dist * 8 < seg2->score * 7 || seg2->len < len ) ) in af_cjk_hints_link_segments()
224 seg2->score = dist; in af_cjk_hints_link_segments()
252 if ( seg1->score >= dist_threshold ) in af_cjk_hints_link_segments()
267 if ( seg2->score <= seg1->score || seg1->score * 4 <= seg2->score ) in af_cjk_hints_link_segments()
315 if ( seg2->score < dist_threshold || seg1->score < seg2->score * 4 ) in af_cjk_hints_link_segments()
Dafwarp.c114 AF_WarpScore score = scores[idx]; in af_warper_compute_line_best() local
118 if ( score > warper->best_score || in af_warper_compute_line_best()
119 ( score == warper->best_score && in af_warper_compute_line_best()
122 warper->best_score = score; in af_warper_compute_line_best()
Daflatin.c673 seg0.score = 32000; in af_latin_hints_compute_segments()
916 FT_Pos len, score; in af_latin_hints_link_segments() local
928 score = dist + len_score / len; in af_latin_hints_link_segments()
930 if ( score < seg1->score ) in af_latin_hints_link_segments()
932 seg1->score = score; in af_latin_hints_link_segments()
936 if ( score < seg2->score ) in af_latin_hints_link_segments()
938 seg2->score = score; in af_latin_hints_link_segments()
Daflatin2.c675 seg0.score = 32000; in af_latin2_hints_compute_segments()
969 FT_Pos len, score; in af_latin2_hints_link_segments() local
981 score = dist + len_score / len; in af_latin2_hints_link_segments()
982 if ( score < seg1->score ) in af_latin2_hints_link_segments()
984 seg1->score = score; in af_latin2_hints_link_segments()
988 if ( score < seg2->score ) in af_latin2_hints_link_segments()
990 seg2->score = score; in af_latin2_hints_link_segments()
Dafhints.h137 FT_Pos score; /* used during stem matching */ member
162 FT_Int score; member
/external/srec/srec/ca/
Drec_resu.c43 int CA_FullResultScore(CA_Recog *hRecog, int *score, int do_incsil) in CA_FullResultScore() argument
49 *score = cost; in CA_FullResultScore()
Dann_api.c269 int score; in CA_CompareAnnotations() local
279 score = annotation_compare(testAnnotation->data, refAnnotation->data); in CA_CompareAnnotations()
281 return (score); in CA_CompareAnnotations()
/external/chromium/net/http/
Dhttp_auth.cc48 if (cur && (!best || best->score() < cur->score())) in ChooseBestChallenge()
Dhttp_auth_handler.h42 int score() const { in score() function
/external/chromium/base/
Dprocess_util_linux.cc603 bool AdjustOOMScore(ProcessId process, int score) { in AdjustOOMScore() argument
604 if (score < 0 || score > 15) in AdjustOOMScore()
614 std::string score_str = IntToString(score); in AdjustOOMScore()
Dprocess_util.h110 bool AdjustOOMScore(ProcessId process, int score);
/external/srec/tools/cmd/
Dsrecres2utd.pl102 $score = $2;
103 $token{scores}[$i] = $score;
/external/qemu/
Dblock.c258 int score_max = 0, score; in find_hdev_driver() local
263 score = d->bdrv_probe_device(filename); in find_hdev_driver()
264 if (score > score_max) { in find_hdev_driver()
265 score_max = score; in find_hdev_driver()
276 int ret, score, score_max; in find_image_format() local
298 score = drv1->bdrv_probe(buf, ret, filename); in find_image_format()
299 if (score > score_max) { in find_image_format()
300 score_max = score; in find_image_format()
/external/srec/srec/include/
Dsimapi.h217 long score; member
1996 int score);
2075 int *score,
/external/qemu/distrib/sdl-1.2.12/src/joystick/darwin/
DSDL_sysjoystick.c172 SInt32 score = 0; in HIDCreateOpenDeviceInterface() local
178 kIOCFPlugInInterfaceID, &ppPlugInInterface, &score); in HIDCreateOpenDeviceInterface()
/external/dropbear/
Dconfig.sub279 | score \
1377 score-*)
/external/libffi/
Dconfig.sub279 | score \
1381 score-*)
/external/protobuf/
Dconfig.sub279 | score \
1381 score-*)

12