Searched refs:record (Results 1 - 25 of 412) 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(i, *this);
48 void apply(SkRecord* record) { argument
49 for (int i = 0; i < record->count(); i++) {
50 record->mutate(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.cpp24 SkRecord record; local
25 SkRecorder recorder(&record, W, H);
31 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed.
33 SkRecordNoopSaveRestores(&record);
35 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record));
39 SkRecord record; local
40 SkRecorder recorder(&record, W, H);
46 SkRecordNoopSaveRestores(&record);
48 assert_type<SkRecords::NoOp>(r, record, i);
53 SkRecord record; local
76 SkRecord record; local
105 assert_savelayer_restore(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
119 assert_savelayer_draw_restore(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
134 SkRecord record; local
200 assert_merge_svg_opacity_and_filter_layers(skiatest::Reporter* r, SkRecord* record, int i, bool shouldBeNoOped) argument
215 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(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(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(i, matcher)) {
H A DRecorderTest.cpp32 void apply(const SkRecord& record) { argument
33 for (int i = 0; i < record.count(); i++) {
34 record.visit(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/v8/tools/clang/blink_gc_plugin/
H A DCollectVisitor.cpp22 bool CollectVisitor::VisitCXXRecordDecl(CXXRecordDecl* record) { argument
23 if (record->hasDefinition() && record->isCompleteDefinition())
24 record_decls_.push_back(record);
H A DConfig.cpp13 bool Config::IsTemplateInstantiation(CXXRecordDecl* record) { argument
15 dyn_cast<clang::ClassTemplateSpecializationDecl>(record);
/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
159 onMatch(SkRecord* record, Match*, int begin, int end) argument
167 SkRecordNoopSaveRestores(SkRecord* record) argument
190 onMatch(SkRecord* record, Match* match, int begin, int end) argument
223 KillSaveLayerAndRestore(SkRecord* record, int saveLayerIndex) argument
229 SkRecordNoopSaveLayerDrawRestores(SkRecord* record) argument
248 onMatch(SkRecord* record, Match* match, int begin, int end) argument
277 KillSaveLayerAndRestore(SkRecord* record, int saveLayerIndex) argument
284 SkRecordMergeSvgOpacityAndFilterLayers(SkRecord* record) argument
291 SkRecordOptimize(SkRecord* record) argument
312 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/tools/
H A DDumpRecord.h14 * Draw the record to the supplied canvas via SkRecords::Draw, while
20 void DumpRecord(const SkRecord& record,
/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
334 AllocationCallbackRecord record; member in struct:vk::__anon3697::AllocationSlot
347 getAlignment(const AllocationCallbackRecord& record) argument
373 const AllocationCallbackRecord& record = *callbackIter; local
597 const AllocationCallbackRecord& record = results.liveAllocations[liveNdx]; local
674 operator <<(std::ostream& str, const AllocationCallbackRecord& record) argument
[all...]
/external/toolchain-utils/automation/common/
H A Dlogger.py85 def formatTime(self, record):
86 ct = self.converter(record.created)
88 return '%s.%02d' % (t, record.msecs / 10)
90 def formatLevelName(self, record):
91 if record.levelname in ['WARNING', 'CRITICAL']:
92 levelname = record.levelname[:4]
94 levelname = record.levelname
99 def formatMessagePrefix(self, record):
101 return ' %s%s:%s ' % (self._coder('black', 'bold'), record.prefix,
106 def format(self, record)
[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/ltp/testcases/network/stress/dns/
H A Ddns-stress01-rmt41 # Specify the record of dns accoring to the version of IP
44 record="A" ;;
46 record="AAAA" ;;
52 dig @$srv_ipaddr -p $port node${min_id}.${domain} $record > /dev/null || \
59 dig @$srv_ipaddr -p $port node${id}.${domain} $record > /dev/null
66 dig @$srv_ipaddr -p $port node${min_id}.${domain} $record > /dev/null || \
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DDataRecord.java62 DataRecord record = new DataRecord();
63 record.pl = in.namedIndex("pl", EPluralization.names);
64 record.pluralNames = in.stringTable("pluralName");
65 record.genders = in.namedIndexArray("gender", EGender.names);
66 record.singularNames = in.stringArray("singularName");
67 record.halfNames = in.stringArray("halfName");
68 record.numberNames = in.stringArray("numberName");
69 record.mediumNames = in.stringArray("mediumName");
70 record.shortNames = in.stringArray("shortName");
71 record
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/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/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/e2fsprogs/debugfs/
H A Drevoke.c22 * + Recovery: during recovery we record the transaction ID of all
39 * latter: journaling a block cancels any revoke record for that block
100 /* Each revoke record represents one single revoked block. During
149 struct jbd2_revoke_record_s *record; local
152 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS);
153 if (!record)
156 record->sequence = seq;
157 record->blocknr = blocknr;
160 list_add(&record->hash, hash_list);
172 /* Find a revoke record i
178 struct jbd2_revoke_record_s *record; local
428 struct jbd2_revoke_record_s *record; local
498 struct jbd2_revoke_record_s *record; local
539 struct jbd2_revoke_record_s *record; local
576 write_one_revoke_record(journal_t *journal, transaction_t *transaction, struct list_head *log_bufs, struct buffer_head **descriptorp, int *offsetp, struct jbd2_revoke_record_s *record, int write_op) argument
714 struct jbd2_revoke_record_s *record; local
738 struct jbd2_revoke_record_s *record; local
757 struct jbd2_revoke_record_s *record; local
[all...]

Completed in 622 milliseconds

1234567891011>>