/external/eigen/doc/snippets/ |
Tutorial_commainit_02.cpp | 6 MatrixXf::Identity(rows-3,cols-3);
|
/external/libxml2/result/schemas/ |
changelog093_1_0.err | 1 ./test/schemas/changelog093_0.xml:7: element description: Schemas validity error : Element '{http://www.blackperl.com/XML/ChangeLog}description': Duplicate key-sequence ['PL'] in unique identity-constraint '{http://www.blackperl.com/XML/ChangeLog}changelogDescriptionLangConstraint'.
|
/external/valgrind/drd/tests/ |
tc15_laog_lockdel.stderr.exp | 4 Free 2 and re-allocate it. This gives it a new identity,
|
/external/webrtc/webrtc/base/ |
rtccertificate.cc | 18 scoped_ptr<SSLIdentity> identity) { 19 return new RefCountedObject<RTCCertificate>(identity.release()); 22 RTCCertificate::RTCCertificate(SSLIdentity* identity) 23 : identity_(identity) {
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
ieee8021x.conf | 10 identity="user name"
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/ |
identity.hpp | 15 # include <boost/preprocessor/facilities/identity.hpp>
|
/external/webrtc/webrtc/libjingle/xmpp/ |
mucroomdiscoverytask.cc | 33 const XmlElement* identity = query->FirstNamed(QN_DISCO_IDENTITY); local 34 if (identity == NULL || !identity->HasAttr(QN_NAME)) { 39 const std::string name(identity->Attr(QN_NAME)); 43 identity->FirstNamed(QN_GOOGLE_MUC_HANGOUT_CONVERSATION_ID);
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
LongAccumulator.java | 37 * Long.MIN_VALUE} as the identity. 56 private final long identity; field in class:LongAccumulator 60 * and identity element. 62 * @param identity identity (initial value) for the accumulator function 65 long identity) { 67 base = this.identity = identity; 110 * Resets variables maintaining updates to the identity value. 119 base = identity; 218 private final long identity; field in class:LongAccumulator.SerializationProxy [all...] |
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
EquivalenceTest.java | 47 .addEqualityGroup(Equivalence.identity().pairwise()) 107 Equivalence.identity().onResultOf(Functions.toStringFunction()), 108 Equivalence.identity().onResultOf(Functions.toStringFunction())) 110 .addEqualityGroup(Equivalence.identity().onResultOf(Functions.identity())) 127 .addEqualityGroup(Equivalence.identity().equivalentTo("1")) 138 EquivalenceTester.of(Equivalence.identity()) 148 .addEqualityGroup(Equivalence.identity(), Equivalence.identity())
|
/external/libnfc-nxp/src/ |
phHciNfc_IDMgmt.h | 22 * \brief HCI Header for the Identity Management Gate. * 76 * The phHciNfc_IDMgmt_Initialise function creates and the opens Identity 84 * \retval NFCSTATUS_PENDING Identity Mgmt Gate Initialisation is pending. 100 * from the Identity Management Gate 107 * \retval NFCSTATUS_PENDING Identity Mgmt Gate Information is pending. 131 * \retval NFCSTATUS_PENDING Release of the Identity Management gate 153 * \param[in] pipeID pipeID of the Identity management Gate 154 * \param[in] pPipeInfo Update the pipe Information of the Identity 173 * \brief Updates the Sequence of Identity Managment Gate. 175 * This function Updates the Sequence of the Identity Managemen [all...] |
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
VerifierDeviceIdentityTest.java | 71 assertEquals("The VerifierDeviceIdentity should have the same hashcode as its identity", 78 assertEquals("The identity should encode correctly to the expected Base 32 string", 85 assertEquals("The identity should encode correctly to the expected Base 32 string", 92 assertEquals("The identity should encode correctly to the expected Base 32 string", 99 assertEquals("The identity should encode correctly to the expected Base 32 string", 106 assertEquals("The identity should encode correctly to the expected Base 32 string", 131 assertEquals("Original identity and parceled identity should be the same", id1, id2); 158 assertEquals("Identity created from Long.MIN_VALUE and one created from return from RNG" 169 assertEquals("Identity should end up being same when coming from RNG", id1, id2) [all...] |
/external/conscrypt/src/test/java/org/conscrypt/ |
DuckTypedPSKKeyManagerTest.java | 102 String identity = "identity"; local 122 mockInvocationHandler.returnValue = identity; 123 assertSame(identity, pskKeyManager.chooseClientKeyIdentity(identityHint, mSSLSocket)); 131 mockInvocationHandler.returnValue = identity; 132 assertSame(identity, pskKeyManager.chooseClientKeyIdentity(identityHint, mSSLEngine)); 142 assertSame(key, pskKeyManager.getKey(identityHint, identity, mSSLSocket)); 148 assertSame(identity, mockInvocationHandler.lastInvokedMethodArgs[1]); 152 assertSame(key, pskKeyManager.getKey(identityHint, identity, mSSLEngine)); 158 assertSame(identity, mockInvocationHandler.lastInvokedMethodArgs[1]) [all...] |
/external/webrtc/talk/app/webrtc/ |
dtlsidentitystore.cc | 53 // This class runs on the worker thread to generate the identity. It's necessary 70 LOG(LS_INFO) << "Generating identity, using keytype " << key_type_; 71 rtc::scoped_ptr<rtc::SSLIdentity> identity( 77 new IdentityResult(key_type_, std::move(identity))); 178 // Already have a free identity generated? 180 // Return identity async - post even though we are on |signaling_thread_|. 181 LOG(LS_VERBOSE) << "Using a free DTLS identity."; 190 // Free identity in the process of being generated? 193 // No need to do anything, the free identity will be returned to the 209 rtc::KeyType key_type, rtc::scoped_ptr<rtc::SSLIdentity> identity) { [all...] |
dtlsidentitystore.h | 51 // Used to receive callbacks of DTLS identity requests. 58 // |identity| is a scoped_ptr because rtc::SSLIdentity is not copyable and the 60 virtual void OnSuccess(rtc::scoped_ptr<rtc::SSLIdentity> identity) = 0; 66 // This interface defines an in-memory DTLS identity store, which generates DTLS 74 // The |observer| will be called when the requested identity is ready, or when 75 // identity generation fails. 97 // Identity generation is performed on the worker thread. 101 // This will start to preemptively generating an RSA identity in the 115 // Returns true if there is a free RSA identity, used for unit tests. 123 rtc::scoped_ptr<rtc::SSLIdentity> identity); [all...] |
/frameworks/base/core/java/android/app/ |
UiAutomationConnection.java | 120 final long identity = Binder.clearCallingIdentity(); local 124 Binder.restoreCallingIdentity(identity); 135 final long identity = Binder.clearCallingIdentity(); local 146 Binder.restoreCallingIdentity(identity); 158 final long identity = Binder.clearCallingIdentity(); local 162 Binder.restoreCallingIdentity(identity); 174 final long identity = Binder.clearCallingIdentity(); local 182 Binder.restoreCallingIdentity(identity); 194 final long identity = Binder.clearCallingIdentity(); local 202 Binder.restoreCallingIdentity(identity); 213 final long identity = Binder.clearCallingIdentity(); local 228 final long identity = Binder.clearCallingIdentity(); local 246 final long identity = Binder.clearCallingIdentity(); local 262 final long identity = Binder.clearCallingIdentity(); local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/ |
Field.java | 31 /** Get the additive identity of the field. 33 * The additive identity is the element e<sub>0</sub> of the field such that 37 * @return additive identity of the field 41 /** Get the multiplicative identity of the field. 43 * The multiplicative identity is the element e<sub>1</sub> of the field such that 47 * @return multiplicative identity of the field
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/ |
SystemScopeTest.java | 24 import java.security.Identity; 55 ss.removeIdentity((Identity) e.nextElement()); 82 * verify getIdentity(String) returns requested identity or null if not found 88 java.security.Identity aaa = new IdentityScopeStub("aaa"); 96 * verify getIdentity(PublicKey) returns requested identity or null if not found 102 java.security.Identity aaa = new IdentityScopeStub("aaa"); 110 * verify that only one identity with given name or public key can be added 116 java.security.Identity aaa = new IdentityScopeStub("aaa"); 120 java.security.Identity bbb = new IdentityScopeStub("aaa"); 127 java.security.Identity ccc = new IdentityScopeStub("ccc") [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_gtc.c | 131 if (sm->identity && sm->require_identity_match && 133 os_memcmp(pos, sm->identity, sm->identity_len))) { 134 wpa_printf(MSG_DEBUG, "EAP-GTC: Phase 2 Identity did " 135 "not match with required Identity"); 137 "identity", 138 sm->identity, sm->identity_len); 142 os_free(sm->identity); 144 sm->identity = os_malloc(sm->identity_len); 145 if (sm->identity == NULL) { 149 os_memcpy(sm->identity, pos, sm->identity_len) [all...] |
/frameworks/base/services/print/java/com/android/server/print/ |
PrintManagerService.java | 136 final long identity = Binder.clearCallingIdentity(); local 141 Binder.restoreCallingIdentity(identity); 158 final long identity = Binder.clearCallingIdentity(); local 162 Binder.restoreCallingIdentity(identity); 183 final long identity = Binder.clearCallingIdentity(); local 187 Binder.restoreCallingIdentity(identity); 204 final long identity = Binder.clearCallingIdentity(); local 208 Binder.restoreCallingIdentity(identity); 229 final long identity = Binder.clearCallingIdentity(); local 233 Binder.restoreCallingIdentity(identity); 254 final long identity = Binder.clearCallingIdentity(); local 276 final long identity = Binder.clearCallingIdentity(); local 310 final long identity = Binder.clearCallingIdentity(); local 329 final long identity = Binder.clearCallingIdentity(); local 351 final long identity = Binder.clearCallingIdentity(); local 373 final long identity = Binder.clearCallingIdentity(); local 399 final long identity = Binder.clearCallingIdentity(); local 420 final long identity = Binder.clearCallingIdentity(); local 441 final long identity = Binder.clearCallingIdentity(); local 462 final long identity = Binder.clearCallingIdentity(); local 483 final long identity = Binder.clearCallingIdentity(); local 507 final long identity = Binder.clearCallingIdentity(); local 529 final long identity = Binder.clearCallingIdentity(); local 551 final long identity = Binder.clearCallingIdentity(); local 573 final long identity = Binder.clearCallingIdentity(); local 596 final long identity = Binder.clearCallingIdentity(); local 619 final long identity = Binder.clearCallingIdentity(); local 641 final long identity = Binder.clearCallingIdentity(); local 873 final long identity = Binder.clearCallingIdentity(); local 932 final long identity = Binder.clearCallingIdentity(); local [all...] |
/external/icu/icu4c/source/data/xml/brkitr/ |
de.xml | 14 <identity> 17 </identity>
|
el.xml | 12 <identity> 15 </identity>
|
en_US_POSIX.xml | 12 <identity> 17 </identity>
|
es.xml | 14 <identity> 17 </identity>
|
fi.xml | 12 <identity> 15 </identity>
|
fr.xml | 14 <identity> 17 </identity>
|