HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 201 - 225 of 404) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 763 // To get a complete info record we need to retrieve the service, address and the text bytes.
946 final DNSRecord record = (DNSRecord) entry; local
1781 DNSRecord record = (DNSRecord) entry; local
    [all...]
DNSIncoming.java 211 // Add a record, if we were able to create one.
221 // Add a record, if we were able to create one.
231 // Add a record, if we were able to create one.
274 logger.log(Level.SEVERE, "Could not find record type: " + this.print(true));
286 logger.log(Level.SEVERE, "Could not find record type. domain: " + domain + "\n" + this.print(true));
291 logger.log(Level.SEVERE, "Could not find record class. domain: " + domain + " type: " + type + "\n" + this.print(true));
312 logger.log(Level.WARNING, "PTR record of class: " + recordClass + ", there was a problem reading the service name of the answer for domain:" + domain);
354 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
361 logger.log(Level.WARNING, "There was a problem reading the OPT record. Ignoring.");
504 for (DNSRecord record : _answers)
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 159 sync_api::SyncManager::ChangeRecord record; local
160 record.action = sync_api::SyncManager::ChangeRecord::ACTION_ADD;
161 record.id = node.GetId();
162 changes_.push_back(record);
196 sync_api::SyncManager::ChangeRecord record; local
197 record.action = sync_api::SyncManager::ChangeRecord::ACTION_DELETE;
198 record.id = id;
202 // children before parents. Thus, we must insert the deletion record
204 changes_.insert(changes_.begin(), record);
249 // Helper function to push an ACTION_UPDATE record onto the bac
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 91 const CXXRecordDecl *record = 0; local
93 (record = type->getAsCXXRecordDecl())) {
94 assert(!record->hasTrivialDestructor());
95 CXXDestructorDecl *dtor = record->getDestructor();
  /external/harfbuzz_ng/src/
hb-ot-layout-gpos-table.hh 393 const MarkRecord &record = ArrayOf<MarkRecord>::operator[](mark_index); local
394 unsigned int mark_class = record.klass;
396 const Anchor& mark_anchor = this + record.markAnchor;
577 const PairValueRecord *record = CastP<PairValueRecord> (array); local
581 c->input->add (record->secondGlyph);
582 record = &StructAtOffset<PairValueRecord> (record, record_size);
595 const PairValueRecord *record = CastP<PairValueRecord> (array); local
600 if (c->buffer->info[pos].codepoint == record->secondGlyph)
603 &record->values[0], c->buffer->cur_pos())
630 PairValueRecord *record = CastP<PairValueRecord> (array); local
    [all...]
  /frameworks/compile/mclinker/lib/MC/
Attribute.cpp 107 pParent.record(*pCopy);
  /frameworks/compile/mclinker/lib/Target/X86/
X86Relocator.cpp 139 pParent.getSymGOTMap().record(*rsym, *got_entry);
194 pParent.getSymPLTMap().record(*rsym, *plt_entry);
200 pParent.getSymGOTPLTMap().record(*rsym, *gotplt_entry);
421 pParent.getSymGOTMap().record(*rsym, *got_entry1);
509 pParent.getSymGOTMap().record(*rsym, *got_entry);
542 pParent.getSymGOTMap().record(*rsym, *got_entry);
691 pParent.getSymGOTMap().record(*rsym, *got_entry);
745 pParent.getSymPLTMap().record(*rsym, *plt_entry);
751 pParent.getSymGOTPLTMap().record(*rsym, *gotplt_entry);
  /external/v8/tools/gcmole/
