Searched refs:unique (Results 76 - 100 of 217) sorted by relevance

123456789

/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebMutableURLRequest.idl39 pointer_default(unique)
H A DIWebNotificationCenter.idl39 pointer_default(unique)
H A DIWebResourceLoadDelegatePrivate.idl46 pointer_default(unique)
H A DIWebScriptObject.idl61 pointer_default(unique)
H A DIWebURLAuthenticationChallenge.idl49 pointer_default(unique)
98 pointer_default(unique)
136 pointer_default(unique)
196 pointer_default(unique)
H A DIWebUIDelegatePrivate.idl49 pointer_default(unique)
87 pointer_default(unique)
107 pointer_default(unique)
H A DDOMEvents.idl51 pointer_default(unique)
63 pointer_default(unique)
127 pointer_default(unique)
149 pointer_default(unique)
162 pointer_default(unique)
233 pointer_default(unique)
308 pointer_default(unique)
347 pointer_default(unique)
369 pointer_default(unique)
413 pointer_default(unique)
[all...]
H A DDOMHTML.idl49 pointer_default(unique)
76 pointer_default(unique)
108 pointer_default(unique)
220 pointer_default(unique)
302 pointer_default(unique)
393 pointer_default(unique)
515 pointer_default(unique)
592 pointer_default(unique)
818 pointer_default(unique)
945 pointer_default(unique)
[all...]
H A DIWebUndoManager.idl38 pointer_default(unique)
202 pointer_default(unique)
281 pointer_default(unique)
H A DIWebBackForwardList.idl47 pointer_default(unique)
H A DIWebCoreStatistics.idl36 pointer_default(unique)
H A DIWebEditingDelegate.idl54 pointer_default(unique)
68 pointer_default(unique)
82 pointer_default(unique)
99 pointer_default(unique)
H A DIWebIconDatabase.idl60 pointer_default(unique)
H A DIWebDownload.idl59 pointer_default(unique)
131 pointer_default(unique)
/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java45 DNSRecord(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl) { argument
46 super(name, type, recordClass, unique);
175 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { argument
176 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, addr);
179 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { argument
180 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, rawAddress);
217 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { argument
218 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, addr);
221 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { argument
222 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, tt
268 Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) argument
273 Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) argument
429 Pointer(String name, DNSRecordClass recordClass, boolean unique, int ttl, String alias) argument
540 Text(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte text[]) argument
646 Service(String name, DNSRecordClass recordClass, boolean unique, int ttl, int priority, int weight, int port, String server) argument
860 HostInformation(String name, DNSRecordClass recordClass, boolean unique, int ttl, String cpu, String os) argument
[all...]
H A DDNSIncoming.java278 boolean unique = recordClass.isUnique(recordClassIndex);
279 return DNSQuestion.newQuestion(domain, type, recordClass, unique);
293 boolean unique = recordClass.isUnique(recordClassIndex);
300 rec = new DNSRecord.IPv4Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
303 rec = new DNSRecord.IPv6Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
310 rec = new DNSRecord.Pointer(domain, recordClass, unique, ttl, service);
316 rec = new DNSRecord.Text(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len));
331 rec = new DNSRecord.Service(domain, recordClass, unique, ttl, priority, weight, port, target);
339 rec = new DNSRecord.HostInformation(domain, recordClass, unique, ttl, cpu, os);
/external/chromium/chrome/browser/diagnostics/
H A Dsqlite_diagnostics.cc92 template <size_t unique>
103 return kHistogramNames[unique];
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlinked_ptr.h92 bool unique() const throw() {return itsPrev ? itsPrev==this : true;} function in class:talk_base::linked_ptr
128 { // erase this from the list, delete if unique
129 if (unique()) delete itsPtr;
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBObjectStoreImpl.cpp90 WebIDBIndex* WebIDBObjectStoreImpl::createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebIDBTransaction& transaction, WebExceptionCode& ec) argument
92 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, transaction.getIDBTransactionBackendInterface(), ec);
H A DIDBIndexBackendProxy.h47 virtual bool unique();
H A DWebIDBObjectStoreImpl.h57 WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebIDBTransaction&, WebExceptionCode&);
/external/valgrind/main/helgrind/
H A Dhg_lock_n_thread.h67 as unique thread identifiers and so are never freed, so they should
126 ULong unique; /* used for persistence-hashing */ member in struct:_Lock
/external/webkit/Source/WebCore/storage/
H A DIDBIndexBackendImpl.cpp43 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique) argument
51 , m_unique(unique)
55 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, const String& name, const String& storeName, const String& keyPath, bool unique) argument
63 , m_unique(unique)
H A DIDBObjectStoreBackendInterface.h65 virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath, bool unique, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBObjectStore.h73 virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebIDBTransaction&, WebExceptionCode&) argument

Completed in 349 milliseconds

123456789