HomeSort by relevance Sort by last modified time
    Searched full:identity (Results 1 - 25 of 1825) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
MatrixBase_identity.cpp 1 cout << Matrix<double, 3, 4>::Identity() << endl;
MatrixBase_identity_int_int.cpp 1 cout << MatrixXd::Identity(4, 3) << endl;
MatrixBase_cast.cpp 1 Matrix2d md = Matrix2d::Identity() * 0.45;
2 Matrix2f mf = Matrix2f::Identity();
MatrixBase_col.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_row.cpp 1 Matrix3d m = Matrix3d::Identity();
MatrixBase_cwiseEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl;
5 cout << m.cwiseEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseEqual(MatrixXi::Identity(2,2)).count();
MatrixBase_cwiseNotEqual.cpp 4 cout << "Comparing m with identity matrix:" << endl;
5 cout << m.cwiseNotEqual(MatrixXi::Identity(2,2)) << endl;
6 int count = m.cwiseNotEqual(MatrixXi::Identity(2,2)).count();
  /external/wpa_supplicant_8/hostapd/
hostapd.eap_user_sqlite 2 identity TEXT PRIMARY KEY,
9 identity TEXT PRIMARY KEY,
13 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1);
14 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2','password',1);
16 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS');
17 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 22 import android.provider.ContactsContract.CommonDataKinds.Identity;
27 * Handler for Identity data rows.
32 super(context, dbHelper, aggregator, Identity.CONTENT_ITEM_TYPE);
40 // Identity affects aggregation.
41 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
54 // Identity affects aggregation.
56 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE))
    [all...]
  /libcore/luni/src/main/java/java/security/
IdentityScope.java 24 * {@code IdentityScope} represents a scope for {@link Identity} objects.
31 public abstract class IdentityScope extends Identity {
64 * if an identity with the same key already exists.
106 * Returns the number of {@code Identity} objects in this scope.
108 * @return the number of {@code Identity} objects in this scope.
113 * Returns the {@code Identity} with the specified name or {@code null} if
114 * no {@code Identity} with the specified name is present in this scope.
117 * the name of the {@code Identity} to be returned.
118 * @return the {@code Identity} with the specified name or {@code null} if
121 public abstract Identity getIdentity(String name)
    [all...]
Identity.java 26 * {@code Identity} represents an identity like a person or a company.
33 public abstract class Identity implements Principal, Serializable {
47 * Constructs a new instance of {@code Identity}.
49 protected Identity() {
53 * Creates a new instance of {@code Identity} with the specified name.
56 * the name of this {@code Identity}.
58 public Identity(String name) {
63 * Creates a new instance of {@code Identity} with the specified name and
64 * the scope of this {@code Identity}
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 25 import java.security.Identity;
43 // Identities hash: key is the identity name
80 public synchronized Identity getIdentity(String name) {
84 return (Identity) names.get(name);
90 public synchronized Identity getIdentity(PublicKey key) {
94 return (Identity) keys.get(key);
98 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
100 public synchronized void addIdentity(Identity identity) throws KeyManagementException {
101 if (identity == null)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
43 Hashtable<Identity, Identity> identities;
51 identities = new Hashtable<Identity, Identity>();
56 identities = new Hashtable<Identity, Identity>();
61 identities = new Hashtable<Identity, Identity>();
67 identities = new Hashtable<Identity, Identity>()
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
p3-0x.cpp 4 template<typename T> struct identity struct in namespace:PR6285
9 operator typename identity<T>::type(); // expected-note{{candidate}}
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
73 public Identity getIdentity(String name) {
76 Identity current = (Identity) en.nextElement();
83 public Identity getIdentity(PublicKey pk) {
86 Identity current = (Identity) en.nextElement();
97 public void addIdentity(Identity id) throws KeyManagementException {
100 "This Identity is already contained in the scope");
103 "This Identity's public key already exists in the scope")
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
IdentityTest.java 33 * Tests for class Identity
52 Identity i1 = new IdentityStub("testEquals");
65 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
67 Identity i3 = new IdentityStub("testEquals3");
73 * verify Identity.toString()
80 * verify Identity() creates instance
87 * verify Identity(String) creates instance with given name
90 Identity i = new IdentityStub("iii");
99 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
103 Identity i = new IdentityStub("iii2", s)
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
IdentityTest.java 25 import java.security.Identity;
40 * Tests for class Identity
71 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
73 Identity i3 = new IdentityStub("testEquals3");
79 * verify Identity.toString()
86 * verify Identity() creates instance
93 * verify Identity(String) creates instance with given name
96 Identity i = new IdentityStub("iii");
105 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
109 Identity i = new IdentityStub("iii2", s)
    [all...]
  /external/clang/test/CodeCompletion/Inputs/
macros.h 3 #define IDENTITY(X) X
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MatrixUtils.h 39 * Constructor with identity initialization
41 * identity: Specifies wether to initialize matrix to
42 * identity or zeros
44 Matrix33(bool identity) {
45 initialize(identity);
49 * Initialize to identity matrix
51 void initialize(bool identity = false) {
53 if (identity) {
97 * Constructor with identity initialization
99 * identity: Specifies wether to initialize matrix t
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
MatrixUtils.h 39 * Constructor with identity initialization
41 * identity: Specifies wether to initialize matrix to
42 * identity or zeros
44 Matrix33(bool identity) {
45 initialize(identity);
49 * Initialize to identity matrix
51 void initialize(bool identity = false) {
53 if (identity) {
97 * Constructor with identity initialization
99 * identity: Specifies wether to initialize matrix t
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MatrixUtils.h 39 * Constructor with identity initialization
41 * identity: Specifies wether to initialize matrix to
42 * identity or zeros
44 Matrix33(bool identity) {
45 initialize(identity);
49 * Initialize to identity matrix
51 void initialize(bool identity = false) {
53 if (identity) {
97 * Constructor with identity initialization
99 * identity: Specifies wether to initialize matrix t
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p4.cpp 5 template<class T> struct identity { typedef T type; }; struct in namespace:PR8598
8 void f(T C::*, typename identity<T>::type*){}
  /external/icu4c/data/xml/rbnf/
af.xml 7 <identity>
11 </identity>
am.xml 7 <identity>
11 </identity>
ar.xml 7 <identity>
11 </identity>

Completed in 3716 milliseconds

1 2 3 4 5 6 7 8 91011>>