Searched refs:record (Results 176 - 200 of 508) sorted by relevance

1234567891011>>

/external/chromium_org/device/nfc/
H A Dnfc_peer.h40 // This method will be called when an NDEF record |record| from the peer
45 virtual void RecordReceived(NfcPeer* peer, const NfcNdefRecord* record) {} argument
/external/chromium_org/printing/
H A Demf_win.h41 // Generates a virtual HDC that will record every GDI commands and compile
49 // Generates a new metafile that will record every GDI command, and will
107 // Playbacks safely one EMF record.
110 const ENHMETARECORD* record,
133 // One EMF record. It keeps pointers to the EMF buffer held by Emf::emf_.
137 // Plays the record.
140 // Plays the record working around quirks with SetLayout,
144 // Access the underlying EMF record.
145 const ENHMETARECORD* record() const { return record_; } function in class:printing::Emf::Record
148 explicit Record(const ENHMETARECORD* record);
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContextRecorder.h67 GraphicsContext* record(const IntSize&, bool isCertainlyOpaque);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dmetered_stream.py134 def emit(self, record):
135 self._meter.writeln(record.getMessage(), record.created, record.process)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dheaderparserhandler.py94 def emit(self, record):
96 if record.levelno in ApacheLogHandler._LEVELS:
97 apache_level = ApacheLogHandler._LEVELS[record.levelno]
99 msg = self._formatter.format(record)
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_reader.cc47 // Skip to start of first block that can contain the initial record
59 bool Reader::ReadRecord(Slice* record, std::string* scratch) { argument
67 record->clear();
69 // Record offset of the logical record that we're reading
81 // it could emit an empty kFirstType record at the tail end
82 // of a block followed by a kFullType or kFirstType record
87 ReportCorruption(scratch->size(), "partial record without end(1)");
92 *record = fragment;
99 // it could emit an empty kFirstType record at the tail end
100 // of a block followed by a kFullType or kFirstType record
[all...]
H A Dlog_reader.h41 // The Reader will start reading at the first record located at physical
48 // Read the next record into *record. Returns true if read
50 // "*scratch" as temporary storage. The contents filled in *record
53 bool ReadRecord(Slice* record, std::string* scratch);
55 // Returns the physical offset of the last record returned by ReadRecord.
68 // Offset of the last record returned by ReadRecord.
73 // Offset at which to start looking for the first record to return
76 // Extend record types with the following special values
79 // Returned whenever we find an invalid physical record
[all...]
H A Dlog_test.cc136 Slice record; local
137 if (reader_.ReadRecord(&record, &scratch)) {
138 return record.ToString();
186 std::string record(initial_offset_record_sizes_[i],
188 Write(record);
198 Slice record; local
200 ASSERT_TRUE(!offset_reader->ReadRecord(&record, &scratch));
211 Slice record; local
213 ASSERT_TRUE(offset_reader->ReadRecord(&record, &scratch));
215 record
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPicture.cpp109 bool WillPlaybackBitmaps(const SkRecord& record) { argument
111 for (unsigned i = 0; i < record.count(); i++) {
112 if (record.visit<bool>(i, tester)) {
197 SkPicture::Analysis::Analysis(const SkRecord& record) { argument
198 fWillPlaybackBitmaps = WillPlaybackBitmaps(record);
201 for (unsigned i = 0; i < record.count(); i++) {
202 record.visit<void>(i, counter);
211 for (unsigned i = 0; i < record.count(); i++) {
212 if (record.visit<bool>(i, text)) {
255 const SkPictureRecord& record,
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRecordReplaceDraw.cpp69 void GrRecordReplaceDraw(const SkRecord& record, argument
109 record.visit<void>((uintptr_t)ops[i], draw);
112 for (unsigned int i = 0; i < record.count(); ++i) {
123 record.visit<void>(i, draw);
/external/libsepol/src/
H A Dcontext.h19 sepol_context_t ** record);
/external/lldb/test/unittest2/test/
H A Dtest_unittest2_with.py73 with catch_warnings(record=True):
81 with catch_warnings(record=True):
88 with catch_warnings(record=True) as log:
132 with catch_warnings(record=True):
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTracingTimelineUIUtils.js16 * @param {!WebInspector.TimelineModel.Record} record
19 isBeginFrame: function(record)
21 return record.type() === WebInspector.TracingTimelineModel.RecordType.BeginFrame;
25 * @param {!WebInspector.TimelineModel.Record} record
28 isProgram: function(record)
30 return record.type() === WebInspector.TracingTimelineModel.RecordType.Program;
43 * @param {!WebInspector.TimelineModel.Record} record
46 isEventDivider: function(record)
48 return WebInspector.TracingTimelineUIUtils.isMarkerEvent(record.traceEvent());
52 * @param {!WebInspector.TimelineModel.Record} record
[all...]
H A DTimelineUIUtils.js39 * @param {!WebInspector.TimelineModel.Record} record
42 isBeginFrame: function(record)
47 * @param {!WebInspector.TimelineModel.Record} record
50 isProgram: function(record)
63 * @param {!WebInspector.TimelineModel.Record} record
66 isEventDivider: function(record)
71 * @param {!WebInspector.TimelineModel.Record} record
74 countersForRecord: function(record)
79 * @param {!WebInspector.TimelineModel.Record} record
82 highlightQuadForRecord: function(record)
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dlogutils.py136 def should_log(record):
138 if record.name.startswith("webkitpy.thirdparty"):
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
H A Dmainthread_jank_stats_unittest.py61 # Make a record that starts at 200ms and ends at 800ms in thread time
62 record = self.CreateTestRecord('test', 100, 700, 200, 800, renderer_main)
65 renderer_main, record)
/external/chromium_org/v8/test/mjsunit/
H A Darray-reduce.js51 var record = [];
57 if (record.length > 0) {
58 var prevRecord = record[record.length - 1];
66 record.push(args);
69 f.record = record;
89 var calls = rec.record;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
H A DFontTableBox.java46 for (FontRecord record : entries) {
47 record.getContent(byteBuffer);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorTimelineAgent.cpp177 TimelineRecordEntry(PassRefPtr<TimelineEvent> record, PassRefPtr<JSONObject> data, PassRefPtr<TypeBuilder::Array<TimelineEvent> > children, const String& type) argument
178 : record(record)
185 RefPtr<TimelineEvent> record; member in struct:blink::TimelineRecordEntry
196 Entry(PassRefPtr<TimelineEvent> record, const String& type) argument
197 : record(record)
205 RefPtr<TimelineEvent> record; member in struct:blink::TimelineRecordStack::Entry
216 void addScopedRecord(PassRefPtr<TimelineEvent> record, const String& type);
218 void addInstantRecord(PassRefPtr<TimelineEvent> record);
286 RefPtr<TimelineEvent> record = TimelineRecordFactory::createGenericRecord( local
971 RefPtr<TimelineEvent> record = TimelineRecordFactory::createBackgroundRecord(timestamp, String::number(event.threadIdentifier()), TimelineRecordType::Rasterize, data); local
1102 RefPtr<TimelineEvent> record = TimelineRecordFactory::createGenericRecord(timestamp, 0, TimelineRecordType::EmbedderCallback, data); local
1112 addRecordToTimeline(PassRefPtr<TimelineEvent> record, double ts) argument
1122 innerAddRecordToTimeline(PassRefPtr<TimelineEvent> record) argument
1154 setFrameIdentifier(TimelineEvent* record, LocalFrame* frame) argument
1228 RefPtr<TimelineEvent> record = TimelineRecordFactory::createGenericRecord(ts, captureCallStack ? m_maxCallStackDepth : 0, type, data); local
1233 sendEvent(PassRefPtr<TimelineEvent> record) argument
1247 RefPtr<TimelineEvent> record = TimelineRecordFactory::createGenericRecord(timestamp(), captureCallStack ? m_maxCallStackDepth : 0, type, data.get()); local
1337 addScopedRecord(PassRefPtr<TimelineEvent> record, const String& type) argument
1354 addInstantRecord(PassRefPtr<TimelineEvent> record) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/
H A Dliblouis.js201 this.pendingTranslators_.forEach(goog.bind(function(record) {
202 this.getTranslator(record.tableNames, record.callback);
216 this.pendingTranslators_.forEach(goog.bind(function(record) {
217 this.getTranslator(record.tableNames, record.callback);
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_search.js54 * Used to record usage statistics.
149 this.metrics_.record(
155 this.metrics_.record(
170 this.metrics_.record(print_preview.Metrics.DestinationSearchBucket.
178 this.metrics_.record(
223 this.metrics_.record(print_preview.Metrics.DestinationSearchBucket.
354 this.metrics_.record(
463 this.metrics_.record(print_preview.Metrics.DestinationSearchBucket.
556 this.metrics_.record(print_preview.Metrics.DestinationSearchBucket.
629 this.metrics_.record(
[all...]
/external/chromium_org/net/dns/
H A Dmdns_client_impl.h142 const ListenerKey& key, const RecordParsed* record);
150 // Callback for when a record is removed from the cache.
151 void OnRecordRemoved(const RecordParsed* record);
153 void NotifyNsecRecord(const RecordParsed* record);
221 // Alert the delegate of a record update.
225 // Alert the delegate of the existence of an Nsec record.
265 const RecordParsed* record) OVERRIDE;
277 const RecordParsed* record);
279 // Internal callback for when a cache record is found.
280 void CacheRecordFound(const RecordParsed* record);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLTreeBuilderSimulator.cpp118 for (HTMLElementStack::ElementRecord* record = treeBuilder->openElements()->topRecord(); record; record = record->next()) {
120 if (record->namespaceURI() == SVGNames::svgNamespaceURI)
122 else if (record->namespaceURI() == MathMLNames::mathmlNamespaceURI)
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dgjslint.py135 for record in results:
136 yield record
219 for record in error_records:
221 if current_path != record.path:
222 current_path = record.path
226 print record.error_string
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_screen_svga.c247 const SVGA3dCapsRecord *record; local
249 record = (const SVGA3dCapsRecord *) (capsBlock + offset);
250 if ((record->header.type >= SVGA3DCAPS_RECORD_DEVCAPS_MIN) &&
251 (record->header.type <= SVGA3DCAPS_RECORD_DEVCAPS_MAX) &&
252 (!capsRecord || (record->header.type > capsRecord->header.type))) {
253 capsRecord = record;
261 * Calculate the number of caps from the size of the record.

Completed in 881 milliseconds

1234567891011>>