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

1 2 3 4

  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimSmsTest.java 36 List<SmsRawData> records = sms.getAllMessagesFromIccEf(); local
37 assertNotNull(records);
38 assertTrue(records.size() >= 0);
43 for (int i = 0; i < records.size(); i++) {
44 SmsRawData data = records.get(i);
  /frameworks/base/core/java/android/nfc/
NdefMessage.java 33 * NDEF defines messages and records. An NDEF Record contains
36 * one or more NDEF Records.
70 * This parser can handle chunked records, and converts them
73 * records, basic validation of the tnf, type, id, and payload fields
106 * Construct an NDEF Message from one or more NDEF Records.
109 * @param records additional records (optional)
111 public NdefMessage(NdefRecord record, NdefRecord ... records) {
115 for (NdefRecord r : records) {
121 mRecords = new NdefRecord[1 + records.length]
    [all...]
  /external/icu4c/test/intltest/
winutil.h 36 static void freeLocales(LCIDRecord *records);
winutil.cpp 81 void Win32Utilities::freeLocales(LCIDRecord *records)
86 delete[] records;
  /external/icu4c/layout/
OpenTypeUtilities.h 23 static Offset getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount);
24 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount);
OpenTypeUtilities.cpp 54 Offset OpenTypeUtilities::getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount)
62 if (SWAPT(records[extra].tag) <= tag) {
69 if (SWAPT(records[index + probe].tag) <= tag) {
74 if (SWAPT(records[index].tag) == tag) {
75 return SWAPW(records[index].offset);
81 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount)
93 if (SWAPW(records[extra].firstGlyph) <= glyphID) {
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
105 if (SWAPW(records[range].firstGlyph) <= glyphID && SWAPW(records[range].lastGlyph) >= glyphID)
    [all...]
PairPositioningSubtables.h 54 const PairValueRecord *findPairValueRecord(TTGlyphID glyphID, const PairValueRecord *records,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NfcUtils.java 32 private static boolean areRecordArraysEqual(NdefRecord[] records, NdefRecord[] otherRecords) {
33 if (records.length == otherRecords.length) {
34 for (int i = 0; i < records.length; i++) {
35 if (!areRecordsEqual(records[i], otherRecords[i])) {
  /frameworks/base/tools/preload/
Compile.java 41 List<Record> records = new ArrayList<Record>(); local
53 records.add(new Record(clipped, lineNumber));
61 for (Record record : records) {
65 for (Record record : records) {
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 74 dataRecord *records; variable
162 records = (dataRecord *) malloc(sizeof(dataRecord) * numRecords);
211 records[nextRecord].time = time;
212 records[nextRecord].threadId = threadId;
224 records[nextRecord].fullName = strndup(save_cp, len);
227 records[nextRecord].className = NULL;
228 records[nextRecord].methodName = NULL;
229 records[nextRecord].signature = NULL;
234 records[nextRecord].className = strndup(save_cp, len);
241 records[nextRecord].methodName = strndup(save_cp, len)
    [all...]
  /frameworks/av/include/common_time/
local_clock.h 38 int32_t getDebugLog(struct local_time_debug_event* records,
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_unittest.cc 97 void AnalyzePollRun(const SyncShareRecords& records, size_t min_num_samples,
99 const std::vector<TimeTicks>& data(records.times);
106 records.snapshots[i]->source.updates_source);
205 SyncShareRecords records; local
211 WithArg<0>(RecordSyncShare(&records, 1U, &done))))
217 EXPECT_EQ(1U, records.snapshots.size());
219 records.snapshots[0]->source.types));
221 records.snapshots[0]->source.updates_source);
245 SyncShareRecords records; local
251 WithArg<0>(RecordSyncShare(&records, 1U, &done))))
272 SyncShareRecords records; local
307 SyncShareRecords records; local
345 SyncShareRecords records; local
429 SyncShareRecords records; local
508 SyncShareRecords records; local
526 SyncShareRecords records; local
545 SyncShareRecords records; local
601 SyncShareRecords records; local
627 SyncShareRecords records; local
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 62 * records are just metadata about this record. There MUST be one URI
71 * or many MIME-typed image records within the Smart Poster. If the
137 Iterable<ParsedNdefRecord> records = NdefMessageParser.getRecords(recordsRaw); local
138 UriRecord uri = Iterables.getOnlyElement(Iterables.filter(records, UriRecord.class));
139 TextRecord title = getFirstIfExists(records, TextRecord.class);
140 ImageRecord image = getFirstIfExists(records, ImageRecord.class);
224 private static NdefRecord getByType(byte[] type, NdefRecord[] records) {
225 for (NdefRecord record : records) {
235 private static RecommendedAction parseRecommendedAction(NdefRecord[] records) {
236 NdefRecord record = getByType(ACTION_RECORD_TYPE, records);
    [all...]
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor.cc 67 void ExtensionsActivityMonitor::GetAndClearRecords(Records* buffer) {
73 void ExtensionsActivityMonitor::PutRecords(const Records& records) {
75 for (Records::const_iterator i = records.begin(); i != records.end(); ++i) {
extensions_activity_monitor.h 44 typedef std::map<std::string, Record> Records;
51 // Fills |buffer| with snapshot of current records in constant time by
53 void GetAndClearRecords(Records* buffer);
55 // Add |records| piece-wise (by extension id) to the set of active records.
57 void PutRecords(const Records& records);
64 Records records_;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
record-event-listener.rb 9 A debug listener that records intercepted events as strings in an array.
  /frameworks/av/media/common_time/
local_clock.cpp 82 int32_t LocalClock::getDebugLog(struct local_time_debug_event* records,
89 return dev_->get_debug_log(dev_, records, max_records);
  /packages/apps/Tag/src/com/android/apps/tag/message/
ParsedNdefMessage.java 37 public ParsedNdefMessage(List<ParsedNdefRecord> records) {
38 mRecords = ImmutableList.copyOf(records);
42 * Returns the list of parsed records on this message.
NdefMessageParser.java 51 public static List<ParsedNdefRecord> getRecords(NdefRecord[] records) {
53 for (NdefRecord record : records) {
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 329 List<SmsRawData> records = null; local
334 records = iccISms.getAllMessagesFromIccEf();
340 return createMessageListFromRawRecords(records);
467 * records returned by <code>getAllMessagesFromIcc()</code>
469 * @param records SMS EF records, returned by
473 private static ArrayList<SmsMessage> createMessageListFromRawRecords(List<SmsRawData> records) {
475 if (records != null) {
476 int count = records.size();
478 SmsRawData data = records.get(i)
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 83 // Build views for all of the sub records
93 List<ParsedNdefRecord> records = parsedMsg.getRecords(); local
94 final int size = records.size();
101 ParsedNdefRecord record = records.get(i);
  /hardware/libhardware/include/hardware/
local_time_hal.h 93 struct local_time_debug_event* records,
  /external/webkit/Source/WebCore/inspector/front-end/
TimelineOverviewPane.js 98 showMemoryGraph: function(records) {
100 this._heapGraph.update(records);
123 update: function(records, showShortEvents)
135 this._forAllRecords(records, this._overviewCalculator.updateBoundaries.bind(this._overviewCalculator));
148 this._forAllRecords(records, markTimeline.bind(this));
174 this._heapGraph.update(records);
179 updateEventDividers: function(records, dividerConstructor)
183 for (var i = 0; i < records.length; ++i) {
184 var record = records[i];
196 updateMainViewWidth: function(width, records)
    [all...]
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 20 # records from a remote dynamic dns client.
28 # update the records here. tested and confirmed to work with ddnsu
194 my @records;
202 push @records, "$$hashref{'myip'}\t$$hashref{'hostname'}\n";
206 push @records, $_;
210 push @records, "$$hashref{'myip'}\t$$hashref{'hostname'}\n";
214 syswrite(FILE, join("", @records));
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java 31 * access ADN-like SIM records.
41 protected List<AdnRecord> records; field in class:IccPhoneBookInterfaceManager
62 // recordSize[2] is the number of records in the EF file
81 records = (List<AdnRecord>) ar.result;
83 if(DBG) logd("Cannot load ADN records");
84 if (records != null) {
85 records.clear();
217 * Get the capacity of records in efid
223 * recordSizes[2] is the number of records in the EF file
255 return records;
    [all...]

Completed in 1407 milliseconds

1 2 3 4