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

1 2 3

  /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 60 bool unique() const { return m_metadata.unique; } function in class:blink::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:blink::IDBIndexMetadata
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 72 bool unique; member in struct:blink::WebIDBMetadata::Index
77 , unique(false)
  /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;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_metadata.h 23 bool unique,
28 unique(unique),
33 bool unique; member in struct:content::IndexedDBIndexMetadata
indexed_db_backing_store.h 250 bool unique; member in struct:content::IndexedDBBackingStore::Cursor::CursorOptions
561 // The origin identifier is a key prefix unique to the origin used in the
indexed_db_backing_store_unittest.cc 904 const bool unique = true; local
    [all...]
  /external/chromium_org/third_party/angle/src/common/
utilities.cpp 453 UINT unique = GetTempFileNameA(path, "sh", 0, path); local
454 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)
  /external/chromium_org/v8/src/compiler/
js-graph.cc 14 Unique<Object> unique = Unique<Object>::CreateImmovable(object); local
15 return NewNode(common()->HeapConstant(unique));
96 Node* JSGraph::HeapConstant(Unique<Object> value) {
97 // TODO(turbofan): canonicalize heap constants using Unique<T>
106 // return HeapConstant(Unique<Object>::CreateUninitialized(value));
107 // TODO(turbofan): This is a work-around to make Unique::HashCode() work for
108 // value numbering. We need some sane way to compute a unique hash code for
110 Unique<Object> unique(reinterpret_cast<Address>(*value.location()), value)
    [all...]
  /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/chromium_org/storage/browser/quota/
quota_database.h 134 bool unique; member in struct:storage::QuotaDatabase::IndexSchema
  /external/chromium_org/third_party/skia/include/core/
SkRefCnt.h 51 bool unique() const { function in class:SkRefCntBase
54 bool const unique = (1 == SK_ANNOTATE_UNPROTECTED_READ(fRefCnt)); local
55 if (unique) {
57 // Prevents user's 'unique' code from happening before decrements.
60 return unique;
  /external/chromium_org/third_party/skia/include/gpu/
GrGpuResource.h 72 bool unique() const { return 1 == (fRefCnt + fPendingReads + fPendingWrites); } function in class:GrIORef
187 * Gets an id that is unique for this GrGpuResource object. It is static in that it does
  /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/chromium_org/ui/keyboard/resources/
touch_fuzzing.js 352 var unique = function(array) {
386 edges = unique(edges);
  /external/lldb/include/lldb/Utility/
SharingPtr.h 162 bool unique() const {return use_count() == 1;} function in class:lldb_private::SharingPtr
746 unique () const function in class:lldb_private::IntrusiveSharingPtr
  /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/chromium_org/content/browser/appcache/
appcache_database_unittest.cc 812 bool unique; member in struct:content::__anon11622
891 if (kIndexes3[i].unique)
892 sql += "CREATE UNIQUE INDEX ";
1003 bool unique; member in struct:content::IndexInfo
    [all...]
appcache_database.cc 57 bool unique; member in struct:content::__anon11619::IndexInfo
168 if (info.unique)
169 sql += "CREATE UNIQUE INDEX ";
    [all...]
  /external/chromium_org/v8/src/ic/arm/
ic-arm.cc 215 // Checks whether a key is an array index string or a unique name.
216 // Falls through if a key is a unique name.
221 Label unique; local
226 __ b(eq, &unique);
241 __ bind(&unique);
498 // Load the key (consisting of map and unique name) from the cache and
    [all...]
  /external/chromium_org/v8/src/ic/arm64/
ic-arm64.cc 214 // Checks whether a key is an array index string or a unique name.
215 // Falls through if a key is a unique name.
225 Label unique; local
229 __ B(eq, &unique);
242 __ Bind(&unique);
243 // Fall through if the key is a unique name.
513 // Load the key (consisting of map and unique name) from the cache and
    [all...]

Completed in 991 milliseconds

1 2 3