HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 51 - 75 of 404) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
SystemMediaRouteProvider.java 310 SystemRouteRecord record = new SystemRouteRecord(routeObj, id); local
311 updateSystemRouteDescriptor(record);
312 mSystemRouteRecords.add(record);
352 SystemRouteRecord record = mSystemRouteRecords.get(index); local
353 updateSystemRouteDescriptor(record);
364 SystemRouteRecord record = mSystemRouteRecords.get(index); local
366 if (newVolume != record.mRouteDescriptor.getVolume()) {
367 record.mRouteDescriptor =
368 new MediaRouteDescriptor.Builder(record.mRouteDescriptor)
394 SystemRouteRecord record = mSystemRouteRecords.get(index) local
422 UserRouteRecord record = getUserRouteRecord(routeObj); local
430 UserRouteRecord record = getUserRouteRecord(routeObj); local
441 UserRouteRecord record = new UserRouteRecord(route, routeObj); local
455 SystemRouteRecord record = mSystemRouteRecords.get(index); local
468 UserRouteRecord record = mUserRouteRecords.remove(index); local
481 UserRouteRecord record = mUserRouteRecords.get(index); local
498 UserRouteRecord record = mUserRouteRecords.get(index); local
504 SystemRouteRecord record = mSystemRouteRecords.get(index); local
693 SystemRouteRecord record = mSystemRouteRecords.get(index); local
    [all...]
  /external/icu4c/layout/
PairPositioningSubtables.cpp 133 const PairValueRecord *record = records; local
136 if (SWAPW(record->secondGlyph) == glyphID) {
137 return record;
140 record = (const PairValueRecord *) ((char *) record + recordSize);
147 const PairValueRecord *record = records;
148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
151 record = trial;
156 trial = (const PairValueRecord *) ((char *) record + probe);
159 record = trial
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityEventCompat.java 30 public void appendRecord(AccessibilityEvent event, Object record);
37 public void appendRecord(AccessibilityEvent event, Object record) {
55 public void appendRecord(AccessibilityEvent event, Object record) {
56 AccessibilityEventCompatIcs.appendRecord(event, record);
201 * @param record The record to append.
205 public static void appendRecord(AccessibilityEvent event, AccessibilityRecordCompat record) {
206 IMPL.appendRecord(event, record.getImpl());
210 * Gets the record at a given index.
213 * @return The record at the specified index
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 17 package com.android.apps.tag.record;
53 public static ImageRecord parse(NdefRecord record) {
54 String mimeType = record.toMimeType();
61 byte[] content = record.getPayload();
69 public static boolean isImage(NdefRecord record) {
71 parse(record);
SmartPoster.java 17 package com.android.apps.tag.record;
49 * NFC Forum Smart Poster Record Type Definition section 3.2.1.
51 * "The Title record for the service (there can be many of these in
53 * This record is optional."
59 * NFC Forum Smart Poster Record Type Definition section 3.2.1.
61 * "The URI record. This is the core of the Smart Poster, and all other
62 * records are just metadata about this record. There MUST be one URI
63 * record and there MUST NOT be more than one."
68 * NFC Forum Smart Poster Record Type Definition section 3.2.1.
70 * "The Icon record. A Smart Poster may include an icon by including on
236 NdefRecord record = getByType(ACTION_RECORD_TYPE, records); local
    [all...]
  /external/smack/src/org/xbill/DNS/
Update.java 31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN);
47 newPrereq(Record rec) {
52 newUpdate(Record rec) {
62 newPrereq(Record.newRecord(name, Type.ANY, DClass.ANY, 0));
71 newPrereq(Record.newRecord(name, type, DClass.ANY, 0));
75 * Parses a record from the string, and inserts a prerequisite that the
76 * record exists. Due to the way value-dependent prequisites work, the
80 * @throws IOException The record could not be parsed.
83 present(Name name, int type, String record) throws IOException
    [all...]
  /external/valgrind/main/memcheck/tests/
pointer-trace.stderr.exp 1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
static_malloc.stderr.exp 1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
trivialleak.stderr.exp 1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
  /external/qemu/hw/
bt-sdp.c 82 static int sdp_uuid_match(struct sdp_service_record_s *record,
97 lo = record->uuid;
98 hi = record->uuids;
208 static int sdp_attr_match(struct sdp_service_record_s *record,
235 for (i = 0; i < record->attributes; i ++)
236 if (record->attribute_list[i].attribute_id >= start &&
237 record->attribute_list[i].attribute_id <= end)
238 record->attribute_list[i].match = 1;
249 struct sdp_service_record_s *record; local
261 record = &sdp->service_list[handle]
336 struct sdp_service_record_s *record; local
375 struct sdp_service_record_s *record; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/mint/
SDL_mintaudio_mcsn.h 38 unsigned short record; /* Record capability */ member in struct:__anon13299
41 unsigned short rint; /* Interrupt at end of record */
  /frameworks/base/tools/preload/
Compile.java 27 * to measure and record the memory usage of each class.
41 List<Record> records = new ArrayList<Record>();
53 records.add(new Record(clipped, lineNumber));
61 for (Record record : records) {
62 root.indexProcess(record);
65 for (Record record : records) {
66 root.indexClassOperation(record);
    [all...]
  /external/chromium/chrome/browser/net/
load_timing_observer_unittest.cc 145 LoadTimingObserver::URLRequestRecord* record = local
147 ASSERT_TRUE(record == NULL);
154 // Create record.
156 LoadTimingObserver::URLRequestRecord* record = local
158 ASSERT_FALSE(record == NULL);
160 // Collect record.
162 record = observer.GetURLRequestRecord(0);
163 ASSERT_TRUE(record == NULL);
168 record = observer.GetURLRequestRecord(1);
169 ASSERT_TRUE(record == NULL)
242 LoadTimingObserver::URLRequestRecord* record = local
260 LoadTimingObserver::URLRequestRecord* record = local
285 LoadTimingObserver::URLRequestRecord* record = local
318 LoadTimingObserver::URLRequestRecord* record = local
344 LoadTimingObserver::URLRequestRecord* record = local
370 LoadTimingObserver::URLRequestRecord* record = local
398 LoadTimingObserver::URLRequestRecord* record = local
    [all...]
load_timing_observer.cc 46 LoadTimingObserver::URLRequestRecord* record) {
48 (time_ticks - record->base_ticks).InMillisecondsRoundedUp());
114 LoadTimingObserver::URLRequestRecord* record = local
116 if (record) {
117 response->response_head.connection_id = record->socket_log_id;
118 response->response_head.connection_reused = record->socket_reused;
119 response->response_head.load_timing = record->timing;
136 // Only record timing for entries with corresponding flag.
151 URLRequestRecord& record = url_request_to_record_[source.id]; local
152 record.base_ticks = time
163 URLRequestRecord* record = GetURLRequestRecord(source.id); local
    [all...]
  /external/srec/audio/AudioIn/UNIX/src/
audioinwrapper.cpp 59 static AudioRecord* record; variable
97 // TODO: get record buffer size from hardware.
98 record = new android::AudioRecord(
105 if (!record) return -1;
107 return record->start() == NO_ERROR ? 0 : -1;
116 record->stop();
117 delete record;
134 n = record->read(buffer, nreq);
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 161 MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2); local
162 rec.write(record);
163 byte[] byteArray = record.toByteArray();
243 MessageOutputStream record = new MessageOutputStream(512, this); local
244 record.writeQuestion(rec);
245 byte[] byteArray = record.toByteArray();
277 MessageOutputStream record = new MessageOutputStream(512, this); local
278 record.writeRecord(rec, now);
279 byte[] byteArray = record.toByteArray();
297 MessageOutputStream record = new MessageOutputStream(512, this) local
316 MessageOutputStream record = new MessageOutputStream(512, this); local
    [all...]
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 361 EventRecord record;
362 record.what = NPEventType_GetFocusEvent;
363 record.message = 0;
364 record.when = TickCount();
365 record.where = globalMousePosForPlugin();
366 record.modifiers = GetCurrentKeyModifiers();
368 if (!dispatchNPEvent(record))
572 EventRecord record;
579 record.what = NPEventType_AdjustCursorEvent;
581 record.what = NPEventType_AdjustCursorEvent
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
MemoryHandler.java 177 * Put a given {@code LogRecord} into internal buffer. If given record is
179 * Furthermore if the record's level is not less than the push level, the
183 * @param record
184 * the log record
186 @Override public synchronized void publish(LogRecord record) {
187 if (!isLoggable(record)) {
193 buffer[cursor++] = record;
194 if (record.getLevel().intValue() >= push.intValue()) {
217 * @param record
223 public boolean isLoggable(LogRecord record) {
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java 61 * Adds the most recently logged record to our list.
64 public void publish(LogRecord record) {
65 list.add(record);
  /external/replicaisland/src/com/replica/replicaisland/
InventoryComponent.java 36 public void applyUpdate(UpdateRecord record) {
37 mInventory.add(record);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInformationRecords.java 22 public Object record; field in class:CdmaInformationRecords
25 * Record type identifier
44 record = new CdmaDisplayInfoRec(id, p.readString());
50 record = new CdmaNumberInfoRec(id, p.readString(), p.readInt(), p.readInt(),
55 record = new CdmaSignalInfoRec(p.readInt(), p.readInt(), p.readInt(), p.readInt());
59 record = new CdmaRedirectingNumberInfoRec(p.readString(), p.readInt(), p.readInt(),
64 record = new CdmaLineControlInfoRec(p.readInt(), p.readInt(), p.readInt(),
69 record = new CdmaT53ClirInfoRec(p.readInt());
73 record = new CdmaT53AudioControlInfoRec(p.readInt(), p.readInt());
79 throw new RuntimeException("RIL_UNSOL_CDMA_INFO_REC: unsupported record. Got
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcleak.stderrB.exp 3 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
28 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
33 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
38 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ..
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FilterTest.java 40 public boolean isLoggable(LogRecord record) {
  /external/clang/test/Preprocessor/
pp-record.c 1 // RUN: %clang_cc1 -fsyntax-only -detailed-preprocessing-record %s
8 #define INC pp-record.h
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.cpp 200 ScriptSampleRecord* record = m_scopeSampleMap->get(codeBlock->ownerExecutable()); local
201 ASSERT(record);
202 record->sample(codeBlock, sample.vPC());
333 ScriptSampleRecord* record = codeBlockSamples[i]; local
334 CodeBlock* codeBlock = record->m_codeBlock;
336 double blockPercent = (record->m_sampleCount * 100.0) / m_sampleCount;
340 printf("#%d: %s:%d: %d / %lld (%.3f%%)\n", i + 1, record->m_executable->sourceURL().utf8().data(), codeBlock->lineNumberForBytecodeOffset(0), record->m_sampleCount, m_sampleCount, blockPercent);
346 for (unsigned op = 0; op < record->m_size; ++op) {
347 int count = record->m_samples[op]
    [all...]

Completed in 729 milliseconds

1 23 4 5 6 7 8 91011>>