Searched refs:record (Results 201 - 225 of 508) sorted by relevance

1234567891011>>

/external/chromium_org/tools/perf/page_sets/endure/
H A Dindexeddb_app.js155 var record = {
163 var request = store.put(record);
171 function sendEvent(record, callback) {
177 var serialization = JSON.stringify(record);
199 var record = cursor.value;
203 record,
/external/libsepol/src/
H A Dinterfaces.c11 /* Create a low level structure from record */
14 ocontext_t ** iface, const sepol_iface_t * record)
25 tmp_iface->u.name = strdup(sepol_iface_get_name(record));
31 &tmp_con, sepol_iface_get_ifcon(record)) < 0)
40 &tmp_con, sepol_iface_get_msgcon(record)) < 0)
68 ocontext_t * iface, sepol_iface_t ** record)
98 *record = tmp_record;
102 ERR(handle, "could not convert interface %s to record", name);
12 iface_from_record(sepol_handle_t * handle, const policydb_t * policydb, ocontext_t ** iface, const sepol_iface_t * record) argument
66 iface_to_record(sepol_handle_t * handle, const policydb_t * policydb, ocontext_t * iface, sepol_iface_t ** record) argument
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_svga.c247 const SVGA3dCapsRecord *record; local
249 record = (const SVGA3dCapsRecord *) (capsBlock + offset);
250 if ((record->header.type >= SVGA3DCAPS_RECORD_DEVCAPS_MIN) &&
251 (record->header.type <= SVGA3DCAPS_RECORD_DEVCAPS_MAX) &&
252 (!capsRecord || (record->header.type > capsRecord->header.type))) {
253 capsRecord = record;
261 * Calculate the number of caps from the size of the record.
/external/chromium_org/v8/src/
H A Dcpu-profiler.cc43 TickSampleEventRecord record(last_code_event_id_);
52 record.sample.Init(isolate, regs);
53 ticks_from_vm_buffer_.Enqueue(record);
65 CodeEventsContainer record; local
66 if (events_buffer_.Dequeue(&record)) {
67 switch (record.generic.type) {
70 record.clss##_.UpdateCodeMap(generator_->code_map()); \
76 default: return true; // Skip record.
78 last_processed_code_event_id_ = record.generic.order;
89 TickSampleEventRecord record; local
95 const TickSampleEventRecord* record = ticks_buffer_.Peek(); local
[all...]
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_name.cpp440 bool SkOTTableName::Iterator::next(SkOTTableName::Iterator::Record& record) {
445 // Find the next record which matches the requested type.
455 record.type = nameRecord->nameID.fontSpecific;
473 record.name.reset();
478 SkStringFromUTF16BE((const uint16_t*)nameString, nameLength, record.name);
486 record.name.reset();
489 SkStringFromMacRoman((const uint8_t*)nameString, nameLength, record.name);
496 record.name.reset();
517 SkStringFromUTF16BE(string, length, record.language);
527 record
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_name.cpp440 bool SkOTTableName::Iterator::next(SkOTTableName::Iterator::Record& record) {
445 // Find the next record which matches the requested type.
455 record.type = nameRecord->nameID.fontSpecific;
473 record.name.reset();
478 SkStringFromUTF16BE((const uint16_t*)nameString, nameLength, record.name);
486 record.name.reset();
489 SkStringFromMacRoman((const uint8_t*)nameString, nameLength, record.name);
496 record.name.reset();
517 SkStringFromUTF16BE(string, length, record.language);
527 record
[all...]
/external/valgrind/main/memcheck/tests/
H A Dlks.stderr.exp21 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
27 16 bytes in 1 blocks are indirectly lost in loss record ... of ...
33 16 bytes in 1 blocks are definitely lost in loss record ... of ...
39 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
45 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordDraw.cpp11 void SkRecordDraw(const SkRecord& record, argument
34 record.visit<void>((uintptr_t)ops[i], draw); // See FillBounds below.
39 for (unsigned i = 0; i < record.count(); i++) {
43 record.visit<void>(i, draw);
48 void SkRecordPartialDraw(const SkRecord& record, argument
55 stop = SkTMin(stop, record.count());
58 record.visit<void>(i, draw);
136 FillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) : fBounds(record.count()) { argument
142 for (fCurrentOp = 0; fCurrentOp < record
546 SkRecordFillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) argument
[all...]
H A DSkPictureData.cpp40 SkPictureData::SkPictureData(const SkPictureRecord& record, argument
47 fOpData = record.opData(deepCopyOps);
49 fBoundingHierarchy = record.fBoundingHierarchy;
50 fStateTree = record.fStateTree;
54 fContentInfo.set(record.fContentInfo);
61 record.fFlattenableHeap.setupPlaybacks();
63 fBitmaps = record.fBitmapHeap->extractBitmaps();
64 fPaints = record.fPaints.unflattenToArray();
66 fBitmapHeap.reset(SkSafeRef(record.fBitmapHeap));
67 fPathHeap.reset(SkSafeRef(record
[all...]
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DRecordInfo.cpp11 RecordInfo::RecordInfo(CXXRecordDecl* record, RecordCache* cache) argument
13 record_(record),
14 name_(record->getName()),
60 // Test if a record is a HeapAllocated collection.
80 if (CXXRecordDecl* record = specifier->getType()->getAsCXXRecordDecl())
81 return Config::IsGCBase(record->getName());
85 // Test if a record is derived from a garbage collected base.
138 // Test if a record is allocated on the managed heap.
143 RecordInfo* RecordCache::Lookup(CXXRecordDecl* record) { argument
145 if (!record || Confi
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DCountersGraph.js180 * @param {!WebInspector.TimelineModel.Record} record
184 function findRecordToReveal(record)
186 if (!this._model.isVisible(record))
188 if (record.startTime() <= time && time <= record.endTime()) {
189 recordToReveal = record;
192 // If there is no record containing the time than use the latest one before that time.
193 if (!recordToReveal || record.endTime() < time && recordToReveal.endTime() < record.endTime())
194 recordToReveal = record;
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Dparse-filter.c1569 struct filter_arg *arg, struct pevent_record *record);
1572 get_comm(struct event_format *event, struct pevent_record *record) argument
1577 pid = pevent_data_pid(event->pevent, record);
1584 struct format_field *field, struct pevent_record *record)
1592 name = get_comm(event, record);
1596 pevent_read_number_field(field, record->data, &val);
1615 get_arg_value(struct event_format *event, struct filter_arg *arg, struct pevent_record *record);
1618 get_exp_value(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1622 lval = get_arg_value(event, arg->exp.left, record);
1623 rval = get_arg_value(event, arg->exp.right, record);
1583 get_value(struct event_format *event, struct format_field *field, struct pevent_record *record) argument
1664 get_arg_value(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1684 test_num(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1717 get_field_str(struct filter_arg *arg, struct pevent_record *record) argument
1759 test_str(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1789 test_op(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1810 test_filter(struct event_format *event, struct filter_arg *arg, struct pevent_record *record) argument
1875 pevent_filter_match(struct event_filter *filter, struct pevent_record *record) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DZone.java114 maybeAddRecord(Record record) throws IOException { argument
115 int rtype = record.getType();
116 Name name = record.getName();
124 addRecord(record);
140 Record record;
143 while ((record = m.nextRecord()) != null)
144 maybeAddRecord(record);
173 Record record = (Record) it.next();
174 maybeAddRecord(record);
217 /** Returns the Zone's SOA record */
[all...]
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record_utils_chromeos.cc160 const NfcNdefRecord* record,
162 DCHECK(record);
164 if (!record->IsPopulated()) {
169 NfcRecordTypeEnumToPropertyValue(record->type()));
170 return ConvertNdefFieldsToDBusAttributes(record->data(), out);
205 // differently, depending on whether the record type is "SmartPoster" or
233 // Populate the given record.
159 NfcNdefRecordToDBusAttributes( const NfcNdefRecord* record, base::DictionaryValue* out) argument
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DProtoFollowsExtendsChecker.java132 for (TypeRecord record : getState().getTypeRecordsByTypeName().values()) {
133 if (record.isInterface() || typesWithAssignedProto.contains(record)) {
136 JSTypeExpression extendedType = record.getExtendedType();
145 record.typeName));
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Ddiff_viewer.js29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
231 // Keep track of the index of the last record to change so that shift clicking knows what range
248 $scope.sortingDiffer = function(record) {
249 return record.diffs[$scope.sortIndex].result;
258 // Store the style in the record. The row will pick up the style this way instead of through
273 // record, and the last one they ticked/unticked.
/external/skia/tools/skpdiff/
H A Ddiff_viewer.js29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
231 // Keep track of the index of the last record to change so that shift clicking knows what range
248 $scope.sortingDiffer = function(record) {
249 return record.diffs[$scope.sortIndex].result;
258 // Store the style in the record. The row will pick up the style this way instead of through
273 // record, and the last one they ticked/unticked.
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store_unittest.cc381 IndexedDBBackingStore::RecordIdentifier record; local
383 &transaction1, 1, 1, m_key1, &m_value1, &handles, &record);
413 IndexedDBBackingStore::RecordIdentifier record; local
420 &record).ok());
498 IndexedDBBackingStore::RecordIdentifier record; local
505 &record).ok());
512 &record).ok());
519 &record).ok());
526 &record).ok());
588 IndexedDBBackingStore::RecordIdentifier record; local
647 IndexedDBBackingStore::RecordIdentifier record; local
726 IndexedDBBackingStore::RecordIdentifier record; local
815 IndexedDBBackingStore::RecordIdentifier record; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dnfc_debug.js50 * Creates a table element and populates it for each record contained
57 * @param {Array} records List of NDEF record data.
65 records.forEach(function(record) {
67 recordDiv.setAttribute('class', 'record-div');
68 for (var key in record) {
69 if (!record.hasOwnProperty(key))
73 rowDiv.setAttribute('class', 'record-key-value-div');
78 keyElement.setAttribute('class', 'record-key-div');
81 valueElement.setAttribute('class', 'record-value-div');
82 self.renderRecords(valueElement, record[ke
[all...]
/external/lldb/test/unittest2/test/
H A Dtest_skipping.py62 record.append(1)
66 record = []
72 self.assertEqual(record, [])
/external/skia/tools/
H A Dbench_playback.cpp17 #include "../include/record/SkRecording.h"
68 SkAutoTDelete<EXPERIMENTAL::SkPlayback> record(rerecord_with_skr(src));
77 draw(*record, *picture, canvas.get());
86 draw(*record, *picture, canvas.get());
/external/jmdns/src/javax/jmdns/impl/
H A DHostInfo.java161 public boolean conflictWithRecord(DNSRecord.Address record) { argument
162 DNSRecord.Address hostAddress = this.getDNSAddressRecord(record.getRecordType(), record.isUnique(), DNSConstants.DNS_TTL);
164 return hostAddress.sameType(record) && hostAddress.sameName(record) && (!hostAddress.sameValue(record));
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dmetrics.js113 * max bucket value, record the value in the largest bucket
114 * @param {number} bucket Value to record.
116 record: function(bucket) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DTimelineManager.js172 * @param {!TimelineAgent.TimelineEvent} record
174 eventRecorded: function(record)
176 this._manager.dispatchEventToListeners(WebInspector.TimelineManager.EventTypes.TimelineEventRecorded, record);
/external/chromium_org/third_party/leveldatabase/src/db/
H A Drepair.cc198 Slice record; local
203 while (reader.ReadRecord(&record, &scratch)) {
204 if (record.size() < 12) {
206 record.size(), Status::Corruption("log record too small"));
209 WriteBatchInternal::SetContents(&batch, record);
222 // Do not record a version edit for this conversion to a Table
405 std::string record; local
406 edit_.EncodeTo(&record);
407 status = log.AddRecord(record);
[all...]

Completed in 1424 milliseconds

1234567891011>>