Searched refs:record (Results 26 - 50 of 285) sorted by relevance

1234567891011>>

/external/linux-tools-perf/src/tools/perf/scripts/perl/bin/
H A Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e syscalls:sys_exit_write $@
/external/linux-tools-perf/src/tools/perf/scripts/python/bin/
H A Dsched-migration-record2 perf record -m 16384 -e sched:sched_wakeup -e sched:sched_wakeup_new -e sched:sched_switch -e sched:sched_migrate_task $@
/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);
36 template <typename DrawT> int count_instances_of_type(const SkRecord& record) { argument
39 for (unsigned i = 0; i < record.count(); i++) {
40 counter += record.visit<int>(i, matcher);
45 template <typename DrawT> int find_first_instances_of_type(const SkRecord& record) { argument
47 for (unsigned i = 0; i < record.count(); i++) {
48 if (record.visit<int>(i, matcher)) {
H A DRecordDrawTest.cpp34 SkRecord record; local
35 SkRecorder recorder(&record, W, H);
37 REPORTER_ASSERT(r, 0 == record.count());
39 REPORTER_ASSERT(r, 0 == record.count()); // the save was not recorded (yet)
41 REPORTER_ASSERT(r, 1 == record.count());
43 REPORTER_ASSERT(r, 3 == record.count()); // now we see the save
45 REPORTER_ASSERT(r, 4 == record.count());
47 assert_type<SkRecords::DrawPaint>(r, record, 0);
48 assert_type<SkRecords::Save> (r, record, 1);
49 assert_type<SkRecords::SetMatrix>(r, record,
61 SkRecord record; local
77 SkRecord record; local
156 SkRecord record; local
177 SkRecord record; local
210 SkRecord record; local
232 SkRecord record; local
264 SkRecord record; local
317 SkRecord record; local
326 SkRecord record; local
[all...]
H A DFontNamesTest.cpp115 SkOTTableName::Iterator::Record record; local
117 while (nameIndex < test[i].nameCount && iter.next(record)) {
119 strcmp(test[i].names[nameIndex].name, record.name.c_str()) == 0,
124 strcmp(test[i].names[nameIndex].language, record.language.c_str()) == 0,
128 //printf("%s <%s>\n", record.name.c_str(), record.language.c_str());
136 REPORTER_ASSERT_MESSAGE(reporter, !iter.next(record),
182 SkOTTableName::Iterator::Record record; local
185 while (familyNameIter.next(record)) {
187 SkOTTableName::Record::NameID::Predefined::FontFamilyName == 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/jmonkeyengine/engine/src/core/com/jme3/util/
H A DJmeFormatter.java61 public String format(LogRecord record) { argument
64 calendar.setTime(record.getMillis());
71 clazz = Class.forName(record.getSourceClassName()).getSimpleName();
75 sb.append(record.getLevel().getLocalizedName()).append(" ");
78 sb.append(formatMessage(record)).append(lineSeperator);
80 if (record.getThrown() != null) {
84 record.getThrown().printStackTrace(pw);
/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/selinux/libsemanage/src/
H A Ddatabase_file.h17 /* Fill record structuure based on supplied parse info.
21 parse_info_t * info, record_t * record);
23 /* Print record to stream */
25 record_t * record, FILE * str);
/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);
63 SkRecord record; local
64 SkRecorder canvas(&record, w, h);
68 SkRecordOptimize(&record);
71 dump(FLAGS_skps[i], w, h, record);
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/impl/
H A DJDK14AdapterLoggerNameTest.java71 assertNotNull("no log record", mockHandler.record);
72 assertNotNull("missing logger name", mockHandler.record.getLoggerName());
76 public LogRecord record; field in class:JDK14AdapterLoggerNameTest.MockHandler
84 public void publish(LogRecord record) { argument
85 this.record = record;
/external/e2fsprogs/e2fsck/
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
77 /* Each revoke record represents one single revoked block. During
124 struct jbd_revoke_record_s *record; local
129 record = kmem_cache_alloc(revoke_record_cache, GFP_NOFS);
130 if (!record)
133 record->sequence = seq;
134 record->blocknr = blocknr;
136 list_add(&record->hash, hash_list);
152 /* Find a revoke record i
158 struct jbd_revoke_record_s *record; local
377 struct jbd_revoke_record_s *record; local
441 struct jbd_revoke_record_s *record; local
475 write_one_revoke_record(journal_t *journal, transaction_t *transaction, struct journal_head **descriptorp, int *offsetp, struct jbd_revoke_record_s *record) argument
583 struct jbd_revoke_record_s *record; local
607 struct jbd_revoke_record_s *record; local
626 struct jbd_revoke_record_s *record; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DMotionBlurComponent.java94 final BlurRecord record = mHistory[step];
95 if (record.texture != null) {
97 stepImage.setTexture(record.texture);
98 stepImage.setWidth(record.width);
99 stepImage.setHeight(record.height);
100 stepImage.setCrop(record.crop[0], record.crop[1], record.crop[2], -record.crop[3]);
105 renderer.scheduleForDraw(stepImage, record
[all...]
H A DGameObjectCollisionSystem.java87 CollisionVolumeRecord record = mRecordPool.allocate();
88 if (record != null && object != null && boundingVolume != null
90 record.object = object;
91 record.boundingVolume = boundingVolume;
92 record.attackVolumes = attackVolumes;
93 record.vulnerabilityVolumes = vulnerabilityVolumes;
94 record.reactionComponent = reactionComponent;
95 mObjects.add(record);
106 final CollisionVolumeRecord record = mObjects.get(x);
107 final Vector2 position = record
232 drawDebugVolumes(CollisionVolumeRecord record) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DPlayReadyHeader.java68 for (PlayReadyRecord record : records) {
70 size += record.getValue().rewind().limit();
76 for (PlayReadyRecord record : records) {
77 IsoTypeWriter.writeUInt16BE(byteBuffer, record.type);
78 IsoTypeWriter.writeUInt16BE(byteBuffer, record.getValue().limit());
79 ByteBuffer tmp4debug = record.getValue();
117 PlayReadyRecord record;
122 record = new RMHeader();
125 record = new DefaulPlayReadyRecord(0x02);
128 record
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DAndroidLogHandler.java24 public void publish(LogRecord record) { argument
25 Level level = record.getLevel();
26 String clsName = record.getSourceClassName();
27 String msg = record.getMessage();
28 Throwable t = record.getThrown();
/external/valgrind/memcheck/tests/
H A Dpointer-trace.stderr.exp1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
H A Dstatic_malloc.stderr.exp1 10 bytes in 1 blocks are definitely lost in loss record ... of ...
/external/guava/guava-testlib/test/com/google/common/testing/
H A DTestLogHandlerTest.java57 LogRecord record = handler.getStoredLogRecords().get(0);
58 assertEquals(Level.INFO, record.getLevel());
59 assertEquals("message", record.getMessage());
60 assertSame(EXCEPTION, record.getThrown());
/external/lldb/source/Expression/
H A DIRExecutionUnit.cpp571 for (AllocationRecord &record : m_records)
573 if (local_address >= record.m_host_address &&
574 local_address < record.m_host_address + record.m_size)
576 if (record.m_process_address == LLDB_INVALID_ADDRESS)
579 lldb::addr_t ret = record.m_process_address + (local_address - record.m_host_address);
585 (uint64_t)record.m_host_address,
586 (uint64_t)record.m_host_address + (uint64_t)record
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSOutgoing.java161 MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2);
162 rec.write(record);
163 byte[] byteArray = record.toByteArray();
243 MessageOutputStream record = new MessageOutputStream(512, this);
244 record.writeQuestion(rec);
245 byte[] byteArray = record.toByteArray();
277 MessageOutputStream record = new MessageOutputStream(512, this);
278 record.writeRecord(rec, now);
279 byte[] byteArray = record.toByteArray();
297 MessageOutputStream record
[all...]
/external/valgrind/gdbserver_tests/
H A 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
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Dtrace-event-parse.c145 struct pevent_record record; local
147 record.data = data;
148 return pevent_data_type(pevent, &record);
153 struct pevent_record record; local
155 record.data = data;
156 return pevent_data_pid(pevent, &record);
167 struct pevent_record record; local
170 memset(&record, 0, sizeof(record));
171 record
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
H A Dgjslint.py96 for record in results:
97 yield record
115 for record in results:
116 yield record
194 for record in error_records:
196 if current_path != record.path:
197 current_path = record.path
201 print record.error_string
/external/guava/guava-testlib/src/com/google/common/testing/
H A DTestLogHandler.java63 * Adds the most recently logged record to our list.
66 public void publish(@Nullable LogRecord record) { argument
67 list.add(record);

Completed in 4067 milliseconds

1234567891011>>