Searched refs:record (Results 151 - 175 of 508) sorted by relevance

1234567891011>>

/external/chromium_org/sync/engine/
H A Dconflict_resolver.cc49 const sync_pb::AttachmentMetadataRecord& record = local.record(i); local
50 DCHECK(record.is_on_server());
51 local_ids.insert(record.id().SerializeAsString());
54 const sync_pb::AttachmentMetadataRecord& record = server.record(i); local
55 DCHECK(record.is_on_server());
56 if (local_ids.find(record.id().SerializeAsString()) == local_ids.end()) {
/external/chromium_org/sync/internal_api/public/base/
H A Dattachment_id_proto_unittest.cc45 metadata.record(i).id().SerializeAsString());
46 EXPECT_TRUE(metadata.record(i).is_on_server());
/external/chromium_org/tools/gn/
H A Dcommand_gen.cc37 const BuilderRecord* record) {
40 const Item* item = record->item();
35 ItemResolvedCallback(base::subtle::Atomic32* write_counter, scoped_refptr<Builder> builder, const BuilderRecord* record) argument
/external/chromium_org/tools/perf/measurements/
H A Dloading_trace.py32 record = tir_module.TimelineInteractionRecord(
37 [record],
/external/chromium_org/v8/src/
H A Dcircular-queue-inl.h29 return &dequeue_pos_->record;
46 return &enqueue_pos_->record;
/external/icu/icu4c/source/layout/
H A DLEInsertionList.cpp39 InsertionRecord *record = head; local
42 LE_DELETE_ARRAY(record);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-record.c2 * builtin-record.c
4 * Builtin record command: Record the profile of a workload
292 *As for guest kernel when processing subcommand record&report,
302 pr_err("Couldn't record guest kernel [%d]'s reference"
315 pr_err("Couldn't record guest kernel [%d]'s reference"
490 pr_err("Couldn't record tracing data.\n");
503 pr_err("Couldn't record kernel reference relocation symbol\n"
510 pr_err("Couldn't record kernel module information.\n"
586 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
592 "[ perf record
834 static struct perf_record record = { variable in typeref:struct:perf_record
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Dnetdev-times-record2 perf record -e net:net_dev_xmit -e net:net_dev_queue \
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DDNSJavaResolver.java51 for (Record record : recs) {
52 org.xbill.DNS.SRVRecord srvRecord = (org.xbill.DNS.SRVRecord) record;
/external/valgrind/main/drd/tests/
H A Dstd_string.cpp38 std::list<std::string> record; local
39 record.push_back("some data");
/external/valgrind/main/memcheck/tests/
H A Dleak-cycle.stderr.exp5 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
11 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
17 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
23 96 (16 direct, 80 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DMemoryHandlerTest.java138 LogRecord record = new LogRecord(Level.FINER, "MSG1");
139 assertFalse(handler.isLoggable(record));
141 record = new LogRecord(Level.FINE, "MSG2");
142 assertTrue(handler.isLoggable(record));
144 record = new LogRecord(Level.CONFIG, "MSG3");
145 assertTrue(handler.isLoggable(record));
147 record = new LogRecord(Level.CONFIG, "false");
148 assertFalse(handler.isLoggable(record));
151 record = new LogRecord(Level.CONFIG, "false");
152 assertTrue(handler.isLoggable(record));
360 isLoggable(LogRecord record) argument
374 publish(LogRecord record) argument
[all...]
/external/chromium_org/printing/
H A Demf_win.cc26 const ENHMETARECORD *record,
32 switch (record->iType) {
44 const ENHMETARECORD *record,
49 ::PlayEnhMetaFileRecord(bitmap_dc, handle_table, record, num_objects);
50 switch (record->iType) {
53 reinterpret_cast<const EMRALPHABLEND*>(record);
86 ::PlayEnhMetaFileRecord(metafile_dc, handle_table, record, num_objects);
265 const ENHMETARECORD* record,
273 Record record_instance(record);
283 Emf::Record::Record(const ENHMETARECORD* record) argument
24 IsAlphaBlendUsedEnumProc(HDC, HANDLETABLE*, const ENHMETARECORD *record, int, LPARAM data) argument
42 RasterizeAlphaBlendProc(HDC metafile_dc, HANDLETABLE* handle_table, const ENHMETARECORD *record, int num_objects, LPARAM data) argument
263 SafePlaybackProc(HDC hdc, HANDLETABLE* handle_table, const ENHMETARECORD* record, int objects_count, LPARAM param) argument
494 EnhMetaFileProc(HDC hdc, HANDLETABLE* handle_table, const ENHMETARECORD* record, int objects_count, LPARAM param) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineEventOverview.js86 * @param {!WebInspector.TimelineModel.Record} record
89 function appendRecord(record)
91 if (this._uiUtils.isBeginFrame(record))
93 var recordStart = Math.floor((record.startTime() - timeOffset) * scale);
94 var recordEnd = Math.ceil((record.endTime() - timeOffset) * scale);
95 var category = this._uiUtils.categoryForRecord(record);
101 // If record fits entirely into previous bar just absorb it ignoring the category match.
H A DTimelineOverviewPane.js109 var record = records[i];
110 var positions = this._overviewCalculator.computeBarGraphPercentages(record);
114 var title = this._uiUtils.titleForRecord(record);
115 var divider = this._uiUtils.createEventDivider(record.type(), title);
206 computeBarGraphPercentages: function(record)
208 var start = (record.startTime() - this._minimumBoundary) / this.boundarySpan() * 100;
209 var end = (record.endTime() - this._minimumBoundary) / this.boundarySpan() * 100;
H A DTimelineLayersView.js66 * @param {!WebInspector.TimelineModel.Record} record
69 function findRecordWithEvent(record)
71 if (record.traceEvent() === traceEvent) {
72 eventRecord = record;
H A DTracingTimelineModel.js360 * @param {!WebInspector.TracingTimelineModel.TraceEventRecord} record
362 function copyChildrenToParent(record)
364 var parent = record.parent;
366 var children = record.children();
369 parentChildren.splice.apply(parentChildren, [parentChildren.indexOf(record), 1].concat(children));
390 // Delete incomplete async record from parent and adopt its children.
403 var record = new WebInspector.TracingTimelineModel.TraceEventRecord(this, event);
405 this._eventDividerRecords.push(record);
406 if (!this._recordFilter.accept(record))
410 parentRecord._addChild(record);
[all...]
H A DTimelinePanel.js317 this.toggleTimelineButton = new WebInspector.StatusBarButton("", "record-profile-status-bar-item");
650 WebInspector.userMetrics.TimelineStarted.record();
814 * @param {!WebInspector.TimelineModel.Record} record
816 _addRecord: function(record)
819 this._lazyFrameModel.addRecord(record);
821 this._currentViews[i].addRecord(record);
910 * @param {!WebInspector.TimelineModel.Record} record
913 function processRecord(record)
915 if (record.endTime() < this._windowStartTime ||
916 record
[all...]
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DRecordInfo.h68 // Wrapper class to lazily collect information about a C++ record.
77 clang::CXXRecordDecl* record() const { return record_; } function in class:RecordInfo
104 RecordInfo(clang::CXXRecordDecl* record, RecordCache* cache);
139 RecordInfo* Lookup(clang::CXXRecordDecl* record);
141 RecordInfo* Lookup(const clang::CXXRecordDecl* record) { argument
142 return Lookup(const_cast<clang::CXXRecordDecl*>(record));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dfont.cc128 for (HeaderTagSortedSet::iterator record = sorted_headers.begin(),
130 record != record_end; ++record) {
131 fos->WriteULong((*record)->tag());
132 fos->WriteULong((int32_t)((*record)->checksum()));
133 fos->WriteULong((*record)->offset());
134 fos->WriteULong((*record)->length());
142 for (TableHeaderList::iterator record = table_headers->begin(),
144 record != end_of_headers; ++record) {
[all...]
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc128 for (HeaderTagSortedSet::iterator record = sorted_headers.begin(),
130 record != record_end; ++record) {
131 fos->WriteULong((*record)->tag());
132 fos->WriteULong((int32_t)((*record)->checksum()));
133 fos->WriteULong((*record)->offset());
134 fos->WriteULong((*record)->length());
142 for (TableHeaderList::iterator record = table_headers->begin(),
144 record != end_of_headers; ++record) {
[all...]
/external/libsepol/src/
H A Dcontext.c141 * Create a context structure from the given record
146 const sepol_context_t * record)
155 char *user = strdup(sepol_context_get_user(record));
156 char *role = strdup(sepol_context_get_role(record));
157 char *type = strdup(sepol_context_get_type(record));
158 const char *mls = sepol_context_get_mls(record);
240 * Create a record from the given context structure
245 sepol_context_t ** record)
278 *record = tmp_record;
282 ERR(handle, "could not create context record");
143 context_from_record(sepol_handle_t * handle, const policydb_t * policydb, context_struct_t ** cptr, const sepol_context_t * record) argument
242 context_to_record(sepol_handle_t * handle, const policydb_t * policydb, const context_struct_t * context, sepol_context_t ** record) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-templates.cpp232 struct record { struct
236 template <const record &>
239 extern const record inst;
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dheaderparserhandler.py93 def emit(self, record):
95 if record.levelno in ApacheLogHandler._LEVELS:
96 apache_level = ApacheLogHandler._LEVELS[record.levelno]
98 msg = self._formatter.format(record)
/external/chromium_org/chrome/browser/copresence/
H A Dchrome_whispernet_client.cc177 // At this point, we have the same parameters for record and play. This
185 params.record.sample_rate = copresence::kDefaultSampleRate;
186 params.record.bits_per_sample = copresence::kDefaultBitsPerSample;
187 params.record.carrier_frequency = copresence::kDefaultCarrierFrequency;
188 params.record.channels = copresence::kDefaultChannels;

Completed in 2453 milliseconds

1234567891011>>