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

1 2 3

  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
mesadef.py 187 records = [] variable
190 for (name, alias, offset) in records:
209 records.append((name, dispatchName, offset))
  /external/mesa3d/src/mapi/glapi/gen/
mesadef.py 187 records = [] variable
190 for (name, alias, offset) in records:
209 records.append((name, dispatchName, offset))
  /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) {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimSmsTest.java 37 List<SmsRawData> records = sms.getAllMessagesFromIccEf(ActivityThread.currentPackageName()); local
38 assertNotNull(records);
39 assertTrue(records.size() >= 0);
44 for (int i = 0; i < records.size(); i++) {
45 SmsRawData data = records.get(i);
  /external/chromium_org/third_party/ots/src/
hdmx.h 24 std::vector<OpenTypeHDMXDeviceRecord> records; member in struct:ots::OpenTypeHDMX
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
PlayReadyHeader.java 41 private List<PlayReadyRecord> records; field in class:PlayReadyHeader
54 PlayReady Records See Text Varies
61 records = PlayReadyRecord.createFor(byteBuffer, recordCount);
68 for (PlayReadyRecord record : records) {
75 IsoTypeWriter.writeUInt16BE(byteBuffer, records.size());
76 for (PlayReadyRecord record : records) {
86 public void setRecords(List<PlayReadyRecord> records) {
87 this.records = records;
91 return Collections.unmodifiableList(records);
114 List<PlayReadyRecord> records = new ArrayList<PlayReadyRecord>(recordCount); local
    [all...]
  /external/chromium_org/sync/engine/
traffic_recorder.h 62 const std::deque<TrafficRecord>& records() { function in class:syncer::TrafficRecorder
build_commit_command.cc 45 ExtensionsActivity::Records* extensions_activity_buffer)
68 // a copy of these records in the session.
71 const ExtensionsActivity::Records& records = local
73 for (ExtensionsActivity::Records::const_iterator it =
74 records.begin();
75 it != records.end(); ++it) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NdefTagTester.java 81 NdefRecord[] records = message.getRecords(); local
83 if (records.length > 0) {
84 NdefRecord record = records[0];
  /external/chromium/chrome/browser/sync/engine/
build_commit_command.cc 41 // Return the records to the activity monitor.
46 const ExtensionsActivityMonitor::Records& records = local
48 for (ExtensionsActivityMonitor::Records::const_iterator it = records.begin();
49 it != records.end(); ++it) {
process_commit_response_command_unittest.cc 392 // happens to the extensions activity records. Commits could fail or succeed,
412 ExtensionsActivityMonitor::Records* records = local
414 (*records)["ABC"].extension_id = "ABC";
415 (*records)["ABC"].bookmark_write_count = 2049U;
416 (*records)["xyz"].extension_id = "xyz";
417 (*records)["xyz"].bookmark_write_count = 4U;
421 ExtensionsActivityMonitor::Records final_monitor_records;
426 << "Should restore records after unsuccessful bookmark commit.";
433 << "Should not restore records after successful bookmark commit."
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DeletedContacts.java 67 List<String[]> records = DeletedContactUtil.query(mResolver, projection); local
69 for (String[] record : records) {
120 List<String[]> records = DeletedContactUtil.querySinceTimestamp(mResolver, projection, local
122 for (String[] record : records) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.cpp 123 Vector<RefPtr<MutationRecord> > records; local
124 records.swap(m_records);
125 return records;
205 Vector<RefPtr<MutationRecord> > records;
206 records.swap(m_records);
208 m_callback->call(records, this);
  /external/mtpd/
mtpd.c 268 struct addrinfo *records; local
274 error = getaddrinfo(server, port, &hints, &records);
281 for (r = records; r; r = r->ai_next) {
291 freeaddrinfo(records);
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 139 Record [] records = null; local
141 records = new Lookup(name, Type.AAAA).run();
142 if (records == null)
143 records = new Lookup(name, Type.A).run();
144 if (records == null && !preferV6)
145 records = new Lookup(name, Type.AAAA).run();
146 if (records == null)
149 InetAddress[] array = new InetAddress[records.length];
150 for (int i = 0; i < records.length; i++) {
151 Record record = records[i]
171 Record [] records = new Lookup(name, Type.PTR).run(); local
    [all...]
  /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/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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 118 records = inspect.getinnerframes(etb, context) variable
119 for frame, file, lnum, func, lines, index in records:
206 records = inspect.getinnerframes(etb, context) variable
207 for frame, file, lnum, func, lines, index in records:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 118 records = inspect.getinnerframes(etb, context) variable
119 for frame, file, lnum, func, lines, index in records:
206 records = inspect.getinnerframes(etb, context) variable
207 for frame, file, lnum, func, lines, index in records:
  /system/core/libmemtrack/
memtrack.c 35 struct memtrack_record *records; member in struct:memtrack_proc::memtrack_proc_type
73 free(p->types[i].records);
86 ret = module->getMemory(module, pid, type, t->records, &num_records);
92 /* Need more records than allocated */
93 free(t->records);
94 t->records = calloc(sizeof(*t->records), num_records);
95 if (!t->records) {
107 * make sure no records have invalid flags set
111 * make sure there are not overlapping SHARED and SHARED_PSS records
    [all...]
  /frameworks/base/core/java/android/nfc/
NdefRecord.java 38 * NDEF defines messages and records. An NDEF Record contains
41 * one or more NDEF Records.
43 * This class represents logical (complete) NDEF Records, and can not be
44 * used to represent chunked (partial) NDEF Records. However
46 * containing chunked records, and will return a message with unchunked
47 * (complete) records.
60 * NDEF Records with correctly set tnf, type, id and payload fields, please
66 * to create records that do not confirm to the strict NFC Forum
71 * NDEF records, and to pack optional fields. This class does not expose
120 * When creating new records prefer {@link #createUri}
744 List<NdefRecord> records = new ArrayList<NdefRecord>(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 128 final int records = event.getRecordCount(); local
129 for (int i = 0; i < records; i++) {
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateActive.cpp 121 int records = saveIndex / oldCount; local
122 int newTotal = records * newCount;
  /external/guava/guava-tests/test/com/google/common/io/
ByteStreamsTest.java 344 int records = logHandler.getStoredLogRecords().size(); local
346 return records;
CharStreamsTest.java 222 int records = logHandler.getStoredLogRecords().size(); local
224 return records;

Completed in 1387 milliseconds

1 2 3