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

1 2 3 4 5 6 7

  /external/v8/src/
unbound-queue-inl.h 36 template<typename Record>
37 struct UnboundQueue<Record>::Node: public Malloced {
38 explicit Node(const Record& value)
42 Record value;
47 template<typename Record>
48 UnboundQueue<Record>::UnboundQueue() {
49 first_ = new Node(Record());
54 template<typename Record>
55 UnboundQueue<Record>::~UnboundQueue() {
60 template<typename Record>
    [all...]
unbound-queue.h 41 template<typename Record>
47 INLINE(void Dequeue(Record* rec));
48 INLINE(void Enqueue(const Record& rec));
50 INLINE(Record* Peek());
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MONITOR_ENTER.S 13 mov r3, #0 @ Record that we're not returning
TEMPLATE_MONITOR_ENTER_DEBUG.S 13 mov r3, #0 @ Record that we're not returning
  /external/chromium/chrome/browser/metrics/
user_metrics.cc 13 Record(action.str_, profile);
18 Record(action.c_str(), profile);
21 void UserMetrics::Record(const char *action, Profile *profile) {
22 Record(action);
26 Record(action.str_);
30 Record(action.c_str());
33 void UserMetrics::Record(const char *action) {
47 Record(action.c_str());
user_metrics.h 28 // Record that the user performed an action.
62 static void Record(const char *action, Profile *profile);
63 static void Record(const char *action);
  /external/v8/test/cctest/
test-circular-queue.cc 15 typedef SamplingCircularQueue::Cell Record;
17 SamplingCircularQueue scq(sizeof(Record),
18 kRecordsPerChunk * sizeof(Record),
26 for (Record i = 1; i < 1 + kRecordsPerChunk; ++i) {
27 Record* rec = reinterpret_cast<Record*>(scq.Enqueue());
35 for (Record i = 10; i < 10 + kRecordsPerChunk; ++i) {
36 Record* rec = reinterpret_cast<Record*>(scq.Enqueue());
42 Record* rec = reinterpret_cast<Record*>(scq.Enqueue())
    [all...]
  /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/clang/lib/Serialization/
ASTReaderStmt.cpp 30 const ASTReader::RecordData &Record;
71 const ASTReader::RecordData &Record, unsigned &Idx)
72 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { }
74 /// \brief The number of record fields required for the Stmt class
78 /// \brief The number of record fields required for the Expr class
97 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx));
98 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx));
101 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
111 S->setSemiLoc(ReadSourceLocation(Record, Idx))
    [all...]
ASTWriterStmt.cpp 29 ASTWriter::RecordData &Record;
35 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
36 : Writer(Writer), Record(Record) { }
50 Writer.AddSourceLocation(Args.LAngleLoc, Record);
51 Writer.AddSourceLocation(Args.RAngleLoc, Record);
53 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
61 Writer.AddSourceLocation(S->getSemiLoc(), Record);
62 Record.push_back(S->HasLeadingEmptyMacro);
68 Record.push_back(S->size())
    [all...]
ASTReaderDecl.cpp 39 const RecordData &Record;
93 const RecordData &Record, unsigned &Idx);
97 const RecordData &Record, unsigned &Idx)
99 Record(Record), Idx(Idx), TypeIDForTypeDecl(0) { }
106 const RecordData &Record);
200 GetTypeSourceInfo(Record, Idx);
203 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
212 if (Record[Idx++])
232 DeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx)
    [all...]
ASTWriterDecl.cpp 37 RecordData &Record;
43 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
44 : Writer(Writer), Context(Context), Record(Record) {
133 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
140 Record.push_back(FD->doesThisDeclarationHaveABody());
147 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
148 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
149 Writer.AddSourceLocation(D->getLocation(), Record);
150 Record.push_back(D->isInvalidDecl())
    [all...]
ASTWriter.cpp 74 ASTWriter::RecordDataImpl &Record;
77 /// \brief Type code that corresponds to the record generated.
80 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
81 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
98 Writer.AddTypeRef(T->getElementType(), Record);
103 Writer.AddTypeRef(T->getPointeeType(), Record);
108 Writer.AddTypeRef(T->getPointeeType(), Record);
113 Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record);
114 Record.push_back(T->isSpelledAsLValue())
    [all...]
