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

1 2 3 4 5 6 7

  /external/clang/test/Preprocessor/
hash_line.c 8 #define IDENTITY(X) X
12 IDENTITY() #
  /external/apache-http/src/org/apache/http/entity/
ContentLengthStrategy.java 54 public static final int IDENTITY = -1;
  /external/clang/test/CodeCompletion/
macros.c 12 switch (p->IDENTITY(color)) {
35 // CC2: IDENTITY(<#X#>)
43 // CC3: IDENTITY
  /external/clang/test/CodeCompletion/Inputs/
macros.h 3 #define IDENTITY(X) X
  /external/guava/guava-tests/benchmark/com/google/common/cache/
MapMakerComparisonBenchmark.java 36 private static final Function<Object, Object> IDENTITY = Functions.identity();
39 private final Map<Object, Object> computingMap = new MapMaker().makeComputingMap(IDENTITY);
41 CacheBuilder.newBuilder().recordStats().build(CacheLoader.from(IDENTITY));
43 CacheBuilder.newBuilder().build(CacheLoader.from(IDENTITY));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
IdentityDataItem.java 21 import android.provider.ContactsContract.CommonDataKinds.Identity;
24 * Represents an identity data item, wrapping the columns in
25 * {@link ContactsContract.CommonDataKinds.Identity}.
34 return getContentValues().getAsString(Identity.IDENTITY);
38 return getContentValues().getAsString(Identity.NAMESPACE);
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 71 * than "identity", then the transfer-length is defined by use of the "chunked" transfer-
214 // Currently only chunk and identity are supported
227 return IDENTITY;
235 return IDENTITY;
258 return IDENTITY;
261 return IDENTITY;
StrictContentLengthStrategy.java 67 * than "identity", then the transfer-length is defined by use of the "chunked" transfer-
207 return IDENTITY;
221 return IDENTITY;
EntitySerializer.java 81 } else if (len == ContentLengthStrategy.IDENTITY) {
EntityDeserializer.java 87 } else if (len == ContentLengthStrategy.IDENTITY) {
  /external/ceres-solver/internal/ceres/
system_test.cc 75 preconditioner_type(IDENTITY),
498 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
499 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kUserOrdering, IDENTITY);
510 CONFIGURE(SPARSE_NORMAL_CHOLESKY, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
511 CONFIGURE(SPARSE_NORMAL_CHOLESKY, SUITE_SPARSE, kUserOrdering, IDENTITY);
513 CONFIGURE(SPARSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
514 CONFIGURE(SPARSE_SCHUR, SUITE_SPARSE, kUserOrdering, IDENTITY);
524 CONFIGURE(SPARSE_NORMAL_CHOLESKY, CX_SPARSE, kAutomaticOrdering, IDENTITY);
525 CONFIGURE(SPARSE_NORMAL_CHOLESKY, CX_SPARSE, kUserOrdering, IDENTITY);
527 CONFIGURE(SPARSE_SCHUR, CX_SPARSE, kAutomaticOrdering, IDENTITY);
    [all...]
cgnr_solver.cc 48 options_.preconditioner_type != IDENTITY) {
49 LOG(FATAL) << "CGNR only supports IDENTITY and JACOBI preconditioners.";
iterative_schur_complement_solver.cc 124 case IDENTITY:
types.cc 74 CASESTR(IDENTITY);
86 STRENUM(IDENTITY);
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaderValues.java 39 IDENTITY="identity",
67 IDENTITY_BUFFER=CACHE.add(IDENTITY,IDENTITY_ORDINAL),
  /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...]
  /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...]
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Parsers.java 29 public static final Parser<String> IDENTITY = new Parser<String>() {
51 Parser<T> identity = (Parser<T>) IDENTITY; local
52 return identity;
  /tools/test/connectivity/acts/tests/google/wifi/
WifiEnterpriseTest.py 80 Ent.IDENTITY: self.eap_identity,
93 Ent.IDENTITY: self.eap_identity,
98 Ent.IDENTITY: self.eap_identity,
105 Ent.IDENTITY: self.eap_identity,
249 # Skip negative test for TLS's identity field since it's not
251 if c[Ent.EAP] == EAP.TLS and k == Ent.IDENTITY:
275 Ent.IDENTITY: "fake_identity",
293 Ent.IDENTITY: "fake_identity",
WifiEnterpriseRoamingTest.py 64 Ent.IDENTITY: self.eap_identity,
75 Ent.IDENTITY: self.eap_identity,
80 Ent.IDENTITY: self.eap_identity,
  /frameworks/native/services/surfaceflinger/
Transform.cpp 59 if (CC_LIKELY(mType == IDENTITY))
63 if (rhs.mType == IDENTITY)
99 mType = IDENTITY;
145 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
153 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
162 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
377 type.append("IDENTITY ");
Transform.h 55 IDENTITY = 0,
  /external/clang/test/SemaCXX/
warn-empty-body.cpp 279 #define IDENTITY(a) a
281 if (x) IDENTITY(); // no-warning
  /external/wpa_supplicant_8/src/eap_peer/
eap_sake.c 17 enum { IDENTITY, CHALLENGE, CONFIRM, SUCCESS, FAILURE } state;
40 case IDENTITY:
41 return "IDENTITY";
71 const u8 *identity, *password; local
84 data->state = IDENTITY;
86 identity = eap_get_config_identity(sm, &identity_len);
87 if (identity) {
93 os_memcpy(data->peerid, identity, identity_len);
151 if (data->state != IDENTITY) {
156 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received Request/Identity");
    [all...]
  /frameworks/base/core/java/android/hardware/input/
TouchCalibration.java 29 public static final TouchCalibration IDENTITY = new TouchCalibration();
46 * Create a new TouchCalibration initialized to the identity transformation.

Completed in 857 milliseconds

1 2 3 4 5 6 7