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

1234

/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DDuplicatesPredicate.java22 private Set unique = new HashSet(); field in class:DuplicatesPredicate
25 return unique.add(MethodWrapper.create((Method)arg));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBIndex.h60 bool unique() const { return m_metadata.unique; } function in class:blink::IDBIndex
H A DIDBMetadata.h41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry) argument
45 , unique(unique)
50 bool unique; member in struct:blink::IDBIndexMetadata
/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/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBMetadata.h72 bool unique; member in struct:blink::WebIDBMetadata::Index
77 , unique(false)
H A DWebIDBDatabase.h59 virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_metadata.h23 bool unique,
28 unique(unique),
33 bool unique; member in struct:content::IndexedDBIndexMetadata
20 IndexedDBIndexMetadata(const base::string16& name, int64 id, const IndexedDBKeyPath& key_path, bool unique, bool multi_entry) argument
/external/chromium_org/third_party/markdown/extensions/
H A Dheaderid.py47 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))
H A Dtoc.py49 from .headerid import slugify, unique, itertext namespace
195 elem_id = unique(self.config["slugify"](text, '-'), used_ids)
/external/chromium_org/third_party/webrtc/base/
H A Dlinked_ptr.h75 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/v8/src/compiler/
H A Djs-graph.cc14 Unique<Object> unique = Unique<Object>::CreateImmovable(object); local
15 return NewNode(common()->HeapConstant(unique));
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);
111 return HeapConstant(unique);
/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_org/components/autofill/core/browser/
H A Dautocomplete_history_manager.cc166 bool unique = true; local
170 unique = false;
175 if (unique) {
/external/chromium_org/storage/browser/quota/
H A Dquota_database.h134 bool unique; member in struct:storage::QuotaDatabase::IndexSchema
/external/chromium_org/third_party/angle/src/common/
H A Dutilities.cpp453 UINT unique = GetTempFileNameA(path, "sh", 0, path); local
454 if (unique == 0)
/external/chromium_org/third_party/skia/include/core/
H A DSkRefCnt.h51 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/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," : ","));
/external/lldb/source/API/
H A DSBBroadcaster.cpp73 SBBroadcaster::BroadcastEventByType (uint32_t event_type, bool unique) argument
78 log->Printf ("SBBroadcaster(%p)::BroadcastEventByType (event_type=0x%8.8x, unique=%i)", m_opaque_ptr, event_type, unique);
83 if (unique)
90 SBBroadcaster::BroadcastEvent (const SBEvent &event, bool unique) argument
95 log->Printf ("SBBroadcaster(%p)::BroadcastEventByType (SBEvent(%p), unique=%i)", m_opaque_ptr, event.get(), unique);
101 if (unique)
/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/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.cc243 bool unique,
252 params.unique = unique;
238 createIndex(long long transaction_id, long long object_store_id, long long index_id, const WebString& name, const WebIDBKeyPath& key_path, bool unique, bool multi_entry) argument
/external/chromium_org/third_party/skia/include/gpu/
H A DGrGpuResource.h72 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/chromium_org/ui/keyboard/resources/
H A Dtouch_fuzzing.js352 var unique = function(array) {
386 edges = unique(edges);

Completed in 4922 milliseconds

1234