HomeSort by relevance Sort by last modified time
    Searched defs:unique (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/storage/
IDBIndex.h 54 bool unique() const { return m_backend->unique(); } function in class:WebCore::IDBIndex
IDBIndexBackendImpl.h 43 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)
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)
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);
IDBObjectStore.cpp 127 bool unique = false; local
128 options.getKeyBool("unique", unique);
130 RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, m_transaction->backend(), ec);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBIndex.h 59 virtual bool unique() const function in class:WebKit::WebIDBIndex
  /external/webkit/Source/WebKit/chromium/src/
IDBIndexBackendProxy.cpp 73 bool IDBIndexBackendProxy::unique() function in class:WebKit::IDBIndexBackendProxy
75 return m_webIDBIndex->unique();
WebIDBIndexImpl.cpp 66 bool WebIDBIndexImpl::unique() const function in class:WebKit::WebIDBIndexImpl
68 return m_backend->unique();
  /external/chromium/third_party/libjingle/source/talk/base/
linked_ptr.h 92 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/chromium/chrome/browser/
autocomplete_history_manager.cc 221 bool unique = true; local
225 unique = false;
230 if (unique) {
  /external/openfst/src/include/fst/script/
shortest-path.h 35 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/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
  /external/valgrind/main/helgrind/
hg_lock_n_thread.h 67 as unique thread identifiers and so are never freed, so they should
126 ULong unique; /* used for persistence-hashing */ member in struct:_Lock
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_algo.h 289 // unique and unique_copy
298 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last) { function
304 inline _ForwardIter unique(_ForwardIter __first, _ForwardIter __last, function
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
StripInfo.java 100 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
225 // it's used for 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))
277 //this is just so Unique() will work
  /external/openfst/src/include/fst/
shortest-path.h 45 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/
shortest-path.h 38 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/debug/
_list.h 415 void unique() { function in class:list
449 void unique(_BinaryPredicate __binary_pred) { function in class:list
_slist.h 514 void unique() { function in class:slist
565 void unique(_BinaryPredicate __pred) { function in class:slist
  /external/stlport/stlport/stl/pointers/
_list.h 303 void unique() { _M_impl.unique(); } function in class:list
313 void unique(_BinaryPredicate __bin_pred) function in class:list
314 { _M_impl.unique(_STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _BinaryPredicate>(__bin_pred)); }
_slist.h 384 void unique() { _M_impl.unique(); } function in class:slist
394 void unique(_BinaryPredicate __pred) function in class:slist
395 { _M_impl.unique(_STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _BinaryPredicate>(__pred)); }
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 415 void unique() { function in class:list
449 void unique(_BinaryPredicate __binary_pred) { function in class:list
_slist.h 514 void unique() { function in class:slist
565 void unique(_BinaryPredicate __pred) { function in class:slist
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 303 void unique() { _M_impl.unique(); } function in class:list
313 void unique(_BinaryPredicate __bin_pred) function in class:list
314 { _M_impl.unique(_STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _BinaryPredicate>(__bin_pred)); }

Completed in 345 milliseconds

1 2 3 4 5