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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DuplicatesPredicate.java 22 private Set unique = new HashSet(); field in class:DuplicatesPredicate
25 return unique.add(MethodWrapper.create((Method)arg));
  /external/chromium_org/components/autofill/core/browser/
autocomplete_history_manager.cc 166 bool unique = true; local
170 unique = false;
175 if (unique) {
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.h 59 bool unique() const { return m_metadata.unique; } function in class:WebCore::IDBIndex
IDBMetadata.h 41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry)
45 , unique(unique)
50 bool unique; member in struct:WebCore::IDBIndexMetadata
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 74 bool unique; member in struct:blink::WebIDBMetadata::Index
79 , unique(false)
  /external/chromium_org/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_org/third_party/webrtc/base/
linked_ptr.h 75 bool unique() const throw() {return itsPrev ? itsPrev==this : true;} function in class:rtc::linked_ptr
111 { // erase this from the list, delete if unique
112 if (unique()) delete itsPtr;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
shared_array.hpp 118 bool unique() const // never throws function in class:boost::shared_array
120 return pn.unique();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidatorTest.java 86 validator.unique();
  /external/chromium_org/content/browser/indexed_db/
indexed_db_metadata.h 21 bool unique,
26 unique(unique),
31 bool unique; member in struct:content::IndexedDBIndexMetadata
  /external/chromium_org/third_party/angle/src/common/
utilities.cpp 448 UINT unique = GetTempFileNameA(path, "sh", 0, path); local
449 if (unique == 0)
  /external/chromium_org/third_party/markdown/extensions/
headerid.py 47 All header IDs are unique:
129 def unique(id, ids): function
130 """ Ensure id is unique in set of ids. Append '_1', '_2'... if not """
172 elem.set('id', unique(id, self.IDs))
toc.py 49 from .headerid import slugify, unique, itertext namespace
195 elem_id = unique(self.config["slugify"](text, '-'), used_ids)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
shared_count.hpp 360 bool unique() const // nothrow function in class:boost::detail::shared_count
  /external/chromium_org/webkit/browser/quota/
quota_database.h 134 bool unique; member in struct:quota::QuotaDatabase::IndexSchema
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
MixinEmitter.java 61 Set unique = new HashSet(); local
65 if (unique.add(MethodWrapper.create(methods[j]))) {
  /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/5/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/6/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/7/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/8/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/9/sources/cxx-stl/EH/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
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java 47 /** If true, the validated name must be unique */
77 * Makes the resource name validator require that names are unique.
81 public ResourceNameValidator unique() { method in class:ResourceNameValidator
211 type == ResourceType.DRAWABLE).unique();
216 * unique in the project.

Completed in 779 milliseconds

1 2 3 4 5 6 7 8 91011>>