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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/
identity.hpp 15 # include <boost/preprocessor/facilities/identity.hpp>
  /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/CXX/dcl.decl/dcl.meaning/dcl.fct/
p14.cpp 3 template<typename T> struct identity;
23 typedef identity<T(Types...)> function_pack_1;
24 typedef identity<T(Types......)> variadic_function_pack_1; // expected-warning {{varargs}} expected-note {{pack}} expected-note {{insert ','}}
25 typedef identity<T(T...)> variadic_1;
  /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/webrtc/webrtc/base/
rtccertificate.h 27 // Takes ownership of |identity|.
28 static scoped_refptr<RTCCertificate> Create(scoped_ptr<SSLIdentity> identity);
41 SSLIdentity* identity() const { return identity_.get(); } function in class:rtc::RTCCertificate
44 explicit RTCCertificate(SSLIdentity* identity);
rtccertificate.cc 18 scoped_ptr<SSLIdentity> identity) {
19 return new RefCountedObject<RTCCertificate>(identity.release());
22 RTCCertificate::RTCCertificate(SSLIdentity* identity)
23 : identity_(identity) {
stringutils_unittest.cc 43 // EXPECT_EQ(0, ascii_string_compare(NULL, NULL, 1, identity));
48 EXPECT_EQ(-1, ascii_string_compare(L"Test", "Test1", 5, identity));
54 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test1", 3, identity));
59 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test", 10, identity));
64 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test", 5, identity));
70 EXPECT_EQ(-1, ascii_string_compare(L"abc", "abd", 4, identity));
76 EXPECT_EQ(1, ascii_string_compare(L"xyz", "xy", 5, identity));
  /external/skia/src/ports/
SkFontConfigInterface_direct_google3.cpp 26 SkStreamAsset* SkFontConfigInterfaceDirectGoogle3::openStream(const FontIdentity& identity) {
27 const char* c_filename = identity.fString.c_str();
33 return this->INHERITED::openStream(identity);
  /frameworks/base/libs/hwui/tests/unit/
SnapshotTests.cpp 26 auto actualRoot = TestUtils::makeSnapshot(Matrix4::identity(), Rect(0, 0, 100, 100));
27 auto root = TestUtils::makeSnapshot(Matrix4::identity(), Rect(10, 10, 90, 90));
28 auto child = TestUtils::makeSnapshot(Matrix4::identity(), Rect(50, 50, 90, 90));
36 &rect, Matrix4::identity());
44 &rect, Matrix4::identity());
51 auto actualRoot = TestUtils::makeSnapshot(Matrix4::identity(), Rect(0, 0, 100, 100));
52 auto root = TestUtils::makeSnapshot(Matrix4::identity(), Rect(10, 10, 90, 90));
57 auto child = TestUtils::makeSnapshot(Matrix4::identity(), Rect(50, 50, 90, 90));
59 child->applyClip(&rect, Matrix4::identity());
67 auto child = TestUtils::makeSnapshot(Matrix4::identity(), Rect(50, 50, 90, 90))
    [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...]
  /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/wpa_supplicant_8/wpa_supplicant/examples/
ieee8021x.conf 10 identity="user name"
  /libcore/luni/src/test/java/libcore/java/util/function/
UnaryOperatorTest.java 27 assertSame(arg, UnaryOperator.identity().apply(arg));
28 assertNull(null, UnaryOperator.identity().apply(null));
  /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...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
DoubleAccumulator.java 31 * Double.NEGATIVE_INFINITY} as the identity. The order of
54 private final long identity; // use long representation field in class:DoubleAccumulator
58 * and identity element.
60 * @param identity identity (initial value) for the accumulator function
63 double identity) {
65 base = this.identity = Double.doubleToRawLongBits(identity);
113 * Resets variables maintaining updates to the identity value.
122 base = identity;
223 private final long identity; field in class:DoubleAccumulator.SerializationProxy
    [all...]
LongAccumulator.java 37 * Long.MIN_VALUE} as the identity.
56 private final long identity; field in class:LongAccumulator
60 * and identity element.
62 * @param identity identity (initial value) for the accumulator function
65 long identity) {
67 base = this.identity = identity;
110 * Resets variables maintaining updates to the identity value.
119 base = identity;
218 private final long identity; field in class:LongAccumulator.SerializationProxy
    [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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_categories.hpp 16 # include <boost/mpl/identity.hpp>
79 , mpl::identity<random_access_traversal_tag>
82 , mpl::identity<bidirectional_traversal_tag>
85 , mpl::identity<forward_traversal_tag>
88 , mpl::identity<single_pass_traversal_tag>
91 , mpl::identity<incrementable_traversal_tag>
112 , mpl::identity<random_access_traversal_tag>
115 , mpl::identity<bidirectional_traversal_tag>
118 , mpl::identity<forward_traversal_tag>
121 , mpl::identity<single_pass_traversal_tag
    [all...]
  /libcore/ojluni/src/main/java/java/util/function/
UnaryOperator.java 49 static <T> UnaryOperator<T> identity() { method in interface:UnaryOperator
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 6 template<typename T> struct identity { using type = T; }; struct
55 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {}
57 template identity<int(int, float, double)> f5();
68 template template_tuple<identity, add_reference> f7();
72 template void f8<int, identity<int>, identity<float>>(int (&)[6]);
  /external/curl/lib/
curl_sspi.c 154 * This is used to populate a SSPI identity structure based on the supplied
161 * identity [in/out] - The identity structure.
166 SEC_WINNT_AUTH_IDENTITY *identity)
176 /* Initialize the identity */
177 memset(identity, 0, sizeof(*identity));
198 /* Setup the identity's user and length */
204 identity->User = dup_user.tbyte_ptr;
205 identity->UserLength = curlx_uztoul(_tcslen(dup_user.tchar_ptr))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.identity_3.1.0.v20100529-0735.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.identity_3.2.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.identity_3.2.0.v20130604-1622.jar 
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 51 /** The identity of the root node. */
120 /** The document identity number(s). If we have overflowed the addressing
124 /** The mask for the identity.
160 * @param dtmIdentity The DTM identity ID for this DTM.
180 * @param dtmIdentity The DTM identity ID for this DTM.
315 * @param identity The node identity index.
317 protected void indexNode(int expandedTypeID, int identity)
332 index[index[0]] = identity;
349 * to the identity argument, or -1 if no node is higher or equal
882 int identity = makeNodeIdentity(nodeHandle); local
972 int identity = makeNodeIdentity(nodeHandle); local
1025 int identity = makeNodeIdentity(nodeHandle); local
1110 int identity = makeNodeIdentity(nodeHandle); local
1463 int identity = makeNodeIdentity(nodeHandle); local
1483 int identity = makeNodeIdentity(nodeHandle); local
1534 int identity = makeNodeIdentity(nodeHandle); local
1561 int identity = makeNodeIdentity(nodeHandle); local
1743 int identity = makeNodeIdentity(nodeHandle); local
1852 int identity = makeNodeIdentity(nodeHandle); local
    [all...]

Completed in 943 milliseconds

1 2 3 4 5 6 7 8 91011>>