HomeSort by relevance Sort by last modified time
    Searched full:identity (Results 51 - 75 of 2436) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/data/xml/rbnf/
ca.xml 7 <identity>
10 </identity>
cy.xml 7 <identity>
10 </identity>
da.xml 7 <identity>
10 </identity>
de.xml 7 <identity>
11 </identity>
fo.xml 7 <identity>
10 </identity>
is.xml 7 <identity>
10 </identity>
mk.xml 7 <identity>
10 </identity>
nb.xml 7 <identity>
10 </identity>
nn.xml 7 <identity>
10 </identity>
root.xml 7 <identity>
10 </identity>
ru.xml 7 <identity>
10 </identity>
sr.xml 7 <identity>
10 </identity>
uk.xml 7 <identity>
10 </identity>
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 24 import java.security.Identity;
121 public static class IdentitySubclass extends Identity {
139 * java.security.Identity#Identity()
146 * java.security.Identity#Identity(java.lang.String)
155 assertTrue(is instanceof Identity);
157 fail("Unexpected exception for Identity(java.lang.String) with parameter "
164 * java.security.Identity#Identity(java.lang.String
    [all...]
  /frameworks/base/core/java/android/content/pm/
VerifierDeviceIdentity.java 27 * An identity that uniquely identifies a particular device. In this
28 * implementation, the identity is represented as a 64-bit integer encoded to a
54 * Create a verifier device identity from a long.
56 * @param identity device identity in a 64-bit integer.
59 public VerifierDeviceIdentity(long identity) {
60 mIdentity = identity;
61 mIdentityString = encodeBase32(identity);
65 final long identity = source.readLong(); local
67 mIdentity = identity;
90 long identity = rng.nextLong(); local
    [all...]
  /frameworks/base/core/java/android/net/
PskKeyManager.java 45 * handshake the server can provide a <em>PSK identity hint</em> to the client, and the client can
46 * provide a <em>PSK identity</em> to the server. The contents of these two pieces of information
49 * <p><em>NOTE: Both the PSK identity hint and the PSK identity are transmitted in cleartext.
57 * <li>Server replies, optionally providing a PSK identity hint to client.</li>
59 * <li>Client provides a PSK identity of the chosen key to server.</li>
65 * know the key to learn which PSK identity hints or PSK identities are supported. If this is a
68 * where a key is available -- making it appear to the attacker that all PSK identity hints and PSK
76 * <li>128 bytes for PSK identity and PSK identity hint (in modified UTF-8 representation) (se
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
DoubleAccumulator.java 31 * Double.NEGATIVE_INFINITY} as the identity. The order of
54 private final long identity; // use long representation field in class:DoubleAccumulator
58 * and identity element.
60 * @param identity identity (initial value) for the accumulator function
63 double identity) {
65 base = this.identity = Double.doubleToRawLongBits(identity);
113 * Resets variables maintaining updates to the identity value.
122 base = identity;
223 private final long identity; field in class:DoubleAccumulator.SerializationProxy
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 3 template<typename T> struct identity;
23 typedef identity<T(Types...)> function_pack_1;
24 typedef identity<T(Types......)> variadic_function_pack_1; // expected-warning {{varargs}} expected-note {{pack}} expected-note {{insert ','}}
25 typedef identity<T(T...)> variadic_1;
  /external/eigen/doc/examples/
Tutorial_simple_example_fixed_size.cpp 10 Matrix4f m4 = Matrix4f::Identity();
  /external/eigen/doc/snippets/
HouseholderQR_householderQ.cpp 1 MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
MatrixBase_isDiagonal.cpp 1 Matrix3d m = 10000 * Matrix3d::Identity();
MatrixBase_isIdentity.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_isUnitary.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_set.cpp 6 Matrix3i m2 = Matrix3i::Identity();
Tutorial_AdvancedInitialization_ThreeWays.cpp 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
17 mat3 << MatrixXd::Zero(size/2, size/2), MatrixXd::Identity(size/2, size/2),
18 MatrixXd::Identity(size/2, size/2), MatrixXd::Zero(size/2, size/2);

Completed in 140 milliseconds

1 23 4 5 6 7 8 91011>>