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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
unbound-queue-inl.h 13 template<typename Record>
14 struct UnboundQueue<Record>::Node: public Malloced {
15 explicit Node(const Record& value)
19 Record value;
24 template<typename Record>
25 UnboundQueue<Record>::UnboundQueue() {
26 first_ = new Node(Record());
31 template<typename Record>
32 UnboundQueue<Record>::~UnboundQueue() {
37 template<typename Record>
    [all...]
unbound-queue.h 21 template<typename Record>
27 INLINE(bool Dequeue(Record* rec));
28 INLINE(void Enqueue(const Record& rec));
30 INLINE(Record* Peek() const);
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 19 * \brief NFC Ndef Record component file.
32 * \name \name NDEF Record Tools Header
52 * Get a specific NDEF record from the data, provided by the caller. The data is a buffer holding
63 * \param[in] IsChunked This boolean tells the user that the record of a certain position within
64 * an array has the CHUNKED flag set (is a partial record). The number
67 * \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provide
159 /* Check the First Record(MB = 0) for TNF = 0x06(Unchanged) */
170 /* First Record i.e., MB = 1, TNF != 0x05 and TypeLength = 0 */
191 /* For Each Record Check whether it contains the ME bit set and CF bit Set
228 short or normal record */
    [all...]
  /external/chromium_org/v8/test/cctest/
test-circular-queue.cc 38 typedef v8::base::AtomicWord Record;
40 SamplingCircularQueue<Record, kMaxRecordsInQueue> scq;
45 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
46 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
58 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue());
64 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) {
65 Record* rec = reinterpret_cast<Record*>(scq.Peek())
    [all...]
test-unbound-queue.cc 38 typedef int Record;
39 UnboundQueue<Record> cq;
43 Record rec = 0;
51 typedef int Record;
52 UnboundQueue<Record> cq;
60 Record rec = 0;
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 39 RecordData &Record;
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
46 : Writer(Writer), Context(Context), Record(Record) {
138 CD->NumCtorInitializers, Record);
151 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
158 Record.push_back(FD->doesThisDeclarationHaveABody());
165 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
166 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
167 Record.push_back(D->isInvalidDecl())
    [all...]
ASTReaderStmt.cpp 34 const ASTReader::RecordData &Record;
83 const ASTReader::RecordData &Record, unsigned &Idx)
84 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { }
86 /// \brief The number of record fields required for the Stmt class
90 /// \brief The number of record fields required for the Expr class
111 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx);
113 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx));
114 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx));
117 Reader.ReadTemplateArgumentLoc(F, Record, Idx))
    [all...]
ASTWriterStmt.cpp 34 ASTWriter::RecordData &Record;
40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
41 : Writer(Writer), Record(Record) { }
54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
55 Writer.AddSourceLocation(Args.LAngleLoc, Record);
56 Writer.AddSourceLocation(Args.RAngleLoc, Record);
58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
66 Writer.AddSourceLocation(S->getSemiLoc(), Record);
67 Record.push_back(S->HasLeadingEmptyMacro)
    [all...]
ASTWriter.cpp 81 ASTWriter::RecordDataImpl &Record;
84 /// \brief Type code that corresponds to the record generated.
87 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
88 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
105 Writer.AddTypeRef(T->getElementType(), Record);
110 Writer.AddTypeRef(T->getPointeeType(), Record);
115 Writer.AddTypeRef(T->getOriginalType(), Record);
120 Writer.AddTypeRef(T->getOriginalType(), Record);
121 Writer.AddTypeRef(T->getAdjustedType(), Record);
    [all...]
