HomeSort by relevance Sort by last modified time
    Searched full:records (Results 51 - 75 of 2236) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/sync/glue/
extensions_activity_monitor_unittest.cc 110 syncer::ExtensionsActivity::Records results;
121 // get the records, fire some more mutating and non-mutating events,
122 // and put the old records back. Those should be merged with the new
123 // records correctly.
128 syncer::ExtensionsActivity::Records results;
139 // refugee records.
141 syncer::ExtensionsActivity::Records new_records;
151 // Fire some mutating bookmark API events and get the records multiple
152 // times. The mintor should correctly clear its records every time
157 syncer::ExtensionsActivity::Records results
    [all...]
  /external/chromium_org/device/nfc/
nfc_ndef_record.h 17 // storage of typed data over NFC. NDEF defines two constructs: NDEF records and
20 // one or more NDEF records.
115 // records of type |type| or if |data| does not contain mandatory fields of
133 // more NDEF records and the order in which the records are stored dictates the
139 // Typedef for a list of NDEF records.
145 // The NDEF records that are contained in this message.
146 const RecordList& records() const { return records_; } function in class:device::NfcNdefMessage
148 // Adds the NDEF record |record| to the sequence of records that this
153 // The NDEF records that are contained by this message
    [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) {
  /external/chromium_org/third_party/leveldatabase/src/doc/
log_format.txt 4 Each block consists of a sequence of records:
33 FIRST, MIDDLE, LAST are types used for user records that have been
39 Example: consider a sequence of user records:
64 simple: find the next block boundary and skip records until we
67 (3) We do not need extra buffering for large records.
71 (1) No packing of tiny records. This could be fixed by adding a new
  /external/chromium_org/third_party/ots/src/
hdmx.cc 63 hdmx->records.reserve(num_recs);
73 OTS_WARNING("records are not sorted");
93 hdmx->records.push_back(rec);
109 !out->WriteS16(hdmx->records.size()) ||
114 for (unsigned i = 0; i < hdmx->records.size(); ++i) {
115 const OpenTypeHDMXDeviceRecord& rec = hdmx->records[i];
  /external/skia/tools/skpdiff/
SkDiffContext.h 21 * Collects records of diffs and outputs them as JSON.
66 * Output the records of each diff in JSON.
68 * The format of the JSON document is one top level array named "records".
87 * "records": [
108 * Output the records score in csv format.
131 // We use linked list for the records so that their pointers remain stable. A resizable array
  /external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java 56 /** We will keep a private list of all logged records */
79 * Fetch the list of logged records
80 * @return unmodifiable LogRecord list of all logged records
  /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...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DeletedContactUtil.java 60 * Queries all records.
62 * @return A list of records. Where each record is represented as an array of strings.
70 * Queries all records after a given timestamp.
72 * @return A list of records. Where each record is represented as an array of strings.
  /external/chromium-trace/trace-viewer/src/ui/
container_that_decorates_its_children.js 65 didMutate_: function(records) {
67 for (var i = 0; i < records.length; i++) {
68 var addedNodes = records[i].addedNodes;
73 var removedNodes = records[i].removedNodes;
  /external/chromium_org/chrome/browser/metrics/
time_ticks_experiment_win.h 17 // increasing. Records the results in UMA for the next upload.
  /external/chromium_org/chrome/browser/sync/
abstract_profile_sync_service_test.cc 28 syncer::ChangeRecordList records(1, record);
29 return syncer::ImmutableChangeRecordList(&records);
40 syncer::ChangeRecordList records(1, record);
41 return syncer::ImmutableChangeRecordList(&records);
  /external/llvm/test/MC/ELF/
no-fixup.s 8 // CHECK-NOT: RELOCATION RECORDS
  /frameworks/native/services/surfaceflinger/
FrameTracker.cpp 123 FrameRecord* records = const_cast<FrameRecord*>(mFrameRecords); local
130 const sp<Fence>& rfence = records[idx].frameReadyFence;
132 records[idx].frameReadyTime = rfence->getSignalTime();
133 if (records[idx].frameReadyTime < INT64_MAX) {
134 records[idx].frameReadyFence = NULL;
140 const sp<Fence>& pfence = records[idx].actualPresentFence;
142 records[idx].actualPresentTime = pfence->getSignalTime();
143 if (records[idx].actualPresentTime < INT64_MAX) {
144 records[idx].actualPresentFence = NULL;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
DeletedContactUtil.java 60 * Queries all records.
62 * @return A list of records. Where each record is represented as an array of strings.
70 * Queries all records after a given timestamp.
72 * @return A list of records. Where each record is represented as an array of strings.
  /external/chromium_org/webkit/browser/appcache/
appcache_database.cc 223 std::vector<CacheRecord> records; local
224 if (!FindCachesForOrigin(origin, &records))
228 std::vector<CacheRecord>::const_iterator iter = records.begin();
229 while (iter != records.end()) {
353 const GURL& origin, std::vector<GroupRecord>* records) {
354 DCHECK(records && records->empty());
367 records->push_back(GroupRecord());
368 ReadGroupRecord(statement, &records->back());
369 DCHECK(records->back().origin == origin)
957 NamespaceRecordVector* records = local
    [all...]
appcache_database.h 101 const GURL& origin, std::vector<GroupRecord>* records);
111 const GURL& origin, std::vector<CacheRecord>* records);
116 int64 cache_id, std::vector<EntryRecord>* records);
118 const GURL& url, std::vector<EntryRecord>* records);
122 const std::vector<EntryRecord>& records);
144 const NamespaceRecordVector& records);
149 int64 cache_id, std::vector<OnlineWhiteListRecord>* records);
152 const std::vector<OnlineWhiteListRecord>& 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...]
  /external/chromium_org/chromeos/dbus/
nfc_record_client.h 23 // records that are stored in remote NFC tags and devices.
33 // This property is only valid for Text and SmartPoster's title records.
38 // only valid for Text and SmartPoster's title records.
42 // This property is only valid for Text and SmartPoster's title records.
48 // for SmartPoster's URI type records.
83 // added to the set of known records.
87 // removed from the set of known records.
107 // Adds and removes observers for events on all remote NFC records. Check the
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineFrameController.js 48 var records = model.records;
49 for (var i = 0; i < records.length; ++i)
50 this._addRecord(records[i]);
68 var records;
74 records = record["children"] || [];
76 records = [record];
77 records.forEach(this._innerAddRecord.bind(this, programRecord));
  /external/chromium_org/third_party/icu/source/test/intltest/
winutil.cpp 81 void Win32Utilities::freeLocales(LCIDRecord *records)
86 delete[] records;
  /external/icu4c/test/intltest/
winutil.cpp 81 void Win32Utilities::freeLocales(LCIDRecord *records)
86 delete[] records;
  /external/smack/src/org/jivesoftware/smack/util/dns/
DNSResolver.java 27 * Gets a list of service records for the specified service.
29 * @return The list of SRV records mapped to the service name.
  /external/smack/src/org/xbill/DNS/
RPRecord.java 9 * and a domain where TXT records are available.
32 * @param textDomain The address where TXT records can be found
  /hardware/qcom/display/msm8960/libmemtrack/
memtrack_msm.c 31 struct memtrack_record *records,
35 return kgsl_memtrack_get_memory(pid, type, records, num_records);

Completed in 1319 milliseconds

1 23 4 5 6 7 8 91011>>