HomeSort by relevance Sort by last modified time
    Searched defs:Identity (Results 1 - 25 of 46) sorted by null

1 2

  /external/guava/guava/src/com/google/common/base/
Equivalences.java 57 public static Equivalence<Object> identity() { method in class:Equivalences
58 return Identity.INSTANCE;
79 private static final class Identity extends Equivalence<Object>
82 static final Identity INSTANCE = new Identity();
  /external/chromium/net/http/
http_auth.cc 21 HttpAuth::Identity::Identity() : source(IDENT_SRC_NONE), invalid(true) {}
http_auth.h 64 // Describes where the identity used for authentication came from.
66 // Came from nowhere -- the identity is not initialized.
69 // The identity came from the auth cache, by doing a path-based
73 // The identity was extracted from a URL of the form:
77 // The identity was retrieved from the auth cache, by doing a
81 // The identity was provided by RestartWithAuth -- it likely
85 // The identity used the default credentials for the computer,
100 // the current identity being used for authorization.
101 struct Identity {
102 Identity();
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 2 template<typename T> struct Identity {
6 void f(Identity<int>::Type a) {}
7 void f(Identity<int> a) {}
  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 111 static inline Rotation2D Identity() { return Rotation2D(0); }
Translation.h 145 static const Translation Identity() { return Translation(VectorType::Zero()); }
AngleAxis.h 134 static inline const AngleAxis Identity() { return AngleAxis(0, Vector3::UnitX()); }
Quaternion.h 102 /** \returns a quaternion representing an identity rotation
103 * \sa MatrixBase::Identity()
105 static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(1, 0, 0, 0); }
107 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
Transform.h 495 * \brief Returns an identity transformation.
498 static const Transform Identity()
500 return Transform(MatrixType::Identity());
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 22 // static const bool identity: true if this is an identity transform, false otherwise
27 struct Identity
29 static const bool identity = true; member in struct:gl::Identity
42 static const bool identity = false; member in struct:gl::Cast
55 static const bool identity = true; member in struct:gl::Cast
68 static const bool identity = false; member in struct:gl::Normalize
94 static const bool identity = false; member in struct:gl::FixedToFloat
149 // static const bool identity: true if this is an identity transform (with no widening
159 static const bool identity = (WidenRule::initialWidth == WidenRule::finalWidth) && Converter::identity; member in struct:gl::VertexDataConverter
    [all...]
  /libcore/luni/src/main/java/java/security/
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...]
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
665 // Identity:
667 /** \returns an expression of the identity matrix (not necessarily square).
673 * it is redundant to pass \a rows and \a cols as arguments, so Identity() should be used
679 * \sa Identity(), setIdentity(), isIdentity()
683 MatrixBase<Derived>::Identity(Index rows, Index cols)
688 /** \returns an expression of the identity matrix (not necessarily square).
696 * \sa Identity(Index,Index), setIdentity(), isIdentity()
700 MatrixBase<Derived>::Identity()
706 /** \returns true if *this is approximately equal to the identity matri
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 184 static const typename MatrixType::IdentityReturnType Identity()
186 return MatrixType::Identity();
Quaternion.h 130 /** \returns a quaternion representing an identity rotation
131 * \sa MatrixBase::Identity()
133 static inline Quaternion Identity() { return Quaternion(1, 0, 0, 0); }
135 /** \sa Quaternion::Identity(), MatrixBase::setIdentity()
347 // set to identity
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 47 private final List<Identity> identities = new CopyOnWriteArrayList<Identity>();
74 for (Identity i : d.identities) {
119 * Adds a new identity of the requested entity to the discovered information.
121 * @param identity the discovered entity's identity
123 public void addIdentity(Identity identity) {
125 identities.add(identity);
134 public void addIdentities(Collection<Identity> identitiesToAdd)
    [all...]
  /external/chromium/base/
bind_unittest.cc 150 int Identity(int n) {
324 Callback<int(void)> bind_primitive_cb = Bind(&Identity, n);
331 Callback<int(void)> bind_int_literal_cb = Bind(&Identity, 3);
402 Callback<int(void)> ref_copies_cb = Bind(&Identity, ref_n);
407 Callback<int(void)> const_ref_copies_cb = Bind(&Identity, const_ref_n);
481 Callback<int(void)> copy_cb = Bind(&Identity, n);
482 Callback<int(void)> const_ref_cb = Bind(&Identity, ConstRef(n));
591 // Callback<int(void)> cb_a0 = Bind(&Identity, 1);
597 // Callback<int(void)> cb_a1 = Bind(&Identity, 1);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 584 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType());
585 assert(Identity && "Associative operation without identity!");
586 Ops.push_back(std::make_pair(Identity, APInt(Bitwidth, 1)));
    [all...]
  /external/openssh/
ssh-agent.c 104 typedef struct identity { struct
105 TAILQ_ENTRY(identity) next;
111 } Identity;
115 TAILQ_HEAD(idqueue, identity) idlist;
172 free_identity(Identity *id)
182 static Identity *
185 Identity *id;
197 confirm_key(Identity *id)
216 Identity *id;
249 Identity *id
    [all...]
sshconnect2.c 241 typedef struct identity Identity;
244 struct identity { struct
245 TAILQ_ENTRY(identity) next;
252 TAILQ_HEAD(idlist, identity);
312 static int sign_and_send_pubkey(Authctxt *, Identity *);
555 Identity *id = NULL;
1172 identity_sign(Identity *id, u_char **sigp, u_int *lenp,
1197 sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 633 private class Identity {
637 Identity(int _pid, int _uid) {
643 private static ThreadLocal<Identity> sCallerIdentity = new ThreadLocal<Identity>();
    [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 1430 milliseconds

1 2