HomeSort by relevance Sort by last modified time
    Searched refs:hit (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
cleanup_tests.py 7 return lambda hit: substring in hit.Title
9 def disable_hit(hit):
10 return conn.disable_hit(hit.HITId)
12 def dispose_hit(hit):
14 for assignment in conn.get_assignments(hit.HITId):
17 return conn.dispose_hit(hit.HITId)
20 """Remove any boto test related HIT's"""
31 is_reviewable = lambda hit: hit.HITStatus == 'Reviewable
    [all...]
  /external/autotest/site_utils/
collect_suite_time_stats.py 128 for hit in results.hits:
129 job_info_dict[job_id][hit['status']] = float(hit['duration'])
130 if hit['status'] == 'Queued':
133 last_queued_timestamp = float(hit['time_recorded'])
134 sum += float(hit['duration'])
137 sum += float(hit['duration'])
163 for hit in results.hits:
164 sum += float(hit['duration'])
165 job_info_dict[job_id][hit['status']] = float(hit['duration']
    [all...]
devserver_history.py 62 def __init__(self, hit):
63 """Retrieve information from a ES query hit.
65 self.devserver = hit['devserver']
66 self.subname = hit['subname']
67 self.artifacts = hit['artifacts'].split(' ')
68 self.image = hit['image']
69 self.value = hit['value']
71 hit['time_recorded'])
112 for hit in results.hits:
113 devserver_calls.append(devserver_call(hit))
    [all...]
host_label_utils.py 92 for hit in results.hits:
93 if 'labels' in hit:
94 host_labels[hit['hostname']] = hit['labels']
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 119 HeaderIterator hit = response.headerIterator(HTTP.CONN_DIRECTIVE); local
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) {
185 return new BasicTokenIterator(hit);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
mturk 102 help = 'where to store HIT nicknames (default: {})'.format(
159 def preview_url(hit):
161 mturk_website, hit.HITTypeId)
183 def display_hit(hit, verbose = False):
184 et = parse_timestamp(hit.Expiration)
187 get_nickname(hit.HITId),
188 hit.Title,
189 hit.FormattedPrice,
190 display_duration(int(hit.AssignmentDurationInSeconds)),
191 hit.HITStatus)
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
HIP.py 27 @ivar hit: the host identity tag
28 @type hit: string
37 __slots__ = ['hit', 'algorithm', 'key', 'servers']
39 def __init__(self, rdclass, rdtype, hit, algorithm, key, servers):
41 self.hit = hit
47 hit = self.hit.encode('hex-codec')
55 return '%u %s %s%s' % (self.algorithm, hit, key, text)
59 hit = tok.get_string().decode('hex-codec'
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
SorterTemplate.java 130 int hit = mid - 1; local
131 while (lot < hit) {
132 swap(lot++, hit--);
134 lot = mid; hit = hi - 1;
135 while (lot < hit) {
136 swap(lot++, hit--);
138 lot = lo; hit = hi - 1;
139 while (lot < hit) {
140 swap(lot++, hit--);
  /frameworks/base/core/java/android/view/
TouchDelegate.java 44 * view. This rect is used for initial hit testing.
110 boolean hit = true;
128 hit = false;
140 if (hit) {
  /external/skia/src/pathops/
SkPathOpsWinding.cpp 17 // 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->fValid, operand, span ? span->debugID() : -1, ccw)
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
AbstractCache.java 43 // TODO Should remove the oldest or least hit cached entry
72 cacheEntry.hit++;
74 Log.v(TAG, key + " hit " + cacheEntry.hit + " times.");
109 int hit; field in class:AbstractCache.CacheEntry
  /packages/apps/Messaging/src/com/android/messaging/mmslib/util/
AbstractCache.java 41 // TODO: Should remove the oldest or least hit cached entry
70 cacheEntry.hit++;
72 Log.v(TAG, key + " hit " + cacheEntry.hit + " times.");
108 int hit; field in class:AbstractCache.CacheEntry
  /packages/apps/TV/src/com/android/tv/util/
ImageCache.java 137 int hit = mMemoryCache.hitCount(); local
139 String result = memBitmapInfo == null ? "miss" : "hit";
140 double ratio = ((double) hit) / (hit + miss) * 100;
142 Log.d(TAG, "Memory cache " + hit + "h:" + miss + "m " + ratio + "%");
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 152 ViewNode hit = findChild(root, root, x, y); local
153 scene.setFocusedObject(hit);
159 ViewNode hit = besthit; local
164 if (node.width <= hit.width && node.height <= hit.height) {
165 hit = node;
170 hit = findChild(node, hit,
175 return hit;
  /external/replicaisland/src/com/replica/replicaisland/
SelectDialogComponent.java 76 public void setHitReact(HitReactionComponent hit) {
77 mHitReact = hit;
SimpleCollisionComponent.java 57 final boolean hit = collision.castRay(mPreviousPosition, mCurrentPosition,
60 if (hit) {
  /system/update_engine/update_manager/
prng_unittest.cc 75 for (auto& hit : hits)
76 EXPECT_LT(0, hit);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
ClickListener.java 119 Actor hit = actor.hit(x, y, true); local
120 if (hit == null || !hit.isDescendantOf(actor)) return inTapSquare(x, y);
  /external/skia/debugger/QT/
SkCanvasWidget.h 62 void hitChanged(int hit);
  /external/valgrind/none/tests/
pth_cvsimple.stdout.exp 13 hit threshold!
22 condvar was hit!
  /external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
assert.js 48 * This code should only be hit in the case of serious programmer error or
51 * @param {string=} opt_message A message to show when this is hit.
54 assert(false, opt_message || 'Unreachable code hit');
60 * @param {string=} opt_message A message to show when this is hit.
  /external/guava/guava-tests/benchmark/com/google/common/cache/
LoadingCacheSingleThreadBenchmark.java 39 // tweak this to control hit rate
99 double hit = req - misses.get(); local
102 System.out.println("hit rate: " + hit / req);
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapMakerSingleThreadBenchmark.java 42 // tweak this to control hit rate
102 double hit = req - misses.get(); local
105 System.out.println("hit rate: " + hit / req);
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
ExecDump.java 86 for (final boolean hit : data) {
87 if (hit) {
  /external/v8/test/mjsunit/regress/
regress-3643.js 18 // Sparse case should hit the same code as above due to presence of the getter.

Completed in 628 milliseconds

1 2 3 4 5 6 7 8 910