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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/identity/
SConscript 5 identity = env.ConvenienceLibrary(
6 target = 'identity',
13 env.Alias('identity', identity)
15 Export('identity')
  /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,
10 identity TEXT PRIMARY KEY,
14 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1);
15 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2','password',1);
17 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS');
18 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
  /libcore/ojluni/src/main/java/java/security/
IdentityScope.java 34 * <p>This class represents a scope for identities. It is an Identity
38 * <p>An IdentityScope can contain Identity objects of all kinds, including
39 * Signers. All types of Identity objects can be retrieved, added, and
41 * expected, that different types of identity scopes will
48 * Suppose it is an Identity, that is, it has a public key, and a set of
50 * "Acme Software". No other named Identity in the scope has the same
53 * @see Identity
67 class IdentityScope extends Identity {
108 * Constructs a new identity scope with the specified name.
117 * Constructs a new identity scope with the specified name and scope
    [all...]
Identity.java 38 * <p>All Identity objects have a name and a public key. Names are
39 * immutable. Identities may also be scoped. That is, if an Identity is
41 * key of the Identity are unique within that scope.
43 * <p>An Identity also has a set of certificates (all certifying its own
47 * <p>An Identity can be subclassed, to include postal and email addresses,
61 public abstract class Identity implements Principal, Serializable {
67 * The name for this identity.
74 * The public key for this identity.
81 * Generic, descriptive information about the identity.
88 * The scope of the identity
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
UrlComponentEncodingTester.java 36 * '?' may be identity-encoded in a fragment, but must be percent-encoded in a path.
76 map.put((int) '!', Encoding.IDENTITY);
79 map.put((int) '$', Encoding.IDENTITY);
80 map.put((int) '%', Encoding.IDENTITY);
81 map.put((int) '&', Encoding.IDENTITY);
82 map.put((int) '\'', Encoding.IDENTITY);
83 map.put((int) '(', Encoding.IDENTITY);
84 map.put((int) ')', Encoding.IDENTITY);
85 map.put((int) '*', Encoding.IDENTITY);
86 map.put((int) '+', Encoding.IDENTITY);
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 22 import android.provider.ContactsContract.CommonDataKinds.Identity;
26 * Handler for Identity data rows.
31 super(context, dbHelper, aggregator, Identity.CONTENT_ITEM_TYPE);
39 // Identity affects aggregation.
40 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
53 // Identity affects aggregation.
55 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE))
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SystemScope.java 25 import java.security.Identity;
45 // Identities hash: key is the identity name
82 public synchronized Identity getIdentity(String name) {
86 return (Identity) names.get(name);
92 public synchronized Identity getIdentity(PublicKey key) {
96 return (Identity) keys.get(key);
100 * @see java.security.IdentityScope#addIdentity(java.security.Identity)
102 public synchronized void addIdentity(Identity identity) throws KeyManagementException {
103 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/clang/test/Preprocessor/
hash_line.c 8 #define IDENTITY(X) X
12 IDENTITY() #
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
identity.hpp 13 // $Id: identity.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
25 struct identity struct in namespace:boost::mpl
28 BOOST_MPL_AUX_LAMBDA_SUPPORT(1, identity, (T))
36 typedef identity<T> type;
40 BOOST_MPL_AUX_NA_SPEC_NO_ETI(1, identity)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 20 import java.security.Identity;
74 public Identity getIdentity(String name) {
77 Identity current = (Identity) en.nextElement();
84 public Identity getIdentity(PublicKey pk) {
87 Identity current = (Identity) en.nextElement();
98 public void addIdentity(Identity id) throws KeyManagementException {
101 "This Identity is already contained in the scope");
104 "This Identity's public key already exists in the scope")
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
IdentityTest.java 32 * Tests for class Identity
51 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...]
  /external/webrtc/webrtc/base/
bind.h 80 template <class T> struct identity { typedef T type; }; struct in namespace:rtc::detail
236 typename detail::identity<P1>::type p1) {
248 typename detail::identity<P1>::type p1) {
260 typename detail::identity<P1>::type p1) {
272 typename detail::identity<P1>::type p1) {
324 typename detail::identity<P1>::type p1,
325 typename detail::identity<P2>::type p2) {
338 typename detail::identity<P1>::type p1,
339 typename detail::identity<P2>::type p2) {
352 typename detail::identity<P1>::type p1
    [all...]
  /libcore/luni/src/test/java/tests/java/security/
IdentityTest.java 25 import java.security.Identity;
41 * Tests for class Identity
72 Identity i2 = new IdentityStub("testEquals", IdentityScope.getSystemScope());
74 Identity i3 = new IdentityStub("testEquals3");
80 * verify Identity.toString()
87 * verify Identity() creates instance
94 * verify Identity(String) creates instance with given name
97 Identity i = new IdentityStub("iii");
106 * verify Identity(String, IdentityScope) creates instance with given name and in give scope
110 Identity i = new IdentityStub("iii2", s)
    [all...]
  /development/perftests/panorama/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...]
  /development/samples/browseable/DocumentCentricRelinquishIdentity/
_index.jd 8 This sample shows how to relinquish identity to activities above it in the task stack.
  /external/clang/test/CodeCompletion/Inputs/
macros.h 3 #define IDENTITY(X) X

Completed in 994 milliseconds

1 2 3 4 5 6 7 8 91011>>