Searched refs:record (Results 101 - 125 of 508) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineView.js133 var record = eventDividerRecords[i];
134 var position = this._calculator.computePosition(record.startTime());
138 var title = this._uiUtils.titleForRecord(record);
139 var divider = this._uiUtils.createEventDivider(record.type(), title);
208 * @param {!WebInspector.TimelineModel.Record} record
210 addRecord: function(record)
212 this._presentationModel.addRecord(record);
340 // Presentation record does not have model record to highlight.
345 this._uiUtils.aggregateTimeForRecord(aggregatedStats, presentationChildren[i].record());
[all...]
H A DTimelinePowerOverview.js28 // The last record is not used, as its "value" is not set.
69 var record = event.data;
70 var curTime = record.timestamp;
74 this._records[length - 1].value = record.value;
78 accumulatedEnergy += (curTime - prevTime) * record.value;
81 this._records.push(record);
143 var record = records[i];
144 if (record.timestamp < minTime || record.timestamp > maxTime)
146 maxPower = Math.max(maxPower, record
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSOutgoing.java161 MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2);
162 rec.write(record);
163 byte[] byteArray = record.toByteArray();
243 MessageOutputStream record = new MessageOutputStream(512, this);
244 record.writeQuestion(rec);
245 byte[] byteArray = record.toByteArray();
277 MessageOutputStream record = new MessageOutputStream(512, this);
278 record.writeRecord(rec, now);
279 byte[] byteArray = record.toByteArray();
297 MessageOutputStream record
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmcleak.stderrB.exp3 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
28 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
33 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
38 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record
[all...]
/external/chromium_org/net/dns/
H A Ddns_response_unittest.cc107 // Type CNAME record.
115 0x03, 'f', 'o', 'o', // compressed name in record
117 // Type A record.
130 DnsResourceRecord record; local
131 EXPECT_TRUE(parser.ReadRecord(&record));
132 EXPECT_EQ("example.com", record.name);
133 EXPECT_EQ(dns_protocol::kTypeCNAME, record.type);
134 EXPECT_EQ(dns_protocol::kClassIN, record.klass);
135 EXPECT_EQ(0x00012474u, record.ttl);
136 EXPECT_EQ(6u, record
239 DnsResourceRecord record; local
266 DnsResourceRecord record; local
310 DnsResourceRecord record; local
368 DnsResourceRecord record; local
[all...]
H A Dmdns_cache.h25 // record expiration.
28 // Key type for the record map. It is a 3-tuple of type, name and optional
45 // Create the cache key corresponding to |record|.
46 static Key CreateFor(const RecordParsed* record);
65 // Return value indicates whether the record was added, changed
68 UpdateType UpdateDnsRecord(scoped_ptr<const RecordParsed> record);
70 // Check cache for record with key |key|. Return the record if it exists, or
82 // record.
86 // Returns a time less than or equal to the next time a record wil
[all...]
/external/chromium_org/third_party/skia/tests/
H A DFontNamesTest.cpp115 SkOTTableName::Iterator::Record record; local
117 while (nameIndex < test[i].nameCount && iter.next(record)) {
119 strcmp(test[i].names[nameIndex].name, record.name.c_str()) == 0,
124 strcmp(test[i].names[nameIndex].language, record.language.c_str()) == 0,
128 //printf("%s <%s>\n", record.name.c_str(), record.language.c_str());
136 REPORTER_ASSERT_MESSAGE(reporter, !iter.next(record),
182 SkOTTableName::Iterator::Record record; local
185 while (familyNameIter.next(record)) {
187 SkOTTableName::Record::NameID::Predefined::FontFamilyName == record
[all...]
H A DRecordTestUtils.h21 // Assert that the ith command in record is of type T, and return it.
23 static const T* assert_type(skiatest::Reporter* r, const SkRecord& record, unsigned index) { argument
25 record.visit<void>(index, reader);
/external/chromium_org/tools/telemetry/telemetry/web_perf/
H A Dtimeline_interaction_record_unittest.py76 # Make a record that starts at 30ms and ends at 60ms in thread time.
81 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
85 self.assertEquals(0, record.GetOverlappedThreadTimeForSlice(s1))
89 self.assertEquals(0, record.GetOverlappedThreadTimeForSlice(s2))
93 self.assertEquals(20, record.GetOverlappedThreadTimeForSlice(s3))
97 self.assertEquals(10, record.GetOverlappedThreadTimeForSlice(s4))
101 self.assertEquals(10, record.GetOverlappedThreadTimeForSlice(s5))
113 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
119 self.assertEquals(expected_repr, repr(record))
129 # Make a record tha
[all...]
/external/skia/tests/
H A DFontNamesTest.cpp115 SkOTTableName::Iterator::Record record; local
117 while (nameIndex < test[i].nameCount && iter.next(record)) {
119 strcmp(test[i].names[nameIndex].name, record.name.c_str()) == 0,
124 strcmp(test[i].names[nameIndex].language, record.language.c_str()) == 0,
128 //printf("%s <%s>\n", record.name.c_str(), record.language.c_str());
136 REPORTER_ASSERT_MESSAGE(reporter, !iter.next(record),
186 SkOTTableName::Iterator::Record record; local
189 while (familyNameIter.next(record)) {
191 SkOTTableName::Record::NameID::Predefined::FontFamilyName == record
[all...]
H A DRecordTestUtils.h21 // Assert that the ith command in record is of type T, and return it.
23 static const T* assert_type(skiatest::Reporter* r, const SkRecord& record, unsigned index) { argument
25 record.visit<void>(index, reader);
/external/chromium_org/tools/clang/plugins/
H A DChromeClassTester.cpp64 if (CXXRecordDecl* record = dyn_cast<CXXRecordDecl>(tag)) {
68 if (record->isPOD() ||
69 record->getDescribedClassTemplate() ||
70 record->getTemplateSpecializationKind() ||
71 record->isDependentType())
74 if (InBannedNamespace(record))
77 SourceLocation record_location = record->getInnerLocStart();
84 std::string base_name = record->getNameAsString();
93 CheckChromeClass(record_location, record);
121 bool ChromeClassTester::InBannedNamespace(const Decl* record) { argument
131 GetNamespace(const Decl* record) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtrace-event-parse.c145 struct pevent_record record; local
147 record.data = data;
148 return pevent_data_type(pevent, &record);
153 struct pevent_record record; local
155 record.data = data;
156 return pevent_data_pid(pevent, &record);
167 struct pevent_record record; local
170 memset(&record, 0, sizeof(record));
171 record
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dgjslint.py96 for record in results:
97 yield record
115 for record in results:
116 yield record
194 for record in error_records:
196 if current_path != record.path:
197 current_path = record.path
201 print record.error_string
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record.h15 // NfcNdefRecord represents an NDEF (NFC Data Exchange Format) record. NDEF is
18 // messages. An NDEF record contains typed data, such as MIME-type media, a URI,
23 // NDEF record types that define the payload of the NDEF record.
34 // The following are strings that define a possible field of an NDEF record.
36 // Not all fields are always present in an NDEF record, where the presence
37 // of a field depends on the type of the record. While some fields are
38 // required for a specific record type, others can be optional and won't
69 // fields of a "URI" record, in addition to the following:
73 // contains the possible fields of a "Text" record
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRecording.cpp8 #include "../../include/record/SkRecording.h"
17 SkPlayback::SkPlayback(const SkRecord* record) : fRecord(record) {} argument
/external/guava/guava-testlib/src/com/google/common/testing/
H A DTestLogHandler.java61 * Adds the most recently logged record to our list.
64 public void publish(LogRecord record) { argument
65 list.add(record);
/external/replicaisland/src/com/replica/replicaisland/
H A DInventoryComponent.java36 public void applyUpdate(UpdateRecord record) { argument
37 mInventory.add(record);
/external/skia/src/core/
H A DSkRecording.cpp8 #include "../../include/record/SkRecording.h"
17 SkPlayback::SkPlayback(const SkRecord* record) : fRecord(record) {} argument
/external/valgrind/main/memcheck/tests/
H A Dtrivialleak.stderr.exp1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
/external/chromium_org/content/browser/appcache/
H A Dappcache.cc182 const AppCacheDatabase::OnlineWhiteListRecord& record = whitelists.at(i); local
185 record.namespace_url,
187 record.is_pattern));
210 AppCacheDatabase::EntryRecord& record = entries->back(); local
211 record.url = iter->first;
212 record.cache_id = cache_id_;
213 record.flags = iter->second.types();
214 record.response_id = iter->second.response_id();
215 record.response_size = iter->second.response_size();
216 cache_record->cache_size += record
223 AppCacheDatabase::NamespaceRecord& record = intercepts->back(); local
231 AppCacheDatabase::NamespaceRecord& record = fallbacks->back(); local
239 AppCacheDatabase::OnlineWhiteListRecord& record = whitelists->back(); local
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DFilterTest.java39 public boolean isLoggable(LogRecord record) { argument
/external/chromium_org/content/test/
H A Dfileapi_test_file_set.h31 // Creates one file or directory specified by |record|.
33 const FileSystemTestCaseRecord& record);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DLocalFontFaceSource.h25 void record(bool loadSuccess);
/external/chromium_org/third_party/skia/tools/
H A DDumpRecord.cpp104 void DumpRecord(const SkRecord& record, argument
107 Dumper dumper(canvas, record.count(), timeWithCommand);
108 for (unsigned i = 0; i < record.count(); i++) {
109 record.visit<void>(i, dumper);

Completed in 955 milliseconds

1234567891011>>