gcmole.cc 1093 bool IsDerivedFrom(clang::CXXRecordDecl* record,
1095 return (record == base) || record->isDerivedFrom(base);
1107 clang::CXXRecordDecl* record =
1109 if (record == NULL) return false;
1111 if (!InV8Namespace(record)) return false;
1113 if (!record->hasDefinition()) return false;
1115 record = record->getDefinition();
1117 return IsDerivedFrom(record, object_decl_) &
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1060.js 28 // Make sure that we do not record multiple bailouts in the unoptimized code
regress-1104.js 29 // an arguments object access should not record duplicate AST IDs for
regress-1149.js 28 // We should not try to record duplicate bailout IDs for the 'left-hand
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 30 * This class handles TXT record data for DNS based service discovery as specified at
33 * DNS-SD specifies that a TXT record corresponding to an SRV record consist of
47 /** Constructs a new, empty TXT record. */
52 /** Constructs a new TXT record from a byte array in the standard format. */
193 /** Return a key in the TXT record by zero-based index. Returns null if index exceeds the total number of keys. */
214 * Look up a key in the TXT record by zero-based index and return its value.
293 DnsSdTxtRecord record = (DnsSdTxtRecord)o; local
294 return Arrays.equals(record.mData, mData);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 222 public void publish(LogRecord record) {}
226 public boolean isLoggable(LogRecord record) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityEntityProvider.java 120 final AccessibilityRecordCompat record = new AccessibilityRecordCompat(event); local
121 record.setSource(mKeyboardView, virtualViewId);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java 389 for (DownloadRecord record : downloadRecords) {
390 if (null == record.mAttributes) {
436 for (final DownloadRecord record : recordList) {
441 downloadSuccessful = handleDownloadedFile(context, record, manager, fileId);
444 if (record.isMetadata()) {
447 final SQLiteDatabase db = MetadataDbHelper.getDb(context, record.mClientId);
449 db, record.mAttributes, record.mClientId);
    [all...]
  /external/chromium/net/base/
dnsrr_resolver.cc 275 PDNS_RECORD record = NULL; local
278 NULL /* pExtra (reserved) */, &record, NULL /* pReserved */);
290 for (DNS_RECORD* cur = record; cur; cur = cur->pNext) {
292 response_.ttl = record->dwTtl;
294 // of these types then we have to reserialise the record.
334 DnsRecordListFree(record, DnsFreeRecordList);
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java 169 * The tag for a record in the history file.
171 private static final String TAG_HISTORICAL_RECORD = "historical-record";
205 * Default weight for a choice record.
450 * adding a historical record for that action and construct intent with
533 * historical record with weight high enough that this activity will
535 * will eventually change if not used. Also the weight of the record for
550 // Add a record with weight enough to boost the chosen at the top.
737 * Adds a historical record.
739 * @param historicalRecord The record to add.
740 * @return True if the record was added
1075 HistoricalRecord record = historicalRecords.remove(0); local
    [all...]
AdapterView.java 923 // Add a record for ourselves as well.
924 AccessibilityEvent record = AccessibilityEvent.obtain(); local
925 onInitializeAccessibilityEvent(record);
927 child.dispatchPopulateAccessibilityEvent(record);
928 event.appendRecord(record);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActivityChooserModel.java 168 * The tag for a record in the history file.
170 private static final String TAG_HISTORICAL_RECORD = "historical-record";
204 * Default weight for a choice record.
443 * adding a historical record for that action and construct intent with
526 * historical record with weight high enough that this activity will
528 * will eventually change if not used. Also the weight of the record for
543 // Add a record with weight enough to boost the chosen at the top.
737 * Adds a historical record.
739 * @param historicalRecord The record to add.
740 * @return True if the record was added
1075 HistoricalRecord record = historicalRecords.remove(0); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java 457 String record; local
543 record = "+CPBR: " + index + ",\"" + number + "\"," + regionType + ",\"" + name + "\"";
544 record = record + "\r\n\r\n";
545 atCommandResponse = record;
  /external/skia/legacy/src/core/
SkPicturePlayback.h 34 explicit SkPicturePlayback(const SkPictureRecord& record);
  /external/skia/src/core/
SkPicturePlayback.h 65 explicit SkPicturePlayback(const SkPictureRecord& record, bool deepCopy = false);
  /external/smack/src/org/xbill/DNS/spi/
DNSJavaNameService.java 17 import org.xbill.DNS.Record;
139 Record [] records = null;
151 Record record = records[i]; local
171 Record [] records = new Lookup(name, Type.PTR).run();
  /frameworks/av/media/libmedia/
AudioRecord.cpp 62 // We double the size of input buffer for ping pong use of record buffer.
195 ALOGE("Could not get audio input for record source %d", inputSource);
349 // the record head position will reset to 0, so if a marker is set, we need
453 sp<IAudioRecord> record = audioFlinger->openRecord(input, local
464 if (record == 0) {
465 ALOGE("AudioFlinger could not create record track, status: %d", status);
468 sp<IMemory> iMem = record->getCblk();
474 mAudioRecord = record;
  /ndk/sources/host-tools/nawk-20071023/
awk.h 49 extern int recsize; /* size of current record, orig RECSIZE */
64 extern char *record; /* points to $0 */
67 extern int donefld; /* 1 if record broken into fields */
68 extern int donerec; /* 1 if record is valid (no fld has changed */

Completed in 2100 milliseconds

1 2 3 4 5 6 7 891011>>