/external/valgrind/memcheck/tests/ |
threadname_xml.stderr.exp | 32 <unique>0x........</unique> 84 <unique>0x........</unique> 136 <unique>0x........</unique> 195 <unique>0x........</unique> 248 <unique>0x........</unique> [all...] |
xml1.stderr.exp | 32 <unique>0x........</unique> 116 <unique>0x........</unique> 157 <unique>0x........</unique> 198 <unique>0x........</unique> 290 <unique>0x........</unique> [all...] |
xml1.stderr.exp-s390x-mvc | 32 <unique>0x........</unique> 116 <unique>0x........</unique> 157 <unique>0x........</unique> 198 <unique>0x........</unique> 290 <unique>0x........</unique> [all...] |
/external/webrtc/webrtc/libjingle/xmpp/ |
mucroomuniquehangoutidtask_unittest.cc | 77 "<uni:unique hangout-id=\"true\" " 78 "xmlns:uni=\"http://jabber.org/protocol/muc#unique\"/>" 88 "<unique hangout-id=\"some_hangout_id\" " 89 "xmlns=\"http://jabber.org/protocol/muc#unique\">" 91 "</unique>"
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Element.h | 47 * Set the unique identifier for this policy element. 49 * @tparam Key type of the unique identifier. 61 * @return the unique identifier of this policy element. 95 std::string mName; /**< Unique literal Identifier of a policy base element*/ 96 Key mIdentifier; /**< Unique numerical Identifier of a policy base element*/
|
InputSource.h | 48 * Set the unique identifier for this policy element. 50 * @tparam Key type of the unique identifier. 58 * @return the unique identifier of this policy element. 78 std::string mName; /**< Unique literal Identifier of a policy base element*/ 79 audio_source_t mIdentifier; /**< Unique numerical Identifier of a policy base element*/
|
Stream.h | 49 * Set the unique identifier for this policy element. 51 * @tparam Key type of the unique identifier. 59 * @return the unique identifier of this policy element. 79 std::string mName; /**< Unique literal Identifier of a policy base element*/ 80 audio_stream_type_t mIdentifier; /**< Unique numerical Identifier of a policy base element*/
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
unique.pass.cpp | 12 // void unique(); 29 c1.unique(); 39 c1.unique(); 49 c1.unique(); 57 c1.unique(); 67 c1.unique(); 78 c1.unique(); 88 c1.unique(); 98 c1.unique(); 106 c1.unique(); [all...] |
unique_pred.pass.cpp | 12 // template <class BinaryPredicate> void unique(BinaryPredicate binary_pred); 34 c1.unique(g); 44 c1.unique(g); 54 c1.unique(g); 62 c1.unique(g); 72 c1.unique(g); 83 c1.unique(g); 93 c1.unique(g); 103 c1.unique(g); 111 c1.unique(g) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
unique.pass.cpp | 12 // void unique(); 29 c1.unique(); 39 c1.unique(); 49 c1.unique(); 57 c1.unique(); 67 c1.unique(); 78 c1.unique(); 88 c1.unique(); 98 c1.unique(); 106 c1.unique(); [all...] |
unique_pred.pass.cpp | 12 // template <class BinaryPredicate> void unique(BinaryPredicate binary_pred); 34 c1.unique(g); 44 c1.unique(g); 54 c1.unique(g); 62 c1.unique(g); 72 c1.unique(g); 83 c1.unique(g); 93 c1.unique(g); 103 c1.unique(g); 111 c1.unique(g) [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
HostInfo.java | 117 * This is used to create a unique name for the host name. 198 DNSRecord.Address getDNSAddressRecord(DNSRecordType type, boolean unique, int ttl) { 201 return this.getDNS4AddressRecord(unique, ttl); 204 return this.getDNS6AddressRecord(unique, ttl); 210 private DNSRecord.Address getDNS4AddressRecord(boolean unique, int ttl) { 212 return new DNSRecord.IPv4Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress()); 217 private DNSRecord.Address getDNS6AddressRecord(boolean unique, int ttl) { 219 return new DNSRecord.IPv6Address(this.getName(), DNSRecordClass.CLASS_IN, unique, ttl, this.getInetAddress()); 224 DNSRecord.Pointer getDNSReverseAddressRecord(DNSRecordType type, boolean unique, int ttl) { 227 return this.getDNS4ReverseAddressRecord(unique, ttl) [all...] |
/external/v8/test/cctest/ |
test-unique.cc | 32 #include "src/crankshaft/unique.h" 55 Unique<String> A(handles[0]); \ 56 Unique<String> B(handles[1]); \ 57 Unique<String> C(handles[2]) 60 Unique<String> A(handles[0]); \ 61 Unique<String> B(handles[1]); \ 62 Unique<String> C(handles[2]); \ 63 Unique<String> D(handles[3]); \ 64 Unique<String> E(handles[4]); \ 65 Unique<String> F(handles[5]); [all...] |
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/ |
unique_pred.pass.cpp | 16 // unique(Iter first, Iter last, Pred pred); 43 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()); 51 r = std::unique(Iter(ib), Iter(ib+sb), count_equal()); 60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); 68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 77 r = std::unique(Iter(ie), Iter(ie+se), count_equal()); 87 r = std::unique(Iter(ig), Iter(ig+sg), count_equal()); 96 r = std::unique(Iter(ih), Iter(ih+sh), count_equal()); 105 r = std::unique(Iter(ii), Iter(ii+si), count_equal()); 131 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
unique_pred.pass.cpp | 16 // unique(Iter first, Iter last, Pred pred); 43 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()); 51 r = std::unique(Iter(ib), Iter(ib+sb), count_equal()); 60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); 68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 77 r = std::unique(Iter(ie), Iter(ie+se), count_equal()); 87 r = std::unique(Iter(ig), Iter(ig+sg), count_equal()); 96 r = std::unique(Iter(ih), Iter(ih+sh), count_equal()); 105 r = std::unique(Iter(ii), Iter(ii+si), count_equal()); 131 Iter r = std::unique(Iter(ia), Iter(ia+sa), count_equal()) [all...] |
/external/autotest/server/site_tests/security_kASLR/ |
security_kASLR.py | 104 unique = len(address_count) 105 logging.info("Unique kernel offsets: %d", unique) 111 if unique < 2: 113 if unique < (self.reboot_count / 3): 115 if highest > (unique / 10):
|
/frameworks/base/core/java/android/speech/tts/ |
ITextToSpeechCallback.aidl | 27 * @param utteranceId Unique id identifying the synthesis request. 34 * @param utteranceId Unique id identifying the synthesis request. 41 * @param utteranceId Unique id identifying the synthesis request. 48 * @param utteranceId Unique id identifying the synthesis request. 63 * @param utteranceId Unique id identifying the synthesis request. 81 * @param utteranceId Unique id identifying the synthesis request.
|
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
unique.pass.cpp | 12 // void unique(); 25 c.unique(); 33 c.unique();
|
unique_pred.pass.cpp | 12 // template <class BinaryPred> void unique(BinaryPred pred); 30 c.unique(g); 38 c.unique(g);
|
/frameworks/base/core/java/android/app/job/ |
IJobCallback.aidl | 33 * @param jobId Unique integer used to identify this job. 41 * @param jobId Unique integer used to identify this job. 49 * @param jobId Unique integer used to identify this job.
|
/frameworks/base/core/java/android/widget/ |
ExpandableListAdapter.java | 76 * unique across groups. The combined ID (see 77 * {@link #getCombinedGroupId(long)}) must be unique across ALL items 87 * unique across all children within the group. The combined ID (see 88 * {@link #getCombinedChildId(long, long)}) must be unique across ALL items 182 * Gets an ID for a child that is unique across any item (either group or 184 * child) to have a unique ID among all children and groups in the list. 185 * This method is responsible for returning that unique ID given a child's 191 * @return The unique (and possibly stable) ID of the child across all 197 * Gets an ID for a group that is unique across any item (either group or 199 * child) to have a unique ID among all children and groups in the list [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
unique.pass.cpp | 12 // void unique(); 25 c.unique(); 33 c.unique();
|
unique_pred.pass.cpp | 12 // template <class BinaryPred> void unique(BinaryPred pred); 30 c.unique(g); 38 c.unique(g);
|
/external/autotest/client/site_tests/peerd_HandlesNameConflicts/ |
control | 18 4) Advertises records with the same unique name over mDNS
|
/external/autotest/server/site_tests/brillo_ProcLibMemoryInventory/ |
control | 14 Take inventory of process and shared lib unique RSS on a Brillo device.
|