Searched refs:record (Results 1 - 25 of 433) sorted by relevance

1234567891011>>

/external/skia/tests/
H A DRecordTest.cpp30 void apply(const SkRecord& record) { argument
31 for (int i = 0; i < record.count(); i++) {
32 record.visit<void>(i, *this);
48 void apply(SkRecord* record) { argument
49 for (int i = 0; i < record->count(); i++) {
50 record->mutate<void>(i, *this);
55 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__}
59 SkRecord record; local
64 APPEND(record, SkRecord
81 SkRecord record; local
107 SkRecord record; local
[all...]
H A DRecordOptsTest.cpp23 SkRecord record; local
24 SkRecorder recorder(&record, W, H);
30 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed.
32 SkRecordNoopSaveRestores(&record);
34 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record));
38 SkRecord record; local
39 SkRecorder recorder(&record, W, H);
45 SkRecordNoopSaveRestores(&record);
47 assert_type<SkRecords::NoOp>(r, record, i);
52 SkRecord record; local
75 SkRecord record; local
103 assert_savelayer_restore(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
117 assert_savelayer_draw_restore(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
133 SkRecord record; local
198 assert_merge_svg_opacity_and_filter_layers(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
213 SkRecord record; local
[all...]
H A DRecordPatternTest.cpp24 SkRecord record; local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0));
27 SkRecorder recorder(&record, 1920, 1200);
31 REPORTER_ASSERT(r, !pattern.match(&record, 0));
34 REPORTER_ASSERT(r, !pattern.match(&record, 0));
37 REPORTER_ASSERT(r, pattern.match(&record, 0));
46 SkRecord record; local
47 SkRecorder recorder(&record, 1920, 1200);
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3);
61 REPORTER_ASSERT(r, !pattern.match(&record,
69 SkRecord record; local
83 SkRecord record; local
107 SkRecord record; local
147 SkRecord record; local
[all...]
H A DRecordTestUtils.h29 // Assert that the ith command in record is of type T, and return it.
31 static const T* assert_type(skiatest::Reporter* r, const SkRecord& record, int index) { argument
33 record.visit<void>(index, reader);
44 template <typename DrawT> int count_instances_of_type(const SkRecord& record) { argument
47 for (int i = 0; i < record.count(); i++) {
48 counter += record.visit<int>(i, matcher);
53 template <typename DrawT> int find_first_instances_of_type(const SkRecord& record) { argument
55 for (int i = 0; i < record.count(); i++) {
56 if (record.visit<int>(i, matcher)) {
H A DRecorderTest.cpp32 void apply(const SkRecord& record) { argument
33 for (int i = 0; i < record.count(); i++) {
34 record.visit<void>(i, *this);
43 SkRecord record; local
44 SkRecorder recorder(&record, 1920, 1080);
49 tally.apply(record);
65 SkRecord record; local
66 SkRecorder recorder(&record, 1920, 1080);
82 SkRecord record; local
83 SkRecorder recorder(&record, 10
97 SkRecord record; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
55 record->payload_length = len;
62 record->id_length = *pos++;
64 record->id_length = 0;
66 record->type = record->type_length == 0 ? NULL : pos;
67 pos += record->type_length;
69 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
86 struct ndef_record record; local
111 struct wpabuf *record; local
155 wifi_filter(struct ndef_record *record) argument
181 p2p_filter(struct ndef_record *record) argument
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
55 record->payload_length = len;
62 record->id_length = *pos++;
64 record->id_length = 0;
66 record->type = record->type_length == 0 ? NULL : pos;
67 pos += record->type_length;
69 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
86 struct ndef_record record; local
111 struct wpabuf *record; local
155 wifi_filter(struct ndef_record *record) argument
181 p2p_filter(struct ndef_record *record) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
55 record->payload_length = len;
62 record->id_length = *pos++;
64 record->id_length = 0;
66 record->type = record->type_length == 0 ? NULL : pos;
67 pos += record->type_length;
69 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
86 struct ndef_record record; local
111 struct wpabuf *record; local
155 wifi_filter(struct ndef_record *record) argument
181 p2p_filter(struct ndef_record *record) argument
[all...]
/external/autotest/tko/
H A Dretrieve_jobs10 for record in db.select('* from tko_jobs ' + arg):
11 print record
/external/jmdns/src/javax/jmdns/impl/
H A DDNSListener.java11 * DNSListener. Listener for record updates.
18 * Update a DNS record.
21 * record cache
24 * @param record
25 * DNS record
27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record); argument
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
H A Dmock_logging_handler.py27 def emit(self, record):
28 self.messages[record.levelname.lower()].append(record.getMessage())
/external/skia/src/core/
H A DSkRecordOpts.cpp23 // record, and [begin,end) span of the commands that matched.
25 static bool apply(Pass* pass, SkRecord* record) { argument
30 while (match.search(record, &begin, &end)) {
31 changed |= pass->onMatch(record, &match, begin, end);
38 static void multiple_set_matrices(SkRecord* record) { argument
45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { argument
46 record->replace<NoOp>(begin); // first SetMatrix
50 while (apply(&pass, record));
56 static void apply_matrix_to_draw_params(SkRecord* record) {
63 bool onMatch(SkRecord* record, Patter
82 onMatch(SkRecord* record, Match*, int begin, int end) argument
158 onMatch(SkRecord* record, Match*, int begin, int end) argument
166 SkRecordNoopSaveRestores(SkRecord* record) argument
179 onMatch(SkRecord* record, Match* match, int begin, int end) argument
206 KillSaveLayerAndRestore(SkRecord* record, int saveLayerIndex) argument
212 SkRecordNoopSaveLayerDrawRestores(SkRecord* record) argument
231 onMatch(SkRecord* record, Match* match, int begin, int end) argument
260 KillSaveLayerAndRestore(SkRecord* record, int saveLayerIndex) argument
267 SkRecordMergeSvgOpacityAndFilterLayers(SkRecord* record) argument
274 SkRecordOptimize(SkRecord* record) argument
287 SkRecordOptimize2(SkRecord* record) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h52 * Related record types are grouped together numerically so that
53 * SVGA3dCaps_FindRecord() can be applied on a range of record
68 * Header field leading each caps block record. Contains the offset (in
69 * register words, NOT bytes) to the next caps block record (or the end
70 * of caps block records which will be a zero word) and the record type
85 * Caps block record; "data" is a placeholder for the actual data structure
86 * contained within the record; for example a record containing a FOOBAR
107 * Finds the record with the highest-valued type within the given range
110 * Result: pointer to found record, o
120 SVGA3dCapsRecord *record, *found = NULL; local
[all...]
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
H A DSLF4JBridgeHandler.java197 protected Logger getSLF4JLogger(LogRecord record) { argument
198 String name = record.getLoggerName();
205 protected void callLocationAwareLogger(LocationAwareLogger lal, LogRecord record) { argument
206 int julLevelValue = record.getLevel().intValue();
220 String i18nMessage = getMessageI18N(record);
221 lal.log(null, FQCN, slf4jLevel, i18nMessage, null, record.getThrown());
224 protected void callPlainSLF4JLogger(Logger slf4jLogger, LogRecord record) { argument
225 String i18nMessage = getMessageI18N(record);
226 int julLevelValue = record.getLevel().intValue();
228 slf4jLogger.trace(i18nMessage, record
246 getMessageI18N(LogRecord record) argument
281 publish(LogRecord record) argument
[all...]
/external/v8/src/
H A Dlocked-queue.h24 inline void Enqueue(const Record& record);
25 inline bool Dequeue(Record* record);
27 inline bool Peek(Record* record) const;
/external/skia/src/pathops/
H A DSkOpTAllocator.h18 T* record = (T*) ptr; local
19 return record;
24 T* record = (T*) ptr; local
25 return record;
/external/skia/tools/
H A DDumpRecord.h14 * Draw the record to the supplied canvas via SkRecords::Draw, while
20 void DumpRecord(const SkRecord& record,
/external/avahi/avahi-core/
H A Dresponse-sched.c60 AvahiRecord *record; member in struct:AvahiResponseJob
77 static AvahiResponseJob* job_new(AvahiResponseScheduler *s, AvahiRecord *record, AvahiResponseJobState state) { argument
81 assert(record);
89 rj->record = avahi_record_ref(record);
118 avahi_record_unref(rj->record);
205 /* Try to add this record to the packet */
206 if (!avahi_dns_packet_append_record(p, rj->record, rj->flush_cache, 0))
209 /* Ok, this record will definitely be sent, so schedule the
211 avahi_server_enumerate_aux_records(s->interface->monitor->server, s->interface, rj->record, enumerate_aux_records_callbac
276 find_scheduled_job(AvahiResponseScheduler *s, AvahiRecord *record) argument
292 find_history_job(AvahiResponseScheduler *s, AvahiRecord *record) argument
319 find_suppressed_job(AvahiResponseScheduler *s, AvahiRecord *record, const AvahiAddress *querier) argument
347 avahi_response_scheduler_post(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately) argument
429 avahi_response_scheduler_incoming(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache) argument
467 avahi_response_scheduler_suppress(AvahiResponseScheduler *s, AvahiRecord *record, const AvahiAddress *querier) argument
[all...]
H A Dresponse-sched.h33 int avahi_response_scheduler_post(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately);
34 void avahi_response_scheduler_incoming(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache);
35 void avahi_response_scheduler_suppress(AvahiResponseScheduler *s, AvahiRecord *record, const AvahiAddress *querier);
H A Dprobe-sched.c47 AvahiRecord *record; member in struct:AvahiProbeJob
60 static AvahiProbeJob* job_new(AvahiProbeScheduler *s, AvahiRecord *record, int done) { argument
64 assert(record);
72 pj->record = avahi_record_ref(record);
95 avahi_record_unref(pj->record);
176 /* Estimate the size for this record */
178 avahi_key_get_estimate_size(pj->record->key) +
179 avahi_record_get_estimate_size(pj->record);
186 if (!(k = avahi_key_new(pj->record
321 find_scheduled_job(AvahiProbeScheduler *s, AvahiRecord *record) argument
337 find_history_job(AvahiProbeScheduler *s, AvahiRecord *record) argument
362 avahi_probe_scheduler_post(AvahiProbeScheduler *s, AvahiRecord *record, int immediately) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkAllocationCallbackUtil.cpp132 AllocationCallbackRecord record; local
134 record.type = TYPE_ALLOCATION;
135 record.data.allocation.size = size;
136 record.data.allocation.alignment = alignment;
137 record.data.allocation.scope = scope;
138 record.data.allocation.returnedPtr = returnedPtr;
140 return record;
145 AllocationCallbackRecord record; local
147 record.type = TYPE_REALLOCATION;
148 record
159 AllocationCallbackRecord record; local
169 AllocationCallbackRecord record; local
181 AllocationCallbackRecord record; local
326 AllocationCallbackRecord record; member in struct:vk::__anon3563::AllocationSlot
339 getAlignment(const AllocationCallbackRecord& record) argument
365 const AllocationCallbackRecord& record = *callbackIter; local
580 const AllocationCallbackRecord& record = results.liveAllocations[liveNdx]; local
657 operator <<(std::ostream& str, const AllocationCallbackRecord& record) argument
[all...]
/external/testng/src/main/java/org/testng/log/
H A DTextFormatter.java17 public synchronized String format(LogRecord record) { argument
20 result.append(record.getMessage()).append("\n");
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DDataRecord.java60 DataRecord record = new DataRecord();
61 record.pl = in.namedIndex("pl", EPluralization.names);
62 record.pluralNames = in.stringTable("pluralName");
63 record.genders = in.namedIndexArray("gender", EGender.names);
64 record.singularNames = in.stringArray("singularName");
65 record.halfNames = in.stringArray("halfName");
66 record.numberNames = in.stringArray("numberName");
67 record.mediumNames = in.stringArray("mediumName");
68 record.shortNames = in.stringArray("shortName");
69 record
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DDataRecord.java58 DataRecord record = new DataRecord();
59 record.pl = in.namedIndex("pl", EPluralization.names);
60 record.pluralNames = in.stringTable("pluralName");
61 record.genders = in.namedIndexArray("gender", EGender.names);
62 record.singularNames = in.stringArray("singularName");
63 record.halfNames = in.stringArray("halfName");
64 record.numberNames = in.stringArray("numberName");
65 record.mediumNames = in.stringArray("mediumName");
66 record.shortNames = in.stringArray("shortName");
67 record
[all...]
/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...]

Completed in 789 milliseconds

1234567891011>>