Searched defs:Identity (Results 1 - 25 of 38) sorted by path

12

/external/chromium_org/base/
H A Dbind_unittest.cc166 int Identity(int n) { function in namespace:base::__anon2202
446 Callback<int(void)> bind_primitive_cb = Bind(&Identity, n);
453 Callback<int(void)> bind_int_literal_cb = Bind(&Identity, 3);
529 Callback<int(void)> ref_copies_cb = Bind(&Identity, ref_n);
534 Callback<int(void)> const_ref_copies_cb = Bind(&Identity, const_ref_n);
648 Callback<int(void)> copy_cb = Bind(&Identity, n);
649 Callback<int(void)> const_ref_cb = Bind(&Identity, ConstRef(n));
/external/chromium_org/content/browser/media/
H A Dwebrtc_identity_store_backend.cc65 struct WebRTCIdentityStoreBackend::Identity { struct in class:content::WebRTCIdentityStoreBackend
66 Identity(const std::string& common_name, function in struct:content::WebRTCIdentityStoreBackend::Identity
74 Identity(const std::string& common_name, function in struct:content::WebRTCIdentityStoreBackend::Identity
125 const Identity& identity);
128 const Identity& identity);
148 const Identity& identity)
157 Identity identity;
166 const Identity& identity);
231 // Identity found.
262 Identity identit
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth.cc22 HttpAuth::Identity::Identity() : source(IDENT_SRC_NONE), invalid(true) {} function in class:net::HttpAuth::Identity
H A Dhttp_auth.h102 struct Identity { struct in class:net::HttpAuth
103 Identity();
/external/chromium_org/remoting/webapp/
H A Didentity.js19 * @type {remoting.Identity|remoting.OAuth2}
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));
62 remoting.Identity.prototype.removeCachedAuthToken = function(onDone) {
83 remoting.Identity.prototype.getEmail = function(onOk, onError) {
84 /** @type {remoting.Identity} */
102 remoting.Identity.prototype.getCachedEmail = function() {
114 remoting.Identity
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperation.h52 Identity, None enumerator in enum:blink::TransformOperation::OperationType
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dvertexconversion.h26 struct Identity struct in namespace:rx
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
H A Dcallback.h32 // Identity<T>::type is a typedef of T. Useful for preventing the
35 struct Identity { struct in namespace:invalidation::internal
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<Arg
[all...]
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_matrix.c131 * Identity matrix.
133 static GLfloat Identity[16] = { variable
596 memcpy( out, Identity, sizeof(Identity) );
630 * Simply copies Identity into GLmatrix::inv.
634 memcpy( mat->inv, Identity, sizeof(Identity) );
656 memcpy( out, Identity, 16 * sizeof(GLfloat) );
689 memcpy( out, Identity, 16 * sizeof(GLfloat) );
711 memcpy( out, Identity, 1
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dbind_unittest.cc23 template <class T> T Identity(T value) { ++call_count; return value; } function in struct:rtc::__anon15658::MethodBindTester
47 EXPECT_EQ(100, Bind(&MethodBindTester::Identity<int>, &object, 100)());
50 EXPECT_EQ(string_value, Bind(&MethodBindTester::Identity<std::string>,
/external/chromium_org/tools/grit/grit/
H A Dtclib.py24 def Identity(i): function
67 def GetRealContent(self, escaping_function=Identity):
/external/chromium_org/ui/gfx/geometry/
H A Dmatrix3_f.cc73 Matrix3F Matrix3F::Identity() { function in class:gfx::Matrix3F
/external/clang/test/CodeGenCXX/
H A Ddebug-info.cpp2 template<typename T> struct Identity { struct
6 void f(Identity<int>::Type a) {}
7 void f(Identity<int> a) {}
/external/clang/test/Modules/Inputs/
H A Dcxx-templates-b.h25 template<typename T, typename> struct Identity { typedef T type; }; struct
27 typename Identity<DefinedInBImpl, T>::type dependent;
29 typename Identity<DefinedInBImpl, T>::type::Inner inner;
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
665 // Identity:
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) function in class:Eigen::MatrixBase
696 * \sa Identity(Index,Index), setIdentity(), isIdentity()
700 MatrixBase<Derived>::Identity() function in class:Eigen::MatrixBase
713 * \sa class CwiseNullaryOp, Identity(), Identity(Index,Index), setIdentity()
745 return m = Derived::Identity(
[all...]
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DQuaternion.h131 * \sa MatrixBase::Identity()
133 static inline Quaternion Identity() { return Quaternion(1, 0, 0, 0); } function in class:Eigen::Quaternion
135 /** \sa Quaternion::Identity(), MatrixBase::setIdentity()
H A DTransform.h184 static const typename MatrixType::IdentityReturnType Identity() function in class:Eigen::Transform
186 return MatrixType::Identity();
/external/eigen/Eigen/src/Geometry/
H A DAngleAxis.h134 static inline const AngleAxis Identity() { return AngleAxis(0, Vector3::UnitX()); } function in class:Eigen::AngleAxis
H A DQuaternion.h103 * \sa MatrixBase::Identity()
105 static inline Quaternion<Scalar> Identity() { return Quaternion<Scalar>(1, 0, 0, 0); } function in class:Eigen::QuaternionBase
107 /** \sa QuaternionBase::Identity(), MatrixBase::setIdentity()
H A DRotation2D.h111 static inline Rotation2D Identity() { return Rotation2D(0); } function in class:Eigen::Rotation2D

Completed in 685 milliseconds

12