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

123

/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/skia/src/image/
H A DSkSurface_Base.h117 SkImage* SkSurface_Base::refCachedImage(SkBudgeted budgeted, ForceUnique unique) { argument
119 if (kYes_ForceUnique == unique && snap && !snap->unique()) {
125 ForceCopyMode fcm = (kYes_ForceUnique == unique) ? kYes_ForceCopyMode :
128 if (kNo_ForceUnique == unique) {
H A DSkSurface.cpp90 return fCachedImage && !fCachedImage->unique();
102 bool unique = fCachedImage->unique(); local
103 if (!unique) {
112 if (unique) {
171 SkImage* SkSurface::newImageSnapshot(SkBudgeted budgeted, ForceUnique unique) { argument
173 return asSB(this)->refCachedImage(budgeted, unique);
/external/skia/src/gpu/vk/
H A DGrVkResource.h73 bool unique() const { function in class:GrVkResource
76 // prevents code conditioned on the result of unique() from running
101 // Like unique(), the acquire is only needed on success, to make sure
112 // Like unique(), the acquire is only needed on success, to make sure
/external/webrtc/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/autotest/client/tests/iozone/
H A Dpostprocessing.py23 def unique(list): function
154 sizes = unique([line[index] for line in results])
/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...]
H A DDNSRecord.java45 DNSRecord(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl) { argument
46 super(name, type, recordClass, unique);
175 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { argument
176 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, addr);
179 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { argument
180 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, rawAddress);
217 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) { argument
218 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, addr);
221 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) { argument
222 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, tt
268 Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) argument
273 Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) argument
429 Pointer(String name, DNSRecordClass recordClass, boolean unique, int ttl, String alias) argument
540 Text(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte text[]) argument
646 Service(String name, DNSRecordClass recordClass, boolean unique, int ttl, int priority, int weight, int port, String server) argument
860 HostInformation(String name, DNSRecordClass recordClass, boolean unique, int ttl, String cpu, String os) argument
[all...]
/external/skia/include/core/
H A DSkRefCnt.h48 bool unique() const { function in class:SkRefCntBase
51 // prevents code conditioned on the result of unique() from running
64 // the use of unique() on such objects and as such should be removed
81 // Like unique(), the acquire is only needed on success, to make sure
236 // - unique() needs acquire when it returns true, and no barrier if it returns false;
240 bool unique() const { return 1 == sk_atomic_load(&fRefCnt, sk_memory_order_acquire); } function in class:SkNVRefCnt
/external/testng/src/main/java/org/testng/internal/
H A DMethodGroupsHelper.java43 IAnnotationFinder finder, boolean unique)
53 runInfo, tm, forTests, unique, outIncludedMethods);
62 if (!unique || !MethodGroupsHelper.isMethodAlreadyPresent(outIncludedMethods, tm)) {
68 runInfo, tm, forTests, unique, outIncludedMethods);
81 RunInfo runInfo, ITestNGMethod tm, boolean forTests, boolean unique, List<ITestNGMethod> outIncludedMethods)
87 if (unique) {
38 collectMethodsByGroup(ITestNGMethod[] methods, boolean forTests, List<ITestNGMethod> outIncludedMethods, List<ITestNGMethod> outExcludedMethods, RunInfo runInfo, IAnnotationFinder finder, boolean unique) argument
80 includeMethod(ITestOrConfiguration annotation, RunInfo runInfo, ITestNGMethod tm, boolean forTests, boolean unique, List<ITestNGMethod> outIncludedMethods) argument
H A DMethodHelper.java43 * @param unique true for unique methods, false otherwise
49 boolean unique, List<ITestNGMethod> outExcludedMethods)
58 unique);
179 * Extracts the unique list of <code>ITestNGMethod</code>s.
47 collectAndOrderMethods(List<ITestNGMethod> methods, boolean forTests, RunInfo runInfo, IAnnotationFinder finder, boolean unique, List<ITestNGMethod> outExcludedMethods) argument
/external/valgrind/helgrind/
H A Dhg_lock_n_thread.h67 as unique thread identifiers and so are never freed, so they should
149 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/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
H A Db2PolygonShape.cpp138 bool unique = true; local
143 unique = false;
148 if (unique)
/external/v8/src/crankshaft/
H A Dunique.h82 friend inline size_t hash_value(Unique<T> const& unique) { argument
83 DCHECK(unique.IsInitialized());
84 return base::hash<void*>()(unique.raw_address_);
165 // Add a new element to this unique set. Mutates this set. O(|this|).
168 // Keep the set sorted by the {raw_address} of the unique elements.
/external/vboot_reference/cgpt/
H A Dcgpt_show.c102 char type[GUID_STRLEN], unique[GUID_STRLEN]; local
118 GuidToStr(&entry->unique, unique, GUID_STRLEN);
119 printf(PARTITION_MORE, "UUID: ", unique);
195 GuidToStr(&entry->unique, buf, sizeof(buf));
/external/vboot_reference/firmware/include/
H A Dgpt.h97 * also contains the unique GUID, type, and attribute bits.
103 Guid unique; member in struct:__anon20923
/external/zopfli/src/zopflipng/
H A Dzopflipng_lib.cc90 void CountColors(std::set<unsigned>* unique, argument
93 unique->clear();
97 unique->insert(index);
98 if (unique->size() > 256) break;
/external/v8/src/ic/arm/
H A Dic-arm.cc232 // Checks whether a key is an array index string or a unique name.
233 // Falls through if a key is a unique name.
238 Label unique; local
243 __ b(eq, &unique);
258 __ bind(&unique);
/external/v8/src/ic/arm64/
H A Dic-arm64.cc225 // Checks whether a key is an array index string or a unique name.
226 // Falls through if a key is a unique name.
236 Label unique; local
240 __ B(eq, &unique);
253 __ Bind(&unique);
254 // Fall through if the key is a unique name.
/external/v8/src/ic/ia32/
H A Dic-ia32.cc230 // Checks whether a key is an array index string or a unique name.
231 // Falls through if the key is a unique name.
240 Label unique; local
244 __ j(equal, &unique);
258 __ bind(&unique);
/external/v8/src/ic/mips/
H A Dic-mips.cc238 // Checks whether a key is an array index string or a unique name.
239 // Falls through if a key is a unique name.
244 Label unique; local
249 __ Branch(&unique, eq, hash, Operand(LAST_UNIQUE_NAME_TYPE));
264 __ bind(&unique);

Completed in 770 milliseconds

123