/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/chromium_org/v8/test/cctest/ |
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;
|
test-circular-queue.cc | 38 typedef i::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...] |
/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_org/remoting/base/ |
running_average.cc | 20 void RunningAverage::Record(int64 value) {
|
rate_counter.cc | 20 void RateCounter::Record(int64 value) {
|
/external/chromium_org/sync/util/ |
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++;
|
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;
|
/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_org/content/browser/ |
user_metrics.cc | 22 void Record(const char *action) { 36 Record(action.c_str()); 42 Record(action.str_); 46 Record(action.c_str());
|
/external/chromium_org/media/audio/ |
test_audio_input_controller_factory.cc | 29 void TestAudioInputController::Record() {
|
/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...] |
/external/chromium/base/metrics/ |
stats_counters.cc | 86 // Stop the timer and record the results. 91 Record(); 104 void StatsCounterTimer::Record() {
|
/external/chromium_org/base/metrics/ |
stats_counters.cc | 86 // Stop the timer and record the results. 91 Record(); 104 void StatsCounterTimer::Record() {
|
/external/chromium_org/content/public/browser/ |
notification_registrar.cc | 14 struct NotificationRegistrar::Record { 15 bool operator==(const Record& other) const; 22 bool NotificationRegistrar::Record::operator==(const Record& other) const { 50 Record record = { observer, type, source }; local 51 registered_.push_back(record); 61 Record record = { observer, type, source }; local 63 registered_.begin(), registered_.end(), record); 108 Record record = { observer, type, source }; local [all...] |
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_database_unittest.cc | 53 virtual void Record(ActivityDatabase* db, scoped_refptr<Action> action); 102 void ActivityDatabaseTestPolicy::Record(ActivityDatabase* db, 143 void Record(ActivityDatabase* db, scoped_refptr<Action> action) { 144 db_delegate_->Record(db, action); 199 Record(activity_db, action); 215 // Record some actions 220 Record(activity_db, action); 233 // Record some actions 237 Record(activity_db, action); 255 // Record some action [all...] |
/external/chromium_org/printing/ |
emf_win.h | 36 class Record; 40 // Generates a virtual HDC that will record every GDI commands and compile 45 // Generates a new metafile that will record every GDI command, and will 115 // Playbacks safely one EMF record. 118 const ENHMETARECORD* record, 143 // One EMF record. It keeps pointers to the EMF buffer held by Emf::emf_. 145 class PRINTING_EXPORT Emf::Record { 147 // Plays the record. 150 // Plays the record working around quirks with SetLayout, 154 // Access the underlying EMF record 155 const ENHMETARECORD* record() const { return record_; } function in class:printing::Emf::Record [all...] |
/external/clang/include/clang/Sema/ |
ExternalSemaSource.h | 37 CXXRecordDecl *Record;
|
/external/clang/test/SemaTemplate/ |
derived.cpp | 24 C<long, 64> &Record; 28 AddSourceLocation(Record); // expected-error{{non-const lvalue reference to type}}
|
/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/chromium_org/content/browser/indexed_db/leveldb/ |
leveldb_transaction.cc | 24 LevelDBTransaction::Record::Record() : deleted(false) {} 25 LevelDBTransaction::Record::~Record() {} 43 Record* record = new Record(); local 44 record->key.assign(key.begin(), key.end() - key.begin()); 45 record->value.swap(*value); 46 record->deleted = deleted [all...] |
leveldb_transaction.h | 40 struct Record { 41 Record(); 42 ~Record(); 61 typedef std::map<base::StringPiece, Record*, Comparator> DataType;
|
/external/chromium_org/extensions/common/ |
manifest_handler_unittest.cc | 48 void Record(const std::string& name) { 87 watcher_->Record(name_);
|