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

1 2 3

  /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 13 typedef int Record;
14 UnboundQueue<Record> cq;
18 Record rec = 0;
26 typedef int Record;
27 UnboundQueue<Record> cq;
35 Record rec = 0;
test-circular-queue.cc 13 typedef SamplingCircularQueue::Cell Record;
15 SamplingCircularQueue scq(sizeof(Record),
16 kRecordsPerChunk * sizeof(Record),
24 for (Record i = 1; i < 1 + kRecordsPerChunk; ++i) {
25 Record* rec = reinterpret_cast<Record*>(scq.Enqueue());
33 for (Record i = 10; i < 10 + kRecordsPerChunk; ++i) {
34 Record* rec = reinterpret_cast<Record*>(scq.Enqueue());
40 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/smack/src/org/xbill/DNS/
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...]
Generator.java 25 /** The pattern to use for generating record names. */
37 /** The pattern to use for generating record data. */
62 * @param namePattern The pattern to use for generating record names.
67 * @param rdataPattern The pattern to use for generating record data.
210 * Constructs and returns the next record in the expansion.
214 public Record
222 return Record.fromString(name, type, dclass, ttl, rdata, origin);
227 * @throws IOException The name or rdata of a record was invalid after
230 public Record []
237 list.add(Record.fromString(name, type, dclass, ttl
    [all...]
Record.java 11 * A generic DNS resource record. The specific record types extend this class.
12 * A record contains a name, type, class, ttl, and rdata.
17 public abstract class Record implements Cloneable, Comparable, Serializable {
32 Record() {}
34 Record(Name name, int type, int dclass, long ttl) {
47 * Creates an empty record of the correct type; must be overriden
49 abstract Record
52 private static final Record
54 Record proto, rec
    [all...]
  /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 37 CXXRecordDecl *Record;
  /external/icu4c/i18n/unicode/
alphaindex.h 476 * Add a record to the index. Each record will be associated with an index Bucket
477 * based on the record's name. The list of records for each bucket will be sorted
482 * @param name The display name for the Record. The Record will be placed in
486 * data pointer the name will be available for each Record.
528 * Given the name of a record, return the zero-based index of the Bucket
530 * A Record will not be added to the index by this function.
605 * Advance to the next record in the current Bucket.
606 * When nextBucket() is called, Record iteration is reset to just before th
    [all...]
  /frameworks/base/tools/preload/
Record.java 20 class Record {
94 /** Type of record. */
100 /** Record time (ns). */
109 Record(String line, int lineNum) {
  /external/v8/src/
code-stubs.cc 386 bool ToBooleanStub::Types::Record(Handle<Object> object) {
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
37 if (!Record->isDependentContext() ||
38 Record->isCurrentInstantiation(CurContext))
39 return Record;
86 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
87 return Record;
    [all...]
JumpDiagnostics.cpp 35 /// GotoScope - This is a record that we use to keep track of all of the
94 // defined scope record for every "goto" and label.
189 const CXXRecordDecl *Record = T->getAsCXXRecordDecl();
190 if (!Record)
194 // record an out diagnostic.
196 if (!Init->isGLValue() && !Record->hasTrivialDestructor())
204 else if (!Record->isPOD())
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 217 RecordData &Record,
224 RecordData &Record,
229 RecordData &Record, unsigned RecStartIdx,
233 RecordData &Record, unsigned &offset,
369 // We found a record.
417 RecordData Record;
418 unsigned recordID = Stream.readRecord(blockOrCode, Record);
421 if (Record.size() < 1) {
425 if (Record[0] > MaxSupportedVersion) {
438 RecordData &Record,
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 90 // Check to see if we have a blockinfo record for this block, with a name.
132 // 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;
402 case BitstreamEntry::Record:
413 Record.clear();
418 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
444 for (unsigned i = 0, e = Record.size(); i != e; ++i)
445 outs() << " op" << i << "=" << (int64_t)Record[i]
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
GestureRecorder.java 41 public abstract class Record {
45 public class MotionEventRecord extends Record {
78 public class TagRecord extends Record {
93 private LinkedList<Record> mRecords = new LinkedList<Record>();
125 for (Record r : mRecords) {
  /external/icu4c/i18n/
alphaindex.cpp 56 // UVector<Record *> support function, delete a Record.
59 delete static_cast<AlphabeticIndex::Record *>(obj);
85 inline AlphabeticIndex::Record *getRecord(const UVector &list, int32_t i) {
86 return static_cast<AlphabeticIndex::Record *>(list[i]);
664 Record *r = getRecord(*inputList_, i);
678 // now put the record into the bucket.
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 141 const CXXRecordDecl *Record = this;
145 I = Record->bases_begin(), E = Record->bases_end(); I != E; ++I) {
157 !Base->isCurrentInstantiation(Record))) {
172 Record = Queue.back(); // not actually a queue.
180 const CXXRecordDecl *Record,
185 // The access of the path down to this record.
189 for (CXXRecordDecl::base_class_const_iterator BaseSpec = Record->bases_begin(),
190 BaseSpecEnd = Record->bases_end();
193 // Find the record of the base class subobjects for this type
    [all...]
ExprCXX.cpp 64 // Loop all record redeclaration looking for an uuid attribute.
717 "Expression bound to a temporary must have record or array type!");
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 137 /// \brief Emit a DIAG record.
150 /// \brief Emit a record for a CharSourceRange.
163 /// \brief Add SourceLocation information the specified record.
165 PresumedLoc PLoc, RecordDataImpl &Record,
168 /// \brief Add SourceLocation information the specified record.
169 void AddLocToRecord(SourceLocation Loc, RecordDataImpl &Record,
173 Record, TokSize);
176 /// \brief Add CharSourceRange information the specified record.
177 void AddCharSourceRangeToRecord(CharSourceRange R, RecordDataImpl &Record,
209 /// \brief The set of constructed record abbreviations
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 39 RecordData &Record;
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
46 : Writer(Writer), Context(Context), Record(Record) {
136 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
143 Record.push_back(FD->doesThisDeclarationHaveABody());
150 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
151 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
152 Record.push_back(D->isInvalidDecl());
153 Record.push_back(D->hasAttrs())
    [all...]
GlobalModuleIndex.cpp 42 /// \brief Describes the record types in the index.
157 case llvm::BitstreamEntry::Record:
176 SmallVector<uint64_t, 64> Record;
178 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
181 if (Record.size() < 1 || Record[0] != CurrentVersion)
187 unsigned ID = Record[Idx++];
191 off_t Size = Record[Idx++];
192 time_t ModTime = Record[Idx++];
195 unsigned NameLen = Record[Idx++]
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 52 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
90 /// CollectBlockInfoNames - This is called by clients that want block/record
122 // Otherwise, add a new record.
136 /// Record - This is a record with a specific AbbrevID.
143 Record
158 BitstreamEntry E; E.Kind = Record; E.ID = AbbrevID; return E;
474 /// over the body of this block. If the block record is malformed, return
523 // Record Processing
542 /// skipRecord - Read the current record and discard it
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 1 //===- llvm/TableGen/Record.h - Classes for Table Records -------*- C++ -*-===//
60 class Record;
370 Record *Rec;
371 explicit RecordRecTy(Record *R) : RecTy(RecordRecTyKind), Rec(R) {}
372 friend class Record;
378 static RecordRecTy *get(Record *R);
380 Record *getRecord() const { return Rec; }
514 /// they are of record type.
522 virtual Init *getFieldInit(Record &R, const RecordVal *RV,
532 virtual Init *resolveReferences(Record &R, const RecordVal *RV) const
    [all...]

Completed in 1259 milliseconds

1 2 3