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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/utils/TableGen/
TableGenBackends.h 32 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrExprArgsList(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS)
    [all...]
TableGen.cpp 141 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
144 EmitClangAttrClass(Records, OS);
147 EmitClangAttrExprArgsList(Records, OS);
150 EmitClangAttrImpl(Records, OS);
153 EmitClangAttrList(Records, OS);
156 EmitClangAttrPCHRead(Records, OS);
159 EmitClangAttrPCHWrite(Records, OS);
162 EmitClangAttrSpellingList(Records, OS);
165 EmitClangAttrSpellingListIndex(Records, OS);
168 EmitClangAttrLateParsedList(Records, OS)
    [all...]
  /external/chromium_org/sync/util/
extensions_activity.h 38 typedef std::map<std::string, Record> Records;
42 // Fill |buffer| with all current records and then clear the
43 // internal records. Called on sync thread to append records to sync commit
45 void GetAndClearRecords(Records* buffer);
47 // Merge |records| with the current set of records. Called on sync thread to
48 // put back records if sync commit failed.
49 void PutRecords(const Records& records);
    [all...]
extensions_activity.cc 18 void ExtensionsActivity::GetAndClearRecords(Records* buffer) {
24 void ExtensionsActivity::PutRecords(const Records& records) {
26 for (Records::const_iterator i = records.begin(); i != records.end(); ++i) {
  /external/smack/src/org/xbill/DNS/
EmptyRecord.java 8 * A class implementing Records with no data; that is, records used in
9 * the question section of messages and meta-records in dynamic update.
Update.java 58 * exist records with the given name in the zone.
67 * exist records with the given name and type in the zone.
77 * condition that must be met is that the set of all records with the same
78 * and type in the update message must be identical to the set of all records
90 * condition that must be met is that the set of all records with the same
91 * and type in the update message must be identical to the set of all records
103 * the set of all records with the same and type in the update message must
104 * be identical to the set of all records with that name and type on the server.
113 * there are no records with the given name in the zone.
122 * there are no records with the given name and type in the zone
    [all...]
RRset.java 9 * A set of Records with the same name, type, and class. Also included
10 * are all RRSIG records signing the data records.
22 * rrs contains both normal and RRSIG records, with the RRSIG records
104 /** Deletes all Records from an RRset */
150 * Returns an Iterator listing all (data) records.
151 * @param cycle If true, cycle through the records so that each Iterator will
160 * Returns an Iterator listing all (data) records. This cycles through
161 * the records, so each Iterator will start with a different record
    [all...]
  /external/llvm/utils/TableGen/
TableGen.cpp 50 cl::values(clEnumValN(PrintRecords, "print-records",
51 "Print all records to stdout (default)"),
94 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
97 OS << Records; // No argument, dump all contents
100 EmitCodeEmitter(Records, OS);
103 EmitRegisterInfo(Records, OS);
106 EmitInstrInfo(Records, OS);
109 EmitCallingConv(Records, OS);
112 EmitAsmWriter(Records, OS);
115 EmitAsmMatcher(Records, OS)
    [all...]
  /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/chromium_org/net/dns/
mdns_cache.h 23 // This is a cache of mDNS records. It keeps track of expiration times and is
24 // guaranteed not to return expired records. It also has facilities for timely
30 // query for all records of a certain type and name, while also allowing us
31 // to set records of a certain type, name and optionally value as unique.
73 // Return records with type |type| and name |name|. Expired records will not
74 // be returned. If |type| is zero, return all records with name |name|.
77 std::vector<const RecordParsed*>* records,
80 // Remove expired records, call |record_removed_callback| for every removed
104 // Get optional part of the DNS key for shared records. For example, in PT
    [all...]
record_rdata_unittest.cc 22 // These are just the rdata portions of the DNS records, rather than complete
23 // records, but it works well enough for this test.
70 // These are just the rdata portions of the DNS records, rather than complete
71 // records, but it works well enough for this test.
91 // These are just the rdata portions of the DNS records, rather than complete
92 // records, but it works well enough for this test.
116 // These are just the rdata portions of the DNS records, rather than complete
117 // records, but it works well enough for this test.
140 // These are just the rdata portions of the DNS records, rather than complete
141 // records, but it works well enough for this test
    [all...]
  /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...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
core_app_launcher_handler.h 32 // Records the given type of app launch for UMA.
39 // Records an app launch from the search view of the app list.
42 // Records an app launch from the main view of the app list.
45 // Records a web store launch in the appropriate histograms.
50 // a launch source(integer), and if the URL represents an app, records the
54 // Records an app launch in the corresponding |bucket| of the app launch
  /external/chromium/chrome/browser/sync/util/
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/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...]
  /external/dnsmasq/contrib/dns-loc/
README 4 entries in order to assign location information to dns records
  /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/nist-sip/java/gov/nist/javax/sip/
LogRecord.java 4 * The interface for a log record. The log records are generated by calling the
  /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...]
  /external/chromium_org/tools/page_cycler/indexed_db/basic_insert/
index.html 7 var RECORDS = 3000;
70 log('Inserting ' + RECORDS + ' records with explicit key.');
72 for (var i = 0; i < RECORDS; i++) {
81 log('Inserted ' + RECORDS + ' records in ' + diff + ' ms (' + diff /
82 RECORDS + ' ms per record)');
  /external/chromium_org/chromeos/dbus/
nfc_record_client.cc 104 // Neard doesn't send out property changed signals for the records that
106 // object proxies for records that belong to the removed device.
118 // Update the record proxies using records from the device.
123 // Ignore changes to properties other than "Records".
124 if (property_name != device_properties->records.name())
127 // Update known records.
128 VLOG(1) << "NFC records changed.";
130 device_properties->records.value();
147 // Neard doesn't send out property changed signals for the records that
149 // object proxies for records that belong to the removed tag
    [all...]
  /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/device/nfc/
nfc_peer.h 21 // - NDEF. Specifically, reading NDEF records found on the peer device and
22 // pushing NDEF records to it (e.g. via SNEP or Android Beam), in the form
42 // new records on the device and when the initial set of records are
62 // Returns all NDEF records that were received from the peer device in the
63 // form of a NDEF message. If the returned NDEF message contains no records,
64 // this only means that no records have yet been received from the device.
66 // to be notified when the records are ready.
69 // Sends the NDEF records contained in |message| to the peer device. On
  /external/chromium_org/chrome/common/extensions/api/
metrics_private.json 82 "description": "Records an action performed by the user.",
90 "description": "Records a percentage value from 1 to 100.",
99 "description": "Records a value than can range from 1 to 1,000,000.",
108 "description": "Records a value than can range from 1 to 100.",
117 "description": "Records a value than can range from 1 to 10,000.",
126 "description": "Records an elapsed time of no more than 10 seconds. The sample value is specified in milliseconds.",
135 "description": "Records an elapsed time of no more than 3 minutes. The sample value is specified in milliseconds.",
144 "description": "Records an elapsed time of no more than 1 hour. The sample value is specified in milliseconds.",

Completed in 1444 milliseconds

1 2 3 4 5 6 7 8 91011>>