Searched defs:unique (Results 1 - 25 of 46) sorted by relevance

12

/external/openfst/src/script/
H A Dshortest-path.cc34 size_t n, bool unique, bool first_path,
38 ShortestPathArgs2 args(ifst, ofst, n, unique, first_path, weight_threshold,
33 ShortestPath(const FstClass &ifst, MutableFstClass *ofst, size_t n, bool unique, bool first_path, WeightClass weight_threshold, int64 state_threshold) argument
/external/webkit/Source/WebCore/storage/
H A DIDBIndex.h54 bool unique() const { return m_backend->unique(); } function in class:WebCore::IDBIndex
H A DIDBIndexBackendImpl.h43 static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique) argument
45 return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, id, name, storeName, keyPath, unique));
47 static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, const String& name, const String& storeName, const String& keyPath, bool unique) argument
49 return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, name, storeName, keyPath, unique));
67 virtual bool unique() { return m_unique; } function in class:WebCore::IDBIndexBackendImpl
75 IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique);
76 IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, const String& name, const String& storeName, const String& keyPath, bool unique);
H A DIDBObjectStore.cpp127 bool unique = false; local
128 options.getKeyBool("unique", unique);
130 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, m_transaction->backend(), ec);
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)
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBIndex.h59 virtual bool unique() const function in class:WebKit::WebIDBIndex
H A DWebIDBObjectStore.h73 virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebIDBTransaction&, WebExceptionCode&) argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBIndexImpl.cpp66 bool WebIDBIndexImpl::unique() const function in class:WebKit::WebIDBIndexImpl
68 return m_backend->unique();
H A DIDBIndexBackendProxy.cpp73 bool IDBIndexBackendProxy::unique() function in class:WebKit::IDBIndexBackendProxy
75 return m_webIDBIndex->unique();
H A DIDBObjectStoreBackendProxy.cpp109 PassRefPtr<IDBIndexBackendInterface> IDBObjectStoreBackendProxy::createIndex(const String& name, const String& keyPath, bool unique, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) argument
114 WebIDBIndex* index = m_webIDBObjectStore->createIndex(name, keyPath, unique, *transactionProxy->getWebIDBTransaction(), ec);
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);
/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/openfst/src/include/fst/script/
H A Dshortest-path.h35 const bool unique; member in struct:fst::script::ShortestPathOptions
47 nshortest(n), unique(u), has_distance(hasdist), first_path(fp),
75 queue, ArcFilter(), opts.nshortest, opts.unique,
87 queue, ArcFilter(), opts.nshortest, opts.unique,
99 queue, ArcFilter(), opts.nshortest, opts.unique,
111 queue, ArcFilter(), opts.nshortest, opts.unique,
123 queue, ArcFilter(), opts.nshortest, opts.unique,
135 queue, ArcFilter(), opts.nshortest, opts.unique,
179 size_t n = 1, bool unique = false,
/external/chromium/chrome/browser/
H A Dautocomplete_history_manager.cc221 bool unique = true; local
225 unique = false;
230 if (unique) {
/external/jmdns/src/javax/jmdns/impl/
H A DDNSQuestion.java31 DNS4Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
32 super(name, type, recordClass, unique);
55 DNS6Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
56 super(name, type, recordClass, unique);
79 HostInformation(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
80 super(name, type, recordClass, unique);
88 Pointer(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
89 super(name, type, recordClass, unique);
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
129 super(name, type, recordClass, unique);
162 Text(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) argument
183 AllRecords(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) argument
219 DNSQuestion(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) argument
236 newQuestion(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) argument
[all...]
H A DDNSEntry.java41 DNSEntry(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { argument
46 _unique = unique;
140 * @return true if unique
282 aLog.append((_unique ? "-unique," : ","));
H A DHostInfo.java117 * This is used to create a unique name for the host name.
198 DNSRecord.Address getDNSAddressRecord(DNSRecordType type, boolean unique, int ttl) { argument
201 return this.getDNS4AddressRecord(unique, ttl);
204 return this.getDNS6AddressRecord(unique, ttl);
210 private DNSRecord.Address getDNS4AddressRecord(boolean unique, int ttl) { argument
212 return new DNSRecord.IPv4Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress());
217 private DNSRecord.Address getDNS6AddressRecord(boolean unique, int ttl) { argument
219 return new DNSRecord.IPv6Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress());
224 DNSRecord.Pointer getDNSReverseAddressRecord(DNSRecordType type, boolean unique, int ttl) { argument
227 return this.getDNS4ReverseAddressRecord(unique, tt
236 getDNS4ReverseAddressRecord(boolean unique, int ttl) argument
248 getDNS6ReverseAddressRecord(boolean unique, int ttl) argument
270 answers(boolean unique, int ttl) argument
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DStripInfo.java100 boolean unique(FaceInfoVec faceVec, FaceInfo face) method in class:StripInfo
131 //the face is not unique, all it's vertices exist in the face vector
136 //if we get out here, it's unique
242 //this tests to see if a face is "unique", meaning that its vertices aren't already in the list
244 if(!unique(tempAllFaces, nextFace))
/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/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMManager.java161 * specified source. If the unique flag is true, a new instance will
172 * @param unique true if the returned DTM must be unique, probably because it
184 boolean unique, DTMWSFilter whiteSpaceFilter,
183 getDTM(javax.xml.transform.Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMManagerDefault.java212 * specified source. If the unique flag is true, a new instance will
217 * A bit of magic in this implementation: If the source is null, unique is true,
225 * @param unique true if the returned DTM must be unique, probably because it
236 synchronized public DTM getDTM(Source source, boolean unique, argument
243 (unique ? "UNIQUE" : "shared")+
299 if (source==null && unique && !incremental && !doIndexing) {
566 // Can't return the same node since it's unique to a specific DTM,
/external/openfst/src/include/fst/
H A Dshortest-path.h45 bool unique; // only return paths with distinct input strings member in struct:fst::ShortestPathOptions
61 nshortest(n), unique(u), has_distance(hasdist), first_path(fp),
455 if (!opts.unique) {
473 // discipline is automatically selected. When 'unique' == true, only
485 size_t n = 1, bool unique = false,
493 AnyArcFilter<Arc> > opts(&state_queue, arc_filter, n, unique, false,
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dshortest-path.h38 bool unique; // only return paths with distinct input strings member in struct:fst::ShortestPathOptions
45 nshortest(n), unique(u), has_distance(hasdist) {}
251 if (opts.unique)
278 distance->push_back(Weight::One()); // differently when unique=true
340 // discipline is automatically selected. When 'unique' == true, only
352 size_t n = 1, bool unique = false) {
357 AnyArcFilter<Arc> > opts(&state_queue, arc_filter, n, unique);
/external/stlport/stlport/stl/
H A D_algo.h289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
/external/stlport/stlport/stl/debug/
H A D_list.h415 void unique() { function in class:list
449 void unique(_BinaryPredicate __binary_pred) { function in class:list

Completed in 310 milliseconds

12