Searched defs:record (Results 26 - 50 of 241) sorted by relevance

12345678910

/external/skia/tests/
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);
H A DRecorderTest.cpp31 void apply(const SkRecord& record) { argument
32 for (unsigned i = 0; i < record.count(); i++) {
33 record.visit<void>(i, *this);
42 SkRecord record; local
43 SkRecorder recorder(&record, 1920, 1080);
48 tally.apply(record);
64 SkRecord record; local
65 SkRecorder recorder(&record, 1920, 1080);
H A DRecordDrawTest.cpp31 static void record_clipped(const SkRecord& record, SkRect clip, SkRecord* clipped) { argument
34 SkRecordDraw(record, &recorder);
38 SkRecord record; local
39 SkRecorder recorder(&record, W, H);
44 SkRecordBoundDrawPosTextH(&record);
47 record_clipped(record, SkRect::MakeLTRB(20, 20, 200, 200), &clipped);
55 SkRecord record; local
56 SkRecorder recorder(&record, W, H);
67 SkRecordAnnotateCullingPairs(&record);
71 record_clipped(record, SkRec
[all...]
/external/skia/tools/
H A Ddump_record.cpp26 static void dump(const char* name, int w, int h, const SkRecord& record) { argument
35 DumpRecord(record, &canvas, FLAGS_timeWithCommand);
62 SkRecord record; local
63 SkRecorder canvas(&record, w, h);
67 SkRecordOptimize(&record);
70 dump(FLAGS_skps[i], w, h, record);
/external/valgrind/main/drd/tests/
H A Dstd_string.cpp38 std::list<std::string> record; local
39 record.push_back("some data");
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dtrace-event-listener.rb10 Subclasses can override the record() method (which defaults to printing to
11 stdout) to record the events in a different way.
23 def record( event_message, *interpolation_arguments ) method in class:ANTLR3.Debug.TraceEventListener
29 record "(%s): number=%s", __method__, alt_number
33 record "(%s): rule=%s", __method__, rule_name
37 record "(%s): rule=%s", __method__, rule_name
41 record "(%s): decision=%s", __method__, decision_number
45 record "(%s): decision=%s", __method__, decision_number
49 record '(%s): line=%s position=%s', __method__, line, position
53 record '(
[all...]
/external/chromium_org/chrome/browser/
H A Dcrash_upload_list_win.cc37 EVENTLOGRECORD* record = (EVENTLOGRECORD*)&buffer[record_offset]; local
38 DCHECK(record_offset + record->Length <= bytes_read);
39 if (IsPossibleCrashLogRecord(record))
40 ProcessPossibleCrashLogRecord(record);
41 record_offset += record->Length;
58 EVENTLOGRECORD* record) const {
59 LPWSTR provider_name = (LPWSTR)((uint8*)record + sizeof(EVENTLOGRECORD));
61 record->EventType == EVENTLOG_INFORMATION_TYPE &&
62 record->NumStrings >= 1;
65 void CrashUploadListWin::ProcessPossibleCrashLogRecord(EVENTLOGRECORD* record) { argument
[all...]
/external/chromium_org/content/public/browser/
H A Dnotification_registrar.cc50 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
109 return std::find(registered_.begin(), registered_.end(), record) !=
/external/chromium_org/net/dns/
H A Drecord_parsed.cc27 DnsResourceRecord record; local
30 if (!parser->ReadRecord(&record))
33 switch (record.type) {
35 rdata = ARecordRdata::Create(record.rdata, *parser);
38 rdata = AAAARecordRdata::Create(record.rdata, *parser);
41 rdata = CnameRecordRdata::Create(record.rdata, *parser);
44 rdata = PtrRecordRdata::Create(record.rdata, *parser);
47 rdata = SrvRecordRdata::Create(record.rdata, *parser);
50 rdata = TxtRecordRdata::Create(record.rdata, *parser);
53 rdata = NsecRecordRdata::Create(record
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DJsDocValidator.java58 for (ValidatorContext.MessageRecord record : records) {
59 entries.add(new LogEntry(context.scriptFileName, record));
64 System.err.println(entry.record.text);
76 private final ValidatorContext.MessageRecord record; field in class:JsDocValidator.LogEntry
78 LogEntry(String fileName, ValidatorContext.MessageRecord record) { argument
80 this.record = record;
89 return Integer.compare(record.position, other.record.position);
94 return 17 + fileName.hashCode() * 3 + this.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/chromium_org/third_party/skia/tests/
H A DRecordTest.cpp29 void apply(const SkRecord& record) { argument
30 for (unsigned i = 0; i < record.count(); i++) {
31 record.visit<void>(i, *this);
47 void apply(SkRecord* record) { argument
48 for (unsigned i = 0; i < record->count(); i++) {
49 record->mutate<void>(i, *this);
54 #define APPEND(record, type, ...) SkNEW_PLACEMENT_ARGS(record.append<type>(), type, (__VA_ARGS__))
58 SkRecord record; local
63 APPEND(record, SkRecord
87 SkRecord record; local
[all...]
H A DRecorderTest.cpp31 void apply(const SkRecord& record) { argument
32 for (unsigned i = 0; i < record.count(); i++) {
33 record.visit<void>(i, *this);
42 SkRecord record; local
43 SkRecorder recorder(&record, 1920, 1080);
48 tally.apply(record);
55 SkRecord record; local
56 SkRecorder recorder(&record, 1920, 1080);
64 tally.apply(record);
74 SkRecord record; local
97 SkRecord record; local
117 SkRecord record; local
128 SkRecord record; local
[all...]
/external/chromium_org/tools/gn/
H A Dcommand_gen.cc37 const BuilderRecord* record) {
40 const Item* item = record->item();
35 ItemResolvedCallback(base::subtle::Atomic32* write_counter, scoped_refptr<Builder> builder, const BuilderRecord* record) argument
/external/icu/icu4c/source/layout/
H A DLEInsertionList.cpp39 InsertionRecord *record = head; local
42 LE_DELETE_ARRAY(record);
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_mcsn.h38 unsigned short record; /* Record capability */ member in struct:__anon29386
41 unsigned short rint; /* Interrupt at end of record */
/external/replicaisland/src/com/replica/replicaisland/
H A DInventoryComponent.java36 public void applyUpdate(UpdateRecord record) { argument
37 mInventory.add(record);
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DXMLFormatterTest.java96 assertTrue(output.indexOf("<record>") >= 0);
117 assertTrue(output.indexOf("<record>") >= 0);
228 public void publish(LogRecord record) { argument
/external/chromium_org/chrome/browser/sync/
H A Dabstract_profile_sync_service_test.cc25 syncer::ChangeRecord record; local
26 record.action = action;
27 record.id = node_id;
28 syncer::ChangeRecordList records(1, record);
36 syncer::ChangeRecord record; local
37 record.action = syncer::ChangeRecord::ACTION_DELETE;
38 record.id = node_id;
39 record.specifics = specifics;
40 syncer::ChangeRecordList records(1, record);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Ddns_packet_parser.h13 // Parsed response record.
41 // Parses the next query record into |record|. Returns true if succeeded.
42 bool ReadRecord(DnsQueryRecord* record);
44 // Parses the next resource record into |record|. Returns true if succeeded.
45 bool ReadRecord(net::DnsResourceRecord* record) { argument
46 return record_parser_.ReadRecord(record);
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record_utils_chromeos.cc160 const NfcNdefRecord* record,
162 DCHECK(record);
164 if (!record->IsPopulated()) {
169 NfcRecordTypeEnumToPropertyValue(record->type()));
170 return ConvertNdefFieldsToDBusAttributes(record->data(), out);
205 // differently, depending on whether the record type is "SmartPoster" or
233 // Populate the given record.
159 NfcNdefRecordToDBusAttributes( const NfcNdefRecord* record, base::DictionaryValue* out) argument
H A Dnfc_tag_technology.h81 // This method will be called when an NDEF record |record|, stored on the
86 virtual void RecordReceived(NfcTag* tag, 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/core/dom/
H A DChildListMutationScope.cpp141 RefPtrWillBeRawPtr<MutationRecord> record = MutationRecord::createChildList(m_target, addedNodes.release(), removedNodes.release(), m_previousSibling.release(), m_nextSibling.release()); local
142 m_observers->enqueueMutationRecord(record.release());
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DContextTrackingState.java43 void pushTypeRecord(TypeRecord record) { argument
44 typeRecords.addLast(record);
51 void pushFunctionRecord(FunctionRecord record) { argument
52 functionRecords.addLast(record);

Completed in 637 milliseconds

12345678910