Searched refs:hit (Results 1 - 25 of 143) sorted by path

123456

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas1003 // Assume we want to hit node 107 and then "call 102", which
1066 // Assume we want to hit node 107 and then "call 102" then return
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas791 // If our load factor was exactly 1, we'll need to hit this hole
H A DAntlr.Runtime.Tree.pas4760 // hit end of child list, return to parent node or its parent ...
4830 // seek forward, consume until we hit index
4916 // hit the root?
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Derror.rb54 hit a point of failure
/external/apache-http/src/org/apache/http/impl/
H A DDefaultConnectionReuseStrategy.java119 HeaderIterator hit = response.headerIterator(HTTP.CONN_DIRECTIVE);
120 if (!hit.hasNext())
121 hit = response.headerIterator("Proxy-Connection");
146 if (hit.hasNext()) {
148 TokenIterator ti = createTokenIterator(hit);
180 * @param hit the header iterator
184 protected TokenIterator createTokenIterator(HeaderIterator hit) { argument
185 return new BasicTokenIterator(hit);
/external/blktrace/btt/doc/
H A Dbtt.tex1001 basis. It shows how many times an unplug was hit with a specified
/external/blktrace/doc/
H A Dblktrace.tex103 and then down to \emph{Support for tracing block io actions} and hit Y.
139 trace, hit control-C):
/external/chromium-trace/
H A Dscript.js431 a.creationTs},a,b,h)},addItemNearToProvidedHitToSelection:function(a,b,d){if(a instanceof tracing.SelectionObjectSnapshotHit){if(a=this.objectSnapshots_.indexOf(a.objectSnapshot),b=a+b,0<=b&&b<this.objectSnapshots_.length)return d.addObjectSnapshot(this,this.objectSnapshots_[b]),!0}else if(a instanceof tracing.SelectionObjectInstanceHit){if(a=this.objectInstances_.indexOf(a.objectInstance),b=a+b,0<=b&&b<this.objectInstances_.length)return d.addObjectInstance(this,this.objectInstances_[b]),!0}else throw Error("Unrecognized hit");
438 a,b,function(a){g.addObjectSnapshot(h,a)})},addItemNearToProvidedHitToSelection:function(a,b,d){if(a instanceof tracing.SelectionObjectSnapshotHit){var g=this.objectInstance_.snapshots;a=g.indexOf(a.objectSnapshot)+b;if(0<=a&&a<g.length)return d.addObjectSnapshot(this,g[a]),!0}else throw Error("Unrecognized hit");return!1},addAllObjectsMatchingFilterToSelection:function(a,b){}};tracing.tracks.ObjectInstanceTrack.register("memory::Heap",a);return{HeapInstanceTrack:a}});"use strict";base.requireStylesheet("tracing.tracks.counter_track");
521 base.exportTo("tracing",function(){function d(){this.model_=this.timeline_=void 0;this.filterText_="";this.filterHits_=new tracing.Selection;this.filterHitsDirty_=!0;this.currentHitIndex_=-1}var b=ui.define("div");b.prototype={__proto__:ui.Overlay.prototype,decorate:function(){ui.Overlay.prototype.decorate.call(this);this.className="find-control";this.hitCountEl_=document.createElement("div");this.hitCountEl_.className="hit-count-label";this.hitCountEl_.textContent="1 of 7";var a=document.createElement("div");
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.js163 * Used to hit-test clicks in the graph.
180 * Add the item to the left or right of the provided hit, if any, to the
183 * @param {Number} offset Number of slices away from the hit to look.
184 * @param {Selection} selection The selection to add a hit to,
186 * @return {boolean} Whether a hit was found.
189 addItemNearToProvidedHitToSelection: function(hit, offset, selection) {
190 if (hit instanceof tracing.SelectionObjectSnapshotHit) {
192 var index = objectSnapshots.indexOf(hit.objectSnapshot);
199 throw new Error('Unrecognized hit');
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_view.js112 tryToProcessSelectionUsingCustomViewer: function(hit) {
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) {
H A Danalyze_selection.js59 objectHits.forEach(function(hit) {
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);
/external/chromium-trace/trace-viewer/src/tracing/
H A Dselection.js149 var hit = this[i];
150 hit.addBoundsToRange(this.bounds_);
178 pushHit: function(hit) {
179 this.push_(hit);
187 push_: function(hit) {
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...]
H A Dtimeline_view.css100 .find-control .hit-count-label {
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dcounter_track.js39 * hit objects. Override this function on parent classes to add
40 * context-specific information to the hit.
42 decorateHit: function(hit) {
222 var hit = selection.addCounterSample(this, this.counter, i);
223 this.decorateHit(hit);
H A Dobject_instance_track.js202 * Add the item to the left or right of the provided hit, if any, to the
205 * @param {Number} offset Number of slices away from the hit to look.
206 * @param {Selection} selection The selection to add a hit to,
208 * @return {boolean} Whether a hit was found.
211 addItemNearToProvidedHitToSelection: function(hit, offset, selection) {
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);
227 throw new Error('Unrecognized hit');
[all...]
H A Dprocess_track.js60 var hit = selection.addSlice(this, instantEvent);
61 this.decorateHit(hit);
H A Dslice_track.js201 var hit = selection.addSlice(this, slice);
202 this.decorateHit(hit);
229 * Add the item to the left or right of the provided hit, if any, to the
232 * @param {Number} offset Number of slices away from the hit to look.
233 * @param {Selection} selection The selection to add a hit to,
235 * @return {boolean} Whether a hit was found.
238 addItemNearToProvidedHitToSelection: function(hit, offset, selection) {
239 if (!hit.slice)
242 var index = this.indexOfSlice_(hit.slice);
250 var hit
[all...]
H A Dthread_track.js56 asyncTrack.decorateHit = function(hit) {
70 samplesTrack.decorateHit = function(hit) {
72 // with the hit.
73 hit.thread = this.thread_;
83 cpuTrack.decorateHit = function(hit) {
84 hit.thread = this.thread_;
97 track.decorateHit = function(hit) {
98 hit.thread = this.thread_;
H A Dtrace_model_track.js119 var hit = selection.addSlice(this, instantEvent);
120 this.decorateHit(hit);
H A Dtrack.js108 * hit objects. Override this function on parent classes to add
109 * context-specific information to the hit.
111 decorateHit: function(hit) {
/external/chromium-trace/trace-viewer/src/ui/
H A Dfilter_control.css12 .filter-control .hit-count-label {
41 .filter-control input + .hit-count-label {
45 .filter-control input:focus + .hit-count-label {
H A Dquad_view.js278 var hit = quads[i].vecInside(vecInWorldPixels);
279 if (hit)
/external/chromium_org/ash/wm/
H A Dresize_shadow.cc76 void ResizeShadow::ShowForHitTest(int hit) { argument
78 if (hit == last_hit_test_)
80 last_hit_test_ = hit;
83 ShowLayer(image_grid_->top_left_layer(), hit == HTTOPLEFT);
84 ShowLayer(image_grid_->top_right_layer(), hit == HTTOPRIGHT);
85 ShowLayer(image_grid_->bottom_left_layer(), hit == HTBOTTOMLEFT);
86 ShowLayer(image_grid_->bottom_right_layer(), hit == HTBOTTOMRIGHT);
90 hit == HTTOPLEFT || hit == HTTOP || hit
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Ddatabase_manager.cc45 // Records disposition information about the check. |hit| should be
48 bool hit,
54 } else if (hit) {
917 const bool hit = HandleOneCheck(check, full_hashes); local
918 RecordGetHashCheckStatus(hit, check_type, full_hashes);
922 // Call back all interested parties, noting if any has a hit.
924 bool hit = false; local
928 hit = true;
930 RecordGetHashCheckStatus(hit, check_type, full_hashes);
47 RecordGetHashCheckStatus( bool hit, safe_browsing_util::ListType check_type, const std::vector<SBFullHashResult>& full_hashes) argument
H A Dsafe_browsing_service_browsertest.cc223 bool hit = false; local
237 hit = true;
240 return hit;
286 // This function is called when there is a prefix hit in local safebrowsing
430 // full hash is hit in database's local cache.
657 // Navigate back to kEmptyPage -- should hit the whitelist, and send a match
658 // call, but no hit call.
845 // Now introducing delays and we should hit timeout.

Completed in 493 milliseconds

123456