ASTReader.cpp 740 RecordData Record;
744 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
758 RecordData Record;
762 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
769 (const unsigned char *)Blob + Record[0],
806 SmallVectorImpl<uint64_t> &Record) {
812 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
814 unsigned FilenameLen = Record[Idx++];
815 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen)
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 17 #include "llvm/TableGen/Record.h"
25 class Record;
54 // Record tracker
86 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
87 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
89 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName,
93 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
102 Record *InstantiateMulticlassDef(MultiClass &MC,
103 Record *DefProto,
107 Record *DefProto
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.h 107 struct Record {
115 bool operator() (const struct Record* lhs, const struct Record* rhs) const {
120 std::list<struct Record *> q_; // list of records to be processed
121 std::list<struct Record *> free_list_; // list of records that have been released
122 std::priority_queue<struct Record *, std::vector<struct Record *>, record_compare> delayed_q_;
127 struct Record *obtain_record(void *p, int delay_in_ms);
129 void release_record(struct Record *r);
  /external/llvm/utils/TableGen/
CallingConvEmitter.h 31 void EmitCallingConv(Record *CC, raw_ostream &O);
32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
CodeGenIntrinsics.h 22 class Record;
27 Record *TheDef; // The actual record defining this intrinsic.
47 std::vector<Record*> RetTypeDefs;
56 std::vector<Record*> ParamTypeDefs;
81 CodeGenIntrinsic(Record *R);
CodeGenTarget.h 22 #include "llvm/TableGen/Record.h"
51 /// record corresponds to.
52 MVT::SimpleValueType getValueType(Record *Rec);
57 /// getQualifiedName - Return the name of the specified record, with a
58 /// namespace qualifier if the record contains one.
59 std::string getQualifiedName(const Record *R);
65 Record *TargetRec;
67 mutable DenseMap<const Record*, CodeGenInstruction*> Instructions;
69 mutable std::vector<Record*> RegAltNameIndices;
79 Record *getTargetRecord() const { return TargetRec;
    [all...]
CodeGenRegisters.h 19 #include "llvm/TableGen/Record.h"
36 Record *TheDef;
41 typedef std::map<Record*, CodeGenRegister*, LessRecord> SubRegMap;
43 CodeGenRegister(Record *R, unsigned Enum);
91 std::vector<SmallVector<Record*, 16> > Orders;
97 Record *TheDef;
105 DenseMap<Record*, CodeGenRegisterClass*> SubClassWithSubReg;
116 DenseMap<Record*,Record*> SubRegClasses;
119 // Return the Record that defined this class, or NULL if the class wa
    [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.h 18 #include "llvm/TableGen/Record.h"
30 typedef std::multimap<Record*, Record*> ChildMap;
34 Record Root;
46 // the record's name plus the base suffix, but if it is the root node and
48 std::string baseName(Record &R) {
55 std::pair<Record *, Record *> EmitNode (const ChildMap &Tree, raw_ostream& OS,
56 Record *Base);
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor.h 31 // A data record of activity performed by extension |extension_id|.
32 struct Record {
33 Record() : bookmark_write_count(0U) {}
36 // for the activity reported in this Record.
44 typedef std::map<std::string, Record> Records;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 49 /// ConvertToString - Convert a string from a record into an std::string, return
52 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
54 if (Idx > Record.size())
57 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
58 Result += (char)Record[i];
421 return Error("Malformed block record");
426 SmallVector<uint64_t, 64> Record;
443 return Error("Malformed block record");
452 // Read a record.
453 Record.clear()
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 62 /// ConvertToString - Convert a string from a record into an std::string, return
65 static bool ConvertToString(SmallVector<uint64_t, 64> &Record, unsigned Idx,
67 if (Idx > Record.size())
70 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
71 Result += (char)Record[i];
396 return Error("Malformed block record");
401 SmallVector<uint64_t, 64> Record;
418 return Error("Malformed block record");
427 // Read a record.
428 Record.clear()
    [all...]
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 23 class Record;

Completed in 2199 milliseconds

1 2 3 4 5 6 7