HomeSort by relevance Sort by last modified time
    Searched defs:Record (Results 1 - 25 of 56) 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/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 {
84 /** Type of record. */
90 /** Record time (ns). */
99 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/v8/src/
code-stubs.cc 386 bool ToBooleanStub::Types::Record(Handle<Object> object) {