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

1 2 3 4

  /external/chromium_org/remoting/webapp/
identity.js 7 * Wrapper class for Chrome's identity API.
19 * @type {remoting.Identity|remoting.OAuth2}
21 remoting.identity = null;
29 remoting.Identity = function(consentCallback) {
34 /** @type {Array.<remoting.Identity.Callbacks>} */
47 remoting.Identity.prototype.callWithToken = function(onOk, onError) {
48 this.pendingCallbacks_.push(new remoting.Identity.Callbacks(onOk, onError));
50 chrome.identity.getAuthToken(
62 remoting.Identity.prototype.removeCachedAuthToken = function(onDone) {
66 chrome.identity.removeCachedAuthToken({ 'token': token }, onDone)
    [all...]
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
callback.h 32 // Identity<T>::type is a typedef of T. Useful for preventing the
35 struct Identity {
67 typename internal::Identity<Arg1>::type arg1) {
75 typename internal::Identity<Arg1>::type arg1,
76 typename internal::Identity<Arg2>::type arg2) {
84 typename internal::Identity<Arg1>::type arg1,
85 typename internal::Identity<Arg2>::type arg2) {
94 typename internal::Identity<Arg1>::type arg1) {
103 typename internal::Identity<Arg1>::type arg1,
104 typename internal::Identity<Arg2>::type arg2
    [all...]
  /external/chromium_org/third_party/webrtc/base/
bind_unittest.cc 23 template <class T> T Identity(T value) { ++call_count; return value; }
47 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
50 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,
  /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_org/net/http/
http_auth.cc 22 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,
101 // the current identity being used for authorization.
102 struct Identity {
103 Identity();
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
vertexconversion.h 21 // static const bool identity: true if this is an identity transform, false otherwise
26 struct Identity
28 static const bool identity = true; member in struct:rx::Identity
41 static const bool identity = false; member in struct:rx::Cast
54 static const bool identity = true; member in struct:rx::Cast
67 static const bool identity = false; member in struct:rx::Normalize
93 static const bool identity = false; member in struct:rx::FixedToFloat
148 // static const bool identity: true if this is an identity transform (with no widening
158 static const bool identity = (WidenRule::initialWidth == WidenRule::finalWidth) && Converter::identity; member in struct:rx::VertexDataConverter
    [all...]
  /external/clang/test/Modules/Inputs/
cxx-templates-b.h 25 template<typename T, typename> struct Identity { typedef T type; };
27 typename Identity<DefinedInBImpl, T>::type dependent;
29 typename Identity<DefinedInBImpl, T>::type::Inner inner;
  /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()
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsmtrx.c 83 // 3x3 Identity
100 cmsMAT3 Identity;
103 _cmsMAT3identity(&Identity);
107 if (!CloseEnough(a ->v[i].n[j], Identity.v[i].n[j])) return FALSE;
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperation.h 52 Identity, None
  /external/chromium_org/tools/grit/grit/
tclib.py 24 def Identity(i):
67 def GetRealContent(self, escaping_function=Identity):
  /external/chromium_org/ui/gfx/geometry/
matrix3_f.cc 73 Matrix3F Matrix3F::Identity() {
  /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/fonttools/Lib/fontTools/misc/
transform.py 14 Identity -- Transform instance set to the identity transformation
42 >>> t = Identity.scale(0.5).translate(100, 200).skew(0.1, 0.2)
51 __all__ = ["Transform", "Identity", "Offset", "Scale"]
228 >>> t = Identity.translate(2, 3).scale(4, 5)
246 >>> t = Identity.scale(2, 3).translate(4, 5)
255 >>> len(Identity)
263 >>> list(Identity)
265 >>> tuple(Identity)
275 >>> t1 = Identity.scale(2, 3).translate(4, 6
    [all...]
  /libcore/luni/src/main/java/java/security/
Identity.java 26 * {@code Identity} represents an identity like a person or a company.
32 public abstract class Identity implements Principal, Serializable {
46 * Constructs a new instance of {@code Identity}.
48 protected Identity() {
52 * Creates a new instance of {@code Identity} with the specified name.
55 * the name of this {@code Identity}.
57 public Identity(String name) {
62 * Creates a new instance of {@code Identity} with the specified name and
63 * the scope of this {@code Identity}
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 926 static Mat4 Identity()
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 26 // Initializes the identity table, returning true on success.
65 struct WebRTCIdentityStoreBackend::Identity {
66 Identity(const std::string& common_name,
74 Identity(const std::string& common_name,
125 const Identity& identity);
128 const Identity& identity);
148 const Identity& identity)
157 Identity identity; member in struct:content::WebRTCIdentityStoreBackend::SqlLiteStorage::PendingOperation
    [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 nbRows, Index nbCols)
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...]

Completed in 1584 milliseconds

1 2 3 4