Searched defs:hit (Results 1 - 25 of 37) sorted by relevance

12

/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/replicaisland/src/com/replica/replicaisland/
H A DSelectDialogComponent.java76 public void setHitReact(HitReactionComponent hit) { argument
77 mHitReact = hit;
H A DAABoxCollisionVolume.java38 int hit) {
39 super(hit);
37 AABoxCollisionVolume(float offsetX, float offsetY, float width, float height, int hit) argument
H A DSphereCollisionVolume.java35 public SphereCollisionVolume(float radius, float centerX, float centerY, int hit) { argument
36 super(hit);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dradiotap.c238 int hit = 0; local
363 hit = 1;
385 /* we've got a hit! */
386 hit = 1;
393 if (hit)
/external/wpa_supplicant_8/src/utils/
H A Dradiotap.c238 int hit = 0; local
363 hit = 1;
385 /* we've got a hit! */
386 hit = 1;
393 if (hit)
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dradiotap.c238 int hit = 0; local
363 hit = 1;
385 /* we've got a hit! */
386 hit = 1;
393 if (hit)
/external/linux-tools-perf/src/tools/perf/util/
H A Dcallchain.h30 u64 hit; member in struct:callchain_node
94 root->node.hit = 0;
101 return node->hit + node->children_hit;
H A Ddso.h84 u8 hit:1; member in struct:dso
H A Dsort.c601 u64 hit, miss; local
608 hit = m & PERF_MEM_TLB_HIT;
626 if (hit)
627 strncat(out, " hit", sz - l);
678 u64 hit, miss; local
685 hit = m & PERF_MEM_LVL_HIT;
703 if (hit)
704 strncat(out, " hit", sz - l);
/external/toybox/kconfig/
H A Dmconf.c359 bool hit; local
366 hit = false;
368 if (!hit) {
370 hit = true;
375 if (hit)
/external/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp369 int32_t noBreaks = 0, hit = 0; local
392 hit++;
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp149 UDate hit = newt; local
151 int32_t diff = (int32_t)(hit - lot);
163 hit = medt;
173 formatter->format(hit, newRawOffset + newDstOffset, (newDstOffset == 0 ? FALSE : TRUE), str);
H A Dzdump.c234 static time_t hunt(char * name, time_t lot, time_t hit);
244 static time_t huntICU(char * name, time_t lot, time_t hit, FILE *fp);
733 hunt(char *name, time_t lot, time_t hit) argument
748 time_t diff = hit - lot;
755 else if (t >= hit)
767 } else hit = t;
770 show(name, hit, TRUE);
771 return hit;
927 huntICU(char *name, time_t lot, time_t hit, FILE * fp) argument
943 diff = (long) (hit
[all...]
H A Dlocaltime.c1428 register int hit; local
1432 hit = 0;
1438 hit = ((i == 0 && lp->ls_corr > 0) ||
1440 if (hit)
1446 ++hit;
1532 tmp->tm_sec = (int) (rem % SECSPERMIN) + hit;
2031 ** For a positive leap second hit, the result
2033 ** hit, the corresponding time doesn't exist,
/external/skia/src/pathops/
H A DSkPathOpsWinding.cpp17 // if no edge is hit, compute the winding directly
252 SkOpRayHit* hit = hitHead; local
253 while (hit) {
254 sorted.push_back(hit);
255 hit = hit->fNext;
267 hit = sorted[index];
268 SkOpSpan* span = hit->fSpan;
271 bool ccw = ccw_dxdy(hit->fSlope, dir);
273 hit
[all...]
/external/toybox/toys/posix/
H A Dsed.c188 unsigned not, hit, sflags; member in struct:step
315 if (logrus->hit) {
317 if (!logrus->rmatch[1]) logrus->hit = 0;
324 } else if (lm > 0 && lm < TT.count) logrus->hit = 0;
331 if (line && !ghostwheel(rm, line, len, 0, 0, 0)) logrus->hit++;
332 } else if (lm == TT.count || (lm == -1 && !pline)) logrus->hit++;
338 lm = !(logrus->hit ^ logrus->not);
341 if (miss || logrus->lmatch[1] == TT.count) logrus->hit = 0;
386 if (!logrus->hit) emit(str, strlen(str), 1);
687 primal->hit
[all...]
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-kmem.c41 u32 hit; member in struct:alloc_stat
147 data->hit++;
158 data->hit = 1;
190 data->hit++;
201 data->hit = 1;
378 (unsigned long)data->bytes_alloc / data->hit,
380 (unsigned long)data->bytes_req / data->hit,
381 (unsigned long)data->hit,
546 if (l->hit < r->hit)
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_rasterizer_scanline_aa.h159 bool hit() const function in class:agg::scanline_hit_test
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java514 public boolean hit(Rectangle rect, Shape s, boolean onStroke) method in class:OverrideGraphics2D
516 return graphics.hit(rect, s, onStroke);
/external/skia/src/core/
H A DSkStroke.cpp527 SkPoint hit; local
528 hit.fX = lineStart.fX * (1 - t) + lineEnd.fX * t;
529 hit.fY = lineStart.fY * (1 - t) + lineEnd.fY * t;
530 return hit.distanceToSqd(pt);
/external/freetype/src/autofit/
H A Daflatin.c538 FT_Bool hit; local
573 hit = 0;
581 if ( !hit )
583 /* no hit; adjust first point */
599 hit = 1;
610 hit = 0;
620 hit = 0;
/external/libvncserver/x11vnc/
H A Dscan.c3051 int w, x1, y1, x2, y2, b, hit = 0; local
3071 hit = 1;
3075 if (hit) {
3090 int i, x1, y1, x2, y2, b, hit = 0; local
3133 hit = 1;
3137 if (hit) {
/external/boringssl/include/openssl/
H A Dssl.h1359 int hit; /* reusing a previous session */ member in struct:ssl_st
/external/boringssl/src/include/openssl/
H A Dssl.h1359 int hit; /* reusing a previous session */ member in struct:ssl_st

Completed in 3282 milliseconds

12