HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 26 - 50 of 817) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/adeb/bcc/misc/
android-futex-contention-record 2 perf record -a -g -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex -e sched:sched_waking $@
  /external/skia/tests/
RecordTestUtils.h 29 // 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) {
33 record.visit(index, reader);
44 template <typename DrawT> int count_instances_of_type(const SkRecord& record) {
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) {
55 for (int i = 0; i < record.count(); i++) {
56 if (record.visit(i, matcher)) {
RecorderTest.cpp 32 void apply(const SkRecord& record) {
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, 100, 100)
97 SkRecord record; local
    [all...]
RecordDrawTest.cpp 33 // Record two commands.
34 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)
61 SkRecord record; local
77 SkRecord record; local
162 SkRecord record; local
184 SkRecord record; local
270 SkRecord record; local
279 SkRecord record; local
    [all...]
RecordOptsTest.cpp 24 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
134 SkRecord record; local
225 SkRecord record; local
    [all...]
  /external/skqp/tests/
RecordTestUtils.h 29 // 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) {
33 record.visit(index, reader);
44 template <typename DrawT> int count_instances_of_type(const SkRecord& record) {
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) {
55 for (int i = 0; i < record.count(); i++) {
56 if (record.visit(i, matcher)) {
RecorderTest.cpp 32 void apply(const SkRecord& record) {
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, 100, 100)
97 SkRecord record; local
    [all...]
RecordDrawTest.cpp 33 // Record two commands.
34 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)
61 SkRecord record; local
77 SkRecord record; local
162 SkRecord record; local
184 SkRecord record; local
270 SkRecord record; local
279 SkRecord record; local
    [all...]
RecordOptsTest.cpp 24 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
134 SkRecord record; local
225 SkRecord record; local
    [all...]
  /external/testng/src/main/java/org/testng/log/
TextFormatter.java 17 public synchronized String format(LogRecord record) {
20 result.append(record.getMessage()).append("\n");
  /frameworks/base/cmds/incident_helper/src/parsers/
PageTypeInfoParser.cpp 65 record_t record = parseRecord(line, COMMA_DELIMITER); local
66 if (migrateTypeSession && record.size() == 3) {
69 if (stripPrefix(&record[0], "Node")) {
70 proto.write(PageTypeInfoProto::MigrateType::NODE, toInt(record[0]));
73 if (stripPrefix(&record[1], "zone")) {
74 proto.write(PageTypeInfoProto::MigrateType::ZONE, record[1]);
77 if (stripPrefix(&record[2], "type")) {
80 // record line: Unmovable 426 279 226 1 1 1 0 0 2 2 0
81 record_t pageCounts = parseRecord(record[2]);
90 } else if (!blockHeader.empty() && record.size() == 2)
    [all...]
KernelWakesParser.cpp 32 record_t record; // retain each record local
49 // parse for each record, the line delimiter is \t only!
50 record = parseRecord(line, TAB_DELIMITER);
52 if (record.size() < header.size()) {
56 } else if (record.size() > header.size()) {
63 for (int i=0; i<(int)record.size(); i++) {
64 if (!table.insertField(&proto, header[i], record[i])) {
66 this->name.string(), nline, header[i].c_str(), record[i].c_str());
ProcrankParser.cpp 32 record_t record; // retain each record local
58 record = parseRecord(line);
59 if (record.size() != header.size()) {
60 if (record[record.size() - 1] == "TOTAL") { // TOTAL record
70 for (int i=0; i<(int)record.size(); i++) {
71 if (!table.insertField(&proto, header[i], record[i])) {
73 this->name.string(), nline, header[i].c_str(), record[i].c_str())
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DataRecord.java 62 DataRecord record = new DataRecord(); local
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.measures = in.stringArray("measure")
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 60 DataRecord record = new DataRecord(); local
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.measures = in.stringArray("measure")
    [all...]
  /external/antlr/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 10 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 '(%s) unique_id=%s text=%p type=%s[%s]', __method__, @adaptor.unique_id( tree )
    [all...]
  /build/make/core/
native_benchmark.mk 5 $(call record-module-type,NATIVE_BENCHMARK)
host_fuzz_test.mk 5 $(call record-module-type,HOST_FUZZ_TEST)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/res/
ResourceIdGeneratorTest.java 15 generator.record(0x7F010001, "string", "some_name");
16 generator.record(0x7F010002, "string", "another_name");
24 generator.record(0x7F010001, "string", "some_name");
25 generator.record(0x7F010002, "string", "another_name");
  /external/e2fsprogs/debugfs/
revoke.c 22 * + 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
145 struct jbd2_revoke_record_s *record; local
148 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS);
149 if (!record)
152 record->sequence = seq;
153 record->blocknr = blocknr;
156 list_add(&record->hash, hash_list);
168 /* Find a revoke record in the journal's hash table. *
174 struct jbd2_revoke_record_s *record; local
424 struct jbd2_revoke_record_s *record; local
494 struct jbd2_revoke_record_s *record; local
535 struct jbd2_revoke_record_s *record; local
710 struct jbd2_revoke_record_s *record; local
734 struct jbd2_revoke_record_s *record; local
753 struct jbd2_revoke_record_s *record; local
    [all...]
  /external/e2fsprogs/e2fsck/
revoke.c 22 * + 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
145 struct jbd2_revoke_record_s *record; local
148 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS);
149 if (!record)
152 record->sequence = seq;
153 record->blocknr = blocknr;
156 list_add(&record->hash, hash_list);
168 /* Find a revoke record in the journal's hash table. *
174 struct jbd2_revoke_record_s *record; local
424 struct jbd2_revoke_record_s *record; local
494 struct jbd2_revoke_record_s *record; local
535 struct jbd2_revoke_record_s *record; local
710 struct jbd2_revoke_record_s *record; local
734 struct jbd2_revoke_record_s *record; local
753 struct jbd2_revoke_record_s *record; local
    [all...]
  /external/selinux/libsemanage/src/
database_file.h 14 /* FILE extension to RECORD interface - method table */
17 /* 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/
dump_record.cpp 28 static void dump(const char* name, int w, int h, const SkRecord& record) {
37 DumpRecord(record, &canvas, FLAGS_timeWithCommand);
61 SkRecord record; local
62 SkRecorder canvas(&record, w, h);
66 SkRecordOptimize(&record);
69 SkRecordOptimize2(&record);
72 dump(FLAGS_skps[i], w, h, record);
76 SkRecordDraw(record,
  /external/skqp/tools/
dump_record.cpp 28 static void dump(const char* name, int w, int h, const SkRecord& record) {
37 DumpRecord(record, &canvas, FLAGS_timeWithCommand);
61 SkRecord record; local
62 SkRecorder canvas(&record, w, h);
66 SkRecordOptimize(&record);
69 SkRecordOptimize2(&record);
72 dump(FLAGS_skps[i], w, h, record);
76 SkRecordDraw(record,
  /external/v8/tools/clang/blink_gc_plugin/
Config.cpp 31 bool Config::IsTemplateInstantiation(CXXRecordDecl* record) {
33 dyn_cast<clang::ClassTemplateSpecializationDecl>(record);

Completed in 1622 milliseconds

12 3 4 5 6 7 8 91011>>