ASTReaderDecl.cpp 43 const RecordData &Record;
196 const RecordData &Record, unsigned &Idx)
198 RawLocation(RawLocation), Record(Record), Idx(Idx),
221 const RecordData &Record);
352 GetTypeSourceInfo(Record, Idx);
355 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
371 if (Record[Idx++]) {
387 GlobalDeclID SemaDCIDForTemplateParmDecl = ReadDeclID(Record, Idx);
388 GlobalDeclID LexicalDCIDForTemplateParmDecl = ReadDeclID(Record, Idx)
    [all...]
  /external/chromium_org/sync/util/
extensions_activity.h 18 // A storage to record usage of extensions APIs to send to sync
24 // A data record of activity performed by extension |extension_id|.
25 struct SYNC_EXPORT Record {
26 Record();
27 ~Record();
30 // for the activity reported in this Record.
38 typedef std::map<std::string, Record> Records;
extensions_activity.cc 9 ExtensionsActivity::Record::Record()
12 ExtensionsActivity::Record::~Record() {}
34 Record& record = records_[extension_id]; local
35 record.extension_id = extension_id;
36 record.bookmark_write_count++;
  /external/chromium_org/ui/gfx/geometry/
r_tree.h 62 class Record : public RecordBase {
64 Record(const Rect& rect, const Key& key);
65 virtual ~Record();
71 DISALLOW_COPY_AND_ASSIGN(Record);
76 typedef base::hash_map<Key, Record*> RecordMap;
93 scoped_ptr<NodeBase> record; local
99 Record* existing_record = it->second;
106 record = RemoveNode(existing_record);
119 record->set_rect(rect);
124 record.reset(new Record(rect, key))
162 const Record* record = static_cast<const Record*>(*it); local
    [all...]
  /external/smack/src/org/xbill/DNS/
EmptyRecord.java 14 class EmptyRecord extends Record {
20 Record
Update.java 31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN);
47 newPrereq(Record rec) {
52 newUpdate(Record rec) {
62 newPrereq(Record.newRecord(name, Type.ANY, DClass.ANY, 0));
71 newPrereq(Record.newRecord(name, type, DClass.ANY, 0));
75 * Parses a record from the string, and inserts a prerequisite that the
76 * record exists. Due to the way value-dependent prequisites work, the
80 * @throws IOException The record could not be parsed.
83 present(Name name, int type, String record) throws IOException
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 61 /// ConvertToString - Convert a string from a record into an std::string, return
64 static bool ConvertToString(ArrayRef<uint64_t> Record, unsigned Idx,
66 if (Idx > Record.size())
69 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
70 Result += (char)Record[i];
495 SmallVector<uint64_t, 64> Record;
509 case BitstreamEntry::Record:
514 // Read a record.
515 Record.clear();
516 switch (Stream.readRecord(Entry.ID, Record)) {
    [all...]
  /external/llvm/utils/TableGen/
CodeGenIntrinsics.h 22 class Record;
27 Record *TheDef; // The actual record defining this intrinsic.
48 std::vector<Record*> RetTypeDefs;
57 std::vector<Record*> ParamTypeDefs;
90 CodeGenIntrinsic(Record *R);
CodeGenTarget.h 23 #include "llvm/TableGen/Record.h"
52 /// record corresponds to.
53 MVT::SimpleValueType getValueType(Record *Rec);
58 /// getQualifiedName - Return the name of the specified record, with a
59 /// namespace qualifier if the record contains one.
60 std::string getQualifiedName(const Record *R);
66 Record *TargetRec;
68 mutable DenseMap<const Record*, CodeGenInstruction*> Instructions;
70 mutable std::vector<Record*> RegAltNameIndices;
83 Record *getTargetRecord() const { return TargetRec;
    [all...]
CodeGenSchedule.h 21 #include "llvm/TableGen/Record.h"
30 typedef std::vector<Record*> RecVec;
31 typedef std::vector<Record*>::const_iterator RecIter;
49 Record *TheDef;
61 CodeGenSchedRW(unsigned Idx, Record *Def)
71 // (but no record).
83 assert((!HasVariants || TheDef) && "Variant write needs record def");
125 /// itinerary class. Each inherits the processor index from the ItinRW record
130 Record *ItinClassDef;
147 bool isKeyEqual(Record *IC, const IdxVec &W, const IdxVec &R)
    [all...]
CodeGenDAGPatterns.h 29 class Record;
162 SDTypeConstraint(Record *R);
204 Record *Def;
212 SDNodeInfo(Record *R); // Parse the specified record.
219 Record *getRecord() const { return Def; }
308 /// Operator - The Record for the operator if this is an interior node (not
310 Record *Operator;
312 /// Val - The init value (e.g. the "GPRC" record, or "7") for a leaf.
326 Record *TransformFn
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 345 /// ConvertToString - Convert a string from a record into an std::string, return
348 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
350 if (Idx > Record.size())
353 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
354 Result += (char)Record[i];
755 SmallVector<uint64_t, 64> Record;
769 case BitstreamEntry::Record:
774 // Read a record.
775 Record.clear();
776 switch (Stream.readRecord(Entry.ID, Record)) {
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 21 #include "llvm/TableGen/Record.h"
25 class Record;
45 /// ForeachLoop - Record the iteration state associated with a for loop.
69 // Record tracker
106 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
107 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
109 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName,
113 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
130 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc);
131 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc, IterSet &IterVals)
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 104 /// ConvertToString - Convert a string from a record into an std::string, return
107 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
109 if (Idx > Record.size())
112 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
113 Result += (char)Record[i];
476 SmallVector<uint64_t, 64> Record;
490 case BitstreamEntry::Record:
495 // Read a record.
496 Record.clear();
497 switch (Stream.readRecord(Entry.ID, Record)) {
    [all...]
  /external/clang/test/CodeGen/
pointer-signext.c 10 #define CR(Record, TYPE, Field) \
11 ((TYPE *) ((unsigned char *) (Record) - (unsigned char *) &(((TYPE *) 0)->Field)))
  /external/llvm/include/llvm/TableGen/
SetTheory.h 60 class Record;
65 typedef std::vector<Record*> RecVec;
66 typedef SmallSetVector<Record*, 16> RecSet;
80 /// Expander - A callback function that can transform a Record representing a
88 virtual void expand(SetTheory&, Record*, RecSet &Elts) =0;
94 typedef std::map<Record*, RecVec> ExpandMap;
111 /// FieldName in the Record to get the set elements. That is all that is
133 /// expand - Expand a record into a set of elements if possible. Return a
136 const RecVec *expand(Record *Set);

Completed in 1385 milliseconds

1 2 3 4 5 6 7 8 91011>>