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

1 2

  /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());
  /external/v8/test/cctest/
test-unbound-queue.cc 15 typedef int Record;
16 UnboundQueue<Record> cq;
20 Record rec = 0;
28 typedef int Record;
29 UnboundQueue<Record> cq;
37 Record rec = 0;
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/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/chromium/base/metrics/
stats_counters.cc 86 // Stop the timer and record the results.
91 Record();
104 void StatsCounterTimer::Record() {
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 36 CXXRecordDecl *Record;
  /frameworks/base/tools/preload/
Record.java 20 class Record {
66 /** Type of record. */
72 /** Record time (ns). */
81 Record(String line, int lineNum) {
  /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/clang/lib/AST/
ExprCXX.cpp 622 "Expression bound to a temporary must have record type!");
    [all...]
CXXInheritance.cpp 124 const CXXRecordDecl *Record = this;
128 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
153 Record = Queue.back(); // not actually a queue.
161 const CXXRecordDecl *Record,
166 // The access of the path down to this record.
170 for (CXXRecordDecl::base_class_const_iterator BaseSpec = Record->bases_begin(),
171 BaseSpecEnd = Record->bases_end();
174 // Find the record of the base class subobjects for this type.
208 Element.Class = Record;
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 35 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
37 return Record;
43 if (CurContext->Equals(Record))
44 return Record;
91 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
92 return Record;
    [all...]
SemaAccess.cpp 100 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC)->getCanonicalDecl();
101 Records.push_back(Record);
102 DC = Record->getDeclContext();
279 assert(T->isDependentType() && "non-dependent base wasn't a record?");
427 CXXRecordDecl *Record = *I;
433 if (isa<ClassTemplateSpecializationDecl>(Record)) {
434 CTD = cast<ClassTemplateSpecializationDecl>(Record)
439 CTD = Record->getDescribedClassTemplate();
646 assert(T->isDependentType() && "non-dependent base wasn't a record?");
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 91 // Check to see if we have a blockinfo record for this block, with a name.
133 // Check to see if we have a blockinfo record for this record, with a name.
346 return Error("Malformed block record");
363 SmallVector<uint64_t, 64> Record;
372 // Read the code for this record.
405 Record.clear();
413 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
439 for (unsigned i = 0, e = Record.size(); i != e; ++i)
440 errs() << " op" << i << "=" << (int64_t)Record[i]
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 1 //===- llvm/TableGen/Record.h - Classes for Table Records -------*- C++ -*-===//
60 class Record;
440 Record *Rec;
441 explicit RecordRecTy(Record *R) : Rec(R) {}
442 friend class Record;
444 static RecordRecTy *get(Record *R);
446 Record *getRecord() const { return Rec; }
546 /// they are of record type.
554 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
564 virtual Init *resolveReferences(Record &R, const RecordVal *RV) const
    [all...]
  /external/clang/lib/Serialization/
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...]
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...]
  /external/webp/src/enc/
frame.c 95 // Record proba context used
96 static int Record(int bit, uint64_t* const stats) {
105 // Simulate block coding, but only record statistics.
106 // Note: no need to record the fixed probas.
110 if (!Record(res->last >= 0, s[0])) {
116 if (!Record(v != 0, s[1])) {
120 if (!Record(2u < (unsigned int)(v + 1), s[2])) { // v = -1 or 1
125 if (!Record(v > 4, s[3])) {
126 if (Record(v != 2, s[4]))
127 Record(v == 4, s[5])
    [all...]
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 58 private static class Record {
72 private final ArrayList<Record> mRecords = new ArrayList<Record>();
147 Record r = null;
157 r = new Record();
265 for (Record r : mRecords) {
285 for (Record r : mRecords) {
305 for (Record r : mRecords) {
334 for (Record r : mRecords) {
353 for (Record r : mRecords)
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 177 // Only record types have members that might require garbage collection.
182 RecordDecl *Record = RecordTy->getDecl();
183 if (isa<CXXRecordDecl>(Record) &&
184 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() ||
185 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor()))
189 return Record->hasObjectMember();
828 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); local
830 if (record->isUnion()) {
839 for (RecordDecl::field_iterator Field = record->field_begin(),
840 FieldEnd = record->field_end()
    [all...]
CGClass.cpp 292 // If the record matches the base, this is the complete ctor/dtor
531 static bool hasTrivialCopyOrMoveConstructor(const CXXRecordDecl *Record,
533 return Moving ? Record->hasTrivialMoveConstructor() :
534 Record->hasTrivialCopyConstructor();
598 const CXXRecordDecl *Record = BaseElementTy->getAsCXXRecordDecl();
600 (Record && hasTrivialCopyOrMoveConstructor(Record,
1179 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl()); local
    [all...]
CGException.cpp 424 // trivial destructor (or isn't a record), we just pass null.
427 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
428 if (!Record->hasTrivialDestructor()) {
429 CXXDestructorDecl *DtorD = Record->getDestructor();
868 /// - Catches of non-record types will only trigger for exceptions
869 /// of non-record types, which never have destructors.
870 /// - Catches of record types can trigger for arbitrary subclasses
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 152 // Emit the finished record.
164 SmallVector<uint64_t, 64> Record;
169 Record.push_back(PAWI.Index);
180 Record.push_back(FauxAttr);
183 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
184 Record.clear();
343 // Emit the finished record.
554 SmallVector<uint64_t, 64> &Record) {
557 Record.push_back(VE.getTypeID(N->getOperand(i)->getType()));
558 Record.push_back(VE.getValueID(N->getOperand(i)))
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 64 m_records.append(Record(resource, storageID));
73 class Record {
75 Record() : m_resource(0), m_storageID(0) { }
76 Record(T* resource, unsigned storageID) : m_resource(resource), m_storageID(storageID) { }
88 Vector<Record> m_records;
438 // If an Origin record doesn't exist, then the COUNT will be 0 and quota will be 0.
439 // Using the count to determine if a record existed or not is a safe way to determine
440 // if a quota of 0 is real, from the record, or from null.
461 // If an Origins record doesn't exist, then the SUM will be null,
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 124 // Emit the finished record.
136 SmallVector<uint64_t, 64> Record;
141 Record.push_back(PAWI.Index);
152 Record.push_back(FauxAttr);
155 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
156 Record.clear();
201 // Emit the finished record.
225 // Emit the finished record.
382 // Emit the finished record.
594 SmallVector<uint64_t, 64> &Record) {
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 288 /// \brief A record of the macro definitions and expansions that
293 PreprocessingRecord *Record;
502 /// \brief Retrieve the preprocessing record, or NULL if there is no
503 /// preprocessing record.
504 PreprocessingRecord *getPreprocessingRecord() const { return Record; }
506 /// \brief Create a new preprocessing record, which will keep track of
    [all...]

Completed in 831 milliseconds

1 2