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

1 23 4 5 6 7 8 91011>>

  /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);
177 * @param record The record to append.
181 public static void appendRecord(AccessibilityEvent event, AccessibilityRecordCompat record) {
182 IMPL.appendRecord(event, record.getImpl());
186 * Gets the record at a given index.
189 * @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();
58 byte[] content = record.getPayload();
66 public static boolean isImage(NdefRecord record) {
68 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/valgrind/main/memcheck/tests/
pointer-trace.stderr.exp 1 1,000 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 ...
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyFormatter.java 49 private static String getHeader(LogRecord record) {
52 sb.append(FORMAT.format(new Date(record.getMillis()))).append(":");
53 sb.append(levelToString(record.getLevel())).append(" ");
57 String loggerName = record.getLoggerName();
97 public String format(LogRecord record) {
98 Throwable thrown = record.getThrown();
99 String header = getHeader(record);
103 sb.append(" ").append(formatMessage(record));
  /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.12/src/audio/mint/
SDL_mintaudio_mcsn.h 38 unsigned short record; /* Record capability */ member in struct:__anon10715
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(
106 if (!record) return -1;
108 return record->start() == NO_ERROR ? 0 : -1;
117 record->stop();
118 delete record;
135 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/bluetooth/bluez/src/
sdp-xml.h 40 sdp_data_t *sdp_xml_parse_uuid(const char *data, sdp_record_t *record);
57 sdp_record_t *record);
  /external/bluetooth/bluez/test/
hsmicro 20 $HSTEST record - $BDADDR $CHANNEL | $SOX -t raw -r 8000 -c 1 -s -w - -t ossdsp -r 44100 -c 2 -s -w /dev/dsp polyphase vol 5.0 2> /dev/null
test-service 39 record = f.read() variable
41 handle = service.AddRecord(record)
  /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/base/telephony/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/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 741 milliseconds

1 23 4 5 6 7 8 91011>>