Home
last modified time | relevance | path

Searched refs:hit (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/external/chromium_org/ash/wm/
Dresize_shadow.cc77 void ResizeShadow::ShowForHitTest(int hit) { in ShowForHitTest() argument
79 if (hit == last_hit_test_) in ShowForHitTest()
81 last_hit_test_ = hit; in ShowForHitTest()
84 ShowLayer(image_grid_->top_left_layer(), hit == HTTOPLEFT); in ShowForHitTest()
85 ShowLayer(image_grid_->top_right_layer(), hit == HTTOPRIGHT); in ShowForHitTest()
86 ShowLayer(image_grid_->bottom_left_layer(), hit == HTBOTTOMLEFT); in ShowForHitTest()
87 ShowLayer(image_grid_->bottom_right_layer(), hit == HTBOTTOMRIGHT); in ShowForHitTest()
91 hit == HTTOPLEFT || hit == HTTOP || hit == HTTOPRIGHT); in ShowForHitTest()
93 hit == HTTOPLEFT || hit == HTLEFT || hit == HTBOTTOMLEFT); in ShowForHitTest()
95 hit == HTTOPRIGHT || hit == HTRIGHT || hit == HTBOTTOMRIGHT); in ShowForHitTest()
[all …]
/external/chromium_org/chrome/browser/ui/app_list/search/
Dtokenized_string_match.cc50 gfx::Range hit = gfx::Range::InvalidRange(); in Calculate() local
64 if (!hit.IsValid()) in Calculate()
65 hit.set_start(text_iter.GetArrayPos()); in Calculate()
66 hit.set_end(text_iter.GetArrayPos() + text_iter.GetCharSize()); in Calculate()
71 if (hit.IsValid()) { in Calculate()
72 hits_.push_back(hit); in Calculate()
73 hit = gfx::Range::InvalidRange(); in Calculate()
87 if (hit.IsValid()) in Calculate()
88 hits_.push_back(hit); in Calculate()
Dtokenized_string_match_unittest.cc24 const gfx::Range& hit = *it; in MatchHit() local
25 marked.insert(hit.end(), 1, ']'); in MatchHit()
26 marked.insert(hit.start(), 1, '['); in MatchHit()
/external/chromium-trace/trace-viewer/src/tracing/
Dselection.js149 var hit = this[i];
150 hit.addBoundsToRange(this.bounds_);
178 pushHit: function(hit) { argument
179 this.push_(hit);
187 push_: function(hit) { argument
188 this[this.length_++] = hit;
190 return hit;
252 var hit = this[i];
254 if (hit instanceof hitType.constructor)
255 hits[hitType.pluralName].push_(hit);
[all …]
/external/apache-http/src/org/apache/http/impl/
DDefaultConnectionReuseStrategy.java114 HeaderIterator hit = response.headerIterator(HTTP.CONN_DIRECTIVE); in keepAlive() local
115 if (!hit.hasNext()) in keepAlive()
116 hit = response.headerIterator("Proxy-Connection"); in keepAlive()
141 if (hit.hasNext()) { in keepAlive()
143 TokenIterator ti = createTokenIterator(hit); in keepAlive()
179 protected TokenIterator createTokenIterator(HeaderIterator hit) { in createTokenIterator() argument
180 return new BasicTokenIterator(hit); in createTokenIterator()
/external/chromium-trace/trace-viewer/src/tracing/tracks/
Dthread_track.js56 asyncTrack.decorateHit = function(hit) { argument
70 samplesTrack.decorateHit = function(hit) { argument
73 hit.thread = this.thread_;
83 cpuTrack.decorateHit = function(hit) { argument
84 hit.thread = this.thread_;
97 track.decorateHit = function(hit) { argument
98 hit.thread = this.thread_;
Dslice_track.js201 var hit = selection.addSlice(this, slice);
202 this.decorateHit(hit);
238 addItemNearToProvidedHitToSelection: function(hit, offset, selection) { argument
239 if (!hit.slice)
242 var index = this.indexOfSlice_(hit.slice);
250 var hit = selection.addSlice(this, this.slices_[newIndex]);
251 this.decorateHit(hit);
258 var hit = selection.addSlice(this, this.slices_[i]);
259 this.decorateHit(hit);
Dobject_instance_track.js211 addItemNearToProvidedHitToSelection: function(hit, offset, selection) { argument
212 if (hit instanceof tracing.SelectionObjectSnapshotHit) {
213 var index = this.objectSnapshots_.indexOf(hit.objectSnapshot);
219 } else if (hit instanceof tracing.SelectionObjectInstanceHit) {
220 var index = this.objectInstances_.indexOf(hit.objectInstance);
/external/chromium-trace/trace-viewer/src/tracing/analysis/
Danalyze_selection.js59 objectHits.forEach(function(hit) { argument
64 if (hit instanceof tracing.SelectionObjectSnapshotHit) {
65 var objectSnapshot = hit.objectSnapshot;
71 selection.addObjectSnapshot(hit.track, objectSnapshot);
75 var objectInstance = hit.objectInstance;
87 selection.addObjectInstance(hit.track, objectInstance);
Danalysis_view.js112 tryToProcessSelectionUsingCustomViewer: function(hit) { argument
118 var obj = hit.modelObject;
119 if (hit instanceof tracing.SelectionObjectSnapshotHit) {
123 } else if (hit instanceof tracing.SelectionObjectInstanceHit) {
127 } else if (hit instanceof tracing.SelectionSliceHit) {
/external/chromium_org/third_party/lcov/contrib/galaxy/
Dgenflat.pl849 my $hit;
859 ($found, $hit, $junk) = split(",", $overview{$filename});
861 $rate = $hit * 100 / $found;
903 my $hit = 0;
921 if ($data_count > 0) { $hit++; }
924 return (\%data, $found, $hit);
949 my $hit = 0; # Number of lines with a count > 0
963 if ($data1_count > 0) { $hit++; }
976 if ($result{$line} > 0) { $hit++; }
979 return (\%result, $found, $hit);
[all …]
/external/linux-tools-perf/util/
Dcallchain.c53 if (rnode->hit < chain->hit) in rb_insert_callchain()
84 if (node->hit && node->hit >= min_hit) in __sort_chain_flat()
242 new->hit = period; in add_child()
272 new->hit = parent->hit; in split_add_child()
280 parent->hit = 0; in split_add_child()
284 parent->hit = period; in split_add_child()
369 root->hit += period; in append_chain()
413 if (src->hit) { in merge_chain_branch()
415 append_chain_children(dst, cursor, src->hit); in merge_chain_branch()
Dcallchain.h32 u64 hit; member
87 root->node.hit = 0; in callchain_init()
94 return node->hit + node->children_hit; in callchain_cumul_hits()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
DBresenhamTerrainPicker.java103 Triangle hit = new Triangle(); in getTerrainIntersection() local
104 checkTriangles(loc.x, loc.y, workRay, intersection, patch, hit); in getTerrainIntersection()
108 cr.setContactNormal(hit.getNormal()); in getTerrainIntersection()
120 Triangle hit = new Triangle(); in getTerrainIntersection() local
121 if (checkTriangles(loc.x, loc.y, workRay, intersection, patch, hit)) { in getTerrainIntersection()
127 cr.setContactNormal(hit.getNormal()); in getTerrainIntersection()
149 if (checkTriangles(loc.x + dx, loc.y + dz, workRay, intersection, patch, hit)) { in getTerrainIntersection()
155 cr.setContactNormal(hit.getNormal()); in getTerrainIntersection()
/external/oprofile/events/i386/p4-ht/
Dunit_masks15 0x01 ITLB hit
17 0x04 uncacheable ITLB hit
36 0x01 read 2nd level cache hit shared
37 0x02 read 2nd level cache hit exclusive
38 0x04 read 2nd level cache hit modified
39 0x08 read 3rd level cache hit shared
40 0x10 read 3rd level cache hit exclusive
41 0x20 read 3rd level cache hit modified
/external/chromium_org/third_party/lcov/bin/
Dgenhtml624 my ($found, $hit) = @_;
629 return int($hit * 1000 / $found) * 10 + 2 - (1 / $found);
642 my ($found, $hit, $name_sn, $name_pl) = @_;
647 return rate($hit, $found, "% ($hit of $found $name)");
1672 my $hit = 0; # Number of lines with a count > 0
1686 if ($data1_count > 0) { $hit++; }
1699 if ($result{$line} > 0) { $hit++; }
1702 return (\%result, $found, $hit);
2460 my $hit = $_[2];
2470 write_header(*HTML_HANDLE, 3, "", "", $found, $hit, $fn_found,
[all …]
/external/linux-tools-perf/
Dbuiltin-kmem.c47 u32 hit; member
139 data->hit++; in insert_alloc_stat()
148 data->hit = 1; in insert_alloc_stat()
179 data->hit++; in insert_caller_stat()
188 data->hit = 1; in insert_caller_stat()
389 (unsigned long)data->bytes_alloc / data->hit, in __print_result()
391 (unsigned long)data->bytes_req / data->hit, in __print_result()
392 (unsigned long)data->hit, in __print_result()
548 if (l->hit < r->hit) in hit_cmp()
550 else if (l->hit > r->hit) in hit_cmp()
/external/chromium-trace/trace-viewer/src/ui/
Dfilter_control.css12 .filter-control .hit-count-label {
41 .filter-control input + .hit-count-label {
45 .filter-control input:focus + .hit-count-label {
/external/chromium/chrome/browser/accessibility/
Dbrowser_accessibility_mac_unittest.mm83 // Standard hit test.
91 // Test doing a hit test on the edge of a child.
99 // This will test a hit test with invalid coordinates. It is assumed that
100 // the hit test has been narrowed down to this object or one of its children
101 // so it should return itself since it has no better hit result.
/external/oprofile/events/x86-64/family10/
Dunit_masks79 0x01 DCT0 Page hit
82 0x08 DCT1 Page hit
112 0x02 Probe hit clean
113 0x04 Probe hit dirty without memory cancel
114 0x08 Probe hit dirty with memory cancel
135 0x01 GART aperture hit on access from CPU
136 0x02 GART aperture hit on access from I/O
138 0x08 GART/DEV request hit table walk in progress
139 0x10 DEV hit
194 0x01 L2 4K TLB hit
[all …]
/external/wpa_supplicant_8/src/utils/
Dradiotap.c208 int hit = 0; in ieee80211_radiotap_iterator_next() local
248 hit = 1; in ieee80211_radiotap_iterator_next()
281 if (hit) in ieee80211_radiotap_iterator_next()
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
DTerrainTestCollision.java262 CollisionResult hit = results.getClosestCollision();
266 Vector2f loc = new Vector2f(hit.getContactPoint().x, hit.getContactPoint().z);
268 …System.out.println("collide " + hit.getContactPoint() + ", height: " + height + ", distance: " + h…
269 …collisionMarker.setLocalTranslation(new Vector3f(hit.getContactPoint().x, height, hit.getContactPo…
/external/oprofile/events/i386/p4/
Dunit_masks15 0x01 ITLB hit
17 0x04 uncacheable ITLB hit
36 0x01 read 2nd level cache hit shared
37 0x02 read 2nd level cache hit exclusive
38 0x04 read 2nd level cache hit modified
39 0x08 read 3rd level cache hit shared
40 0x10 read 3rd level cache hit exclusive
41 0x20 read 3rd level cache hit modified
/external/icu4c/tools/tzcode/
Dzdump.c168 static time_t hunt(char * name, time_t lot, time_t hit);
179 static time_t huntICU(char * name, time_t lot, time_t hit, FILE *fp);
673 hunt(char *name, time_t lot, time_t hit) in hunt() argument
689 diff = (long) (hit - lot); in hunt()
696 else if (t >= hit) in hunt()
708 } else hit = t; in hunt()
711 show(name, hit, TRUE); in hunt()
712 return hit; in hunt()
871 huntICU(char *name, time_t lot, time_t hit, FILE * fp) in huntICU() argument
887 diff = (long) (hit - lot); in huntICU()
[all …]
/external/chromium_org/third_party/icu/source/tools/tzcode/
Dzdump.c168 static time_t hunt(char * name, time_t lot, time_t hit);
179 static time_t huntICU(char * name, time_t lot, time_t hit, FILE *fp);
673 hunt(char *name, time_t lot, time_t hit) in hunt() argument
689 diff = (long) (hit - lot); in hunt()
696 else if (t >= hit) in hunt()
708 } else hit = t; in hunt()
711 show(name, hit, TRUE); in hunt()
712 return hit; in hunt()
871 huntICU(char *name, time_t lot, time_t hit, FILE * fp) in huntICU() argument
887 diff = (long) (hit - lot); in huntICU()
[all …]

12345678910>>...16