Home
last modified time | relevance | path

Searched refs:record (Results 1 – 25 of 897) sorted by relevance

12345678910>>...36

/external/wpa_supplicant_8/src/wps/
Dndef.c36 struct ndef_record *record) in ndef_parse_record() argument
42 record->type_length = *pos++; in ndef_parse_record()
46 record->payload_length = *pos++; in ndef_parse_record()
55 record->payload_length = len; in ndef_parse_record()
62 record->id_length = *pos++; in ndef_parse_record()
64 record->id_length = 0; in ndef_parse_record()
66 record->type = record->type_length == 0 ? NULL : pos; in ndef_parse_record()
67 pos += record->type_length; in ndef_parse_record()
69 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
70 pos += record->id_length; in ndef_parse_record()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.cpp132 AllocationCallbackRecord record; in allocation() local
134 record.type = TYPE_ALLOCATION; in allocation()
135 record.data.allocation.size = size; in allocation()
136 record.data.allocation.alignment = alignment; in allocation()
137 record.data.allocation.scope = scope; in allocation()
138 record.data.allocation.returnedPtr = returnedPtr; in allocation()
140 return record; in allocation()
145 AllocationCallbackRecord record; in reallocation() local
147 record.type = TYPE_REALLOCATION; in reallocation()
148 record.data.reallocation.original = original; in reallocation()
[all …]
/external/skia/tests/
DRecordTest.cpp30 void apply(const SkRecord& record) { in apply() argument
31 for (int i = 0; i < record.count(); i++) { in apply()
32 record.visit(i, *this); in apply()
48 void apply(SkRecord* record) { in apply()
49 for (int i = 0; i < record->count(); i++) { in apply()
50 record->mutate(i, *this); in apply()
55 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} argument
59 SkRecord record; in DEF_TEST() local
64 APPEND(record, SkRecords::DrawRect, paint, rect); in DEF_TEST()
68 summer.apply(record); in DEF_TEST()
[all …]
DRecordPatternTest.cpp24 SkRecord record; in DEF_TEST() local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
27 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
31 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
34 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
37 REPORTER_ASSERT(r, pattern.match(&record, 0)); in DEF_TEST()
46 SkRecord record; in DEF_TEST() local
47 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); in DEF_TEST()
61 REPORTER_ASSERT(r, !pattern.match(&record, i)); in DEF_TEST()
[all …]
DRecordOptsTest.cpp24 SkRecord record; in DEF_TEST() local
25 SkRecorder recorder(&record, W, H); in DEF_TEST()
31 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed. in DEF_TEST()
33 SkRecordNoopSaveRestores(&record); in DEF_TEST()
35 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record)); in DEF_TEST()
39 SkRecord record; in DEF_TEST() local
40 SkRecorder recorder(&record, W, H); in DEF_TEST()
46 SkRecordNoopSaveRestores(&record); in DEF_TEST()
48 assert_type<SkRecords::NoOp>(r, record, i); in DEF_TEST()
53 SkRecord record; in DEF_TEST() local
[all …]
DRecordDrawTest.cpp34 SkRecord record; in DEF_TEST() local
35 SkRecorder recorder(&record, W, H); in DEF_TEST()
37 REPORTER_ASSERT(r, 0 == record.count()); in DEF_TEST()
39 REPORTER_ASSERT(r, 0 == record.count()); // the save was not recorded (yet) in DEF_TEST()
41 REPORTER_ASSERT(r, 1 == record.count()); in DEF_TEST()
43 REPORTER_ASSERT(r, 3 == record.count()); // now we see the save in DEF_TEST()
45 REPORTER_ASSERT(r, 4 == record.count()); in DEF_TEST()
47 assert_type<SkRecords::DrawPaint>(r, record, 0); in DEF_TEST()
48 assert_type<SkRecords::Save> (r, record, 1); in DEF_TEST()
49 assert_type<SkRecords::Concat> (r, record, 2); in DEF_TEST()
[all …]
DRecorderTest.cpp32 void apply(const SkRecord& record) { in apply() argument
33 for (int i = 0; i < record.count(); i++) { in apply()
34 record.visit(i, *this); in apply()
43 SkRecord record; in DEF_TEST() local
44 SkRecorder recorder(&record, 1920, 1080); in DEF_TEST()
49 tally.apply(record); in DEF_TEST()
65 SkRecord record; in DEF_TEST() local
66 SkRecorder recorder(&record, 1920, 1080); in DEF_TEST()
82 SkRecord record; in DEF_TEST() local
83 SkRecorder recorder(&record, 100, 100); in DEF_TEST()
[all …]
/external/skia/src/core/
DSkRecordOpts.cpp25 static bool apply(Pass* pass, SkRecord* record) { in apply() argument
30 while (match.search(record, &begin, &end)) { in apply()
31 changed |= pass->onMatch(record, &match, begin, end); in apply()
38 static void multiple_set_matrices(SkRecord* record) { in multiple_set_matrices() argument
45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { in multiple_set_matrices()
46 record->replace<NoOp>(begin); // first SetMatrix in multiple_set_matrices()
50 while (apply(&pass, record)); in multiple_set_matrices()
56 static void apply_matrix_to_draw_params(SkRecord* record) {
63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) {
64 record->replace<NoOp>(begin); // first SetMatrix
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DDataRecord.java62 DataRecord record = new DataRecord(); in read() local
63 record.pl = in.namedIndex("pl", EPluralization.names); in read()
64 record.pluralNames = in.stringTable("pluralName"); in read()
65 record.genders = in.namedIndexArray("gender", EGender.names); in read()
66 record.singularNames = in.stringArray("singularName"); in read()
67 record.halfNames = in.stringArray("halfName"); in read()
68 record.numberNames = in.stringArray("numberName"); in read()
69 record.mediumNames = in.stringArray("mediumName"); in read()
70 record.shortNames = in.stringArray("shortName"); in read()
71 record.measures = in.stringArray("measure"); in read()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DDataRecord.java60 DataRecord record = new DataRecord(); in read() local
61 record.pl = in.namedIndex("pl", EPluralization.names); in read()
62 record.pluralNames = in.stringTable("pluralName"); in read()
63 record.genders = in.namedIndexArray("gender", EGender.names); in read()
64 record.singularNames = in.stringArray("singularName"); in read()
65 record.halfNames = in.stringArray("halfName"); in read()
66 record.numberNames = in.stringArray("numberName"); in read()
67 record.mediumNames = in.stringArray("mediumName"); in read()
68 record.shortNames = in.stringArray("shortName"); in read()
69 record.measures = in.stringArray("measure"); in read()
[all …]
/external/toolchain-utils/automation/common/
Dlogger.py85 def formatTime(self, record): argument
86 ct = self.converter(record.created)
88 return '%s.%02d' % (t, record.msecs / 10)
90 def formatLevelName(self, record): argument
91 if record.levelname in ['WARNING', 'CRITICAL']:
92 levelname = record.levelname[:4]
94 levelname = record.levelname
99 def formatMessagePrefix(self, record): argument
101 return ' %s%s:%s ' % (self._coder('black', 'bold'), record.prefix,
106 def format(self, record): argument
[all …]
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
DSLF4JBridgeHandler.java197 protected Logger getSLF4JLogger(LogRecord record) { in getSLF4JLogger() argument
198 String name = record.getLoggerName(); in getSLF4JLogger()
205 protected void callLocationAwareLogger(LocationAwareLogger lal, LogRecord record) { in callLocationAwareLogger() argument
206 int julLevelValue = record.getLevel().intValue(); in callLocationAwareLogger()
220 String i18nMessage = getMessageI18N(record); in callLocationAwareLogger()
221 lal.log(null, FQCN, slf4jLevel, i18nMessage, null, record.getThrown()); in callLocationAwareLogger()
224 protected void callPlainSLF4JLogger(Logger slf4jLogger, LogRecord record) { in callPlainSLF4JLogger() argument
225 String i18nMessage = getMessageI18N(record); in callPlainSLF4JLogger()
226 int julLevelValue = record.getLevel().intValue(); in callPlainSLF4JLogger()
228 slf4jLogger.trace(i18nMessage, record.getThrown()); in callPlainSLF4JLogger()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectCollisionSystem.java87 CollisionVolumeRecord record = mRecordPool.allocate(); in registerForCollisions() local
88 if (record != null && object != null && boundingVolume != null in registerForCollisions()
90 record.object = object; in registerForCollisions()
91 record.boundingVolume = boundingVolume; in registerForCollisions()
92 record.attackVolumes = attackVolumes; in registerForCollisions()
93 record.vulnerabilityVolumes = vulnerabilityVolumes; in registerForCollisions()
94 record.reactionComponent = reactionComponent; in registerForCollisions()
95 mObjects.add(record); in registerForCollisions()
106 final CollisionVolumeRecord record = mObjects.get(x); in update() local
107 final Vector2 position = record.object.getPosition(); in update()
[all …]
/external/e2fsprogs/e2fsck/
Drevoke.c149 struct jbd2_revoke_record_s *record; in insert_revoke_hash() local
152 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS); in insert_revoke_hash()
153 if (!record) in insert_revoke_hash()
156 record->sequence = seq; in insert_revoke_hash()
157 record->blocknr = blocknr; in insert_revoke_hash()
160 list_add(&record->hash, hash_list); in insert_revoke_hash()
178 struct jbd2_revoke_record_s *record; in find_revoke_record() local
183 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record()
184 while (&(record->hash) != hash_list) { in find_revoke_record()
185 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/external/e2fsprogs/debugfs/
Drevoke.c149 struct jbd2_revoke_record_s *record; in insert_revoke_hash() local
152 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS); in insert_revoke_hash()
153 if (!record) in insert_revoke_hash()
156 record->sequence = seq; in insert_revoke_hash()
157 record->blocknr = blocknr; in insert_revoke_hash()
160 list_add(&record->hash, hash_list); in insert_revoke_hash()
178 struct jbd2_revoke_record_s *record; in find_revoke_record() local
183 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record()
184 while (&(record->hash) != hash_list) { in find_revoke_record()
185 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
Dtrace-event-listener.rb23 def record( event_message, *interpolation_arguments ) method in 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 '(%s) unique_id=%s text=%p type=%s[%s]', __method__, @adaptor.unique_id( tree ),
58 record '(%s): k=%s unique_id=%s text=%p type=%s[%s]', __method__, i, @adaptor.unique_id( tree ),
63 record '(%s): unique_id=%s', __method__, @adaptor.unique_id( tree )
[all …]
/external/swiftshader/third_party/subzero/tests_lit/parse_errs/
Dinsertextract-err.ll16 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
19 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
22 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
29 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
32 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
35 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
42 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
45 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
48 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
55 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
[all …]
/external/v8/tools/clang/plugins/
DFindBadConstructsConsumer.cpp91 bool IsPodOrTemplateType(const CXXRecordDecl& record) { in IsPodOrTemplateType() argument
92 return record.isPOD() || in IsPodOrTemplateType()
93 record.getDescribedClassTemplate() || in IsPodOrTemplateType()
94 record.getTemplateSpecializationKind() || in IsPodOrTemplateType()
95 record.isDependentType(); in IsPodOrTemplateType()
219 CXXRecordDecl* record) { in CheckChromeClass() argument
229 if (!IsPodOrTemplateType(*record)) in CheckChromeClass()
230 CheckCtorDtorWeight(record_location, record); in CheckChromeClass()
239 if (!IsPodOrTemplateType(*record)) in CheckChromeClass()
240 CheckVirtualMethods(record_location, record, warn_on_inline_bodies); in CheckChromeClass()
[all …]
/external/jmdns/src/javax/jmdns/impl/
DDNSOutgoing.java161 … MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2); in writeRecord() local
162 rec.write(record); in writeRecord()
163 byte[] byteArray = record.toByteArray(); in writeRecord()
243 MessageOutputStream record = new MessageOutputStream(512, this); in addQuestion() local
244 record.writeQuestion(rec); in addQuestion()
245 byte[] byteArray = record.toByteArray(); in addQuestion()
277 MessageOutputStream record = new MessageOutputStream(512, this); in addAnswer() local
278 record.writeRecord(rec, now); in addAnswer()
279 byte[] byteArray = record.toByteArray(); in addAnswer()
297 MessageOutputStream record = new MessageOutputStream(512, this); in addAuthorativeAnswer() local
[all …]
/external/python/cpython2/Lib/logging/
Dhandlers.py68 def emit(self, record): argument
76 if self.shouldRollover(record):
78 logging.FileHandler.emit(self, record)
82 self.handleError(record)
146 def shouldRollover(self, record): argument
156 msg = "%s\n" % self.format(record)
283 def shouldRollover(self, record): argument
400 def emit(self, record): argument
430 logging.FileHandler.emit(self, record)
532 def makePickle(self, record): argument
[all …]
/external/libchrome/base/metrics/
Dpersistent_sample_map.cc146 const SampleRecord* record = in GetNextPersistentRecord() local
148 if (!record) in GetNextPersistentRecord()
151 *sample_map_id = record->id; in GetNextPersistentRecord()
163 SampleRecord* record = in CreatePersistentRecord() local
166 if (!record) { in CreatePersistentRecord()
172 record->id = sample_map_id; in CreatePersistentRecord()
173 record->value = value; in CreatePersistentRecord()
174 record->count = 0; in CreatePersistentRecord()
256 SampleRecord* record = in ImportSamples() local
258 if (!record) in ImportSamples()
[all …]
/external/valgrind/gdbserver_tests/
Dmcleak.stderrB.exp3 10 bytes in 1 blocks are still reachable in loss record ... of ...
7 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
11 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
15 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
19 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
23 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
27 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
31 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
35 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
39 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DScriptRunModuleWriter.java32 for (int record = 0; record < recordCount; record += 1) { in writeScriptRuns()
33 int script = scriptData.getRecord(record).scriptCode(); in writeScriptRuns()
36 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6)); in writeScriptRuns()
38 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6)); in writeScriptRuns()
42 output.print((record == recordCount - 1) ? " " : ","); in writeScriptRuns()
67 for (int record = 0; record < recordCount; record += 1) { in writeScriptRuns()
68 …scriptRangeOffsets[scriptData.getRecord(record).scriptCode() - minScript].addElement(new Integer(r… in writeScriptRuns()
/external/v8/tools/clang/blink_gc_plugin/
DDiagnosticsReporter.cpp275 ReportDiagnostic(info->record()->getInnerLocStart(), in ClassMustLeftMostlyDeriveGC()
277 << info->record(); in ClassMustLeftMostlyDeriveGC()
281 ReportDiagnostic(info->record()->getInnerLocStart(), in ClassRequiresTraceMethod()
283 << info->record(); in ClassRequiresTraceMethod()
299 << base << derived->record(); in BaseRequiresTracing()
314 << info->record(); in FieldsImproperlyTraced()
327 ReportDiagnostic(info->record()->getLocStart(), in ClassContainsInvalidFields()
329 << info->record(); in ClassContainsInvalidFields()
368 ReportDiagnostic(info->record()->getLocStart(), in ClassContainsGCRoots()
370 << info->record() << point->field(); in ClassContainsGCRoots()
[all …]
/external/autotest/client/site_tests/touch_MouseScroll/
DREADME6 up_slow - Scroll the mouse wheel up slowly to record multiple scrolls.
7 up_fast - Scroll the mouse wheel up fast to record multiple scrolls.
8 up_1 - Scroll the mouse wheel up (one gear up) to record single scroll.
9 down_slow - Scroll the mouse wheel down slowly to record scrolls.
10 down_fast - Scroll the mouse wheel down fast to record multiple scrolls.
11 down_1 - Scroll the mouse wheel down (one gear down) to record single scroll.
13 To record horizontal scrolls, please emulate a mouse which has this feature and
16 right_slow - Scroll the mouse ball right slowly to record multiple scrolls.
17 right_fast - Scroll the mouse ball right fast to record multiple scrolls.
18 right_1 - Scroll the mouse ball right (one gear right) to record single scroll.
[all …]

12345678910>>...36