HomeSort by relevance Sort by last modified time
    Searched full:records (Results 1 - 25 of 1462) 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 EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrSpellingList(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrLateParsedList(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrParsedAttrList(RecordKeeper &Records, raw_ostream &OS)
    [all...]
TableGen.cpp 141 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
144 EmitClangAttrClass(Records, OS);
147 EmitClangAttrImpl(Records, OS);
150 EmitClangAttrList(Records, OS);
153 EmitClangAttrPCHRead(Records, OS);
156 EmitClangAttrPCHWrite(Records, OS);
159 EmitClangAttrSpellingList(Records, OS);
162 EmitClangAttrSpellingListIndex(Records, OS);
165 EmitClangAttrLateParsedList(Records, OS);
168 EmitClangAttrTemplateInstantiate(Records, OS)
    [all...]
  /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...]
Section.java 51 longSections[AUTHORITY] = "AUTHORITY RECORDS";
52 longSections[ADDITIONAL] = "ADDITIONAL RECORDS";
56 updateSections[UPDATE] = "UPDATE RECORDS";
57 updateSections[ADDITIONAL] = "ADDITIONAL RECORDS";
  /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/llvm/utils/TableGen/
TableGen.cpp 49 cl::values(clEnumValN(PrintRecords, "print-records",
50 "Print all records to stdout (default)"),
91 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) {
94 OS << Records; // No argument, dump all contents
97 EmitCodeEmitter(Records, OS);
100 EmitRegisterInfo(Records, OS);
103 EmitInstrInfo(Records, OS);
106 EmitCallingConv(Records, OS);
109 EmitAsmWriter(Records, OS);
112 EmitAsmMatcher(Records, OS)
    [all...]
  /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...]
  /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);
  /frameworks/native/services/surfaceflinger/
FrameTracker.cpp 102 FrameRecord* records = const_cast<FrameRecord*>(mFrameRecords); local
108 const sp<Fence>& rfence = records[idx].frameReadyFence;
110 records[idx].frameReadyTime = rfence->getSignalTime();
111 if (records[idx].frameReadyTime < INT64_MAX) {
112 records[idx].frameReadyFence = NULL;
117 const sp<Fence>& pfence = records[idx].actualPresentFence;
119 records[idx].actualPresentTime = pfence->getSignalTime();
120 if (records[idx].actualPresentTime < INT64_MAX) {
121 records[idx].actualPresentFence = NULL;
  /external/clang/test/CodeGen/
2010-07-08-DeclDebugLineNo.c 2 // Insure that dbg.declare lines for locals refer to correct line number records.
8 // Now match the line number 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])) {
  /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.
  /external/chromium/net/base/
dnssec_keyset.h 26 // CheckSignature checks the DNSSEC signature on set of resource records.
27 // name: the domain that the records are from
30 // rrtype: the type of the resource records
31 // rrdatas: the RRDATA of the signed resource records, in canonical order.
  /external/icu4c/test/intltest/
winutil.h 36 static void freeLocales(LCIDRecord *records);
  /external/iptables/extensions/
libxt_AUDIT.man 1 This target allows to create audit records for packets hitting the target.
  /external/libnfc-nci/src/nfa/include/
nfa_cho_api.h 76 UINT8 num_aux_data; /* number of Auxiliary NDEF records */
124 /* Alternative Carrier records including carrier power state, carrier data reference and aux data reference */
140 UINT8 num_ac_rec; /* number of Alternative Carrier records*/
141 tNFA_CHO_AC_REC ac_rec[NFA_CHO_MAX_AC_INFO]; /* Alternative Carrier records */
142 UINT8 *p_ref_ndef; /* pointer of NDEF including AC records */
152 UINT8 num_ac_rec; /* number of Alternative Carrier records*/
153 tNFA_CHO_AC_REC ac_rec[NFA_CHO_MAX_AC_INFO]; /* Alternative Carrier records */
154 UINT8 *p_ref_ndef; /* pointer of NDEF including AC records */
276 ** Handover Carrier records or Alternative Carrier records
    [all...]
  /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) {

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>