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

1 2 3 4

  /external/clang/test/Preprocessor/
hash_line.c 8 #define IDENTITY(X) X
12 IDENTITY() #
  /external/apache-http/src/org/apache/http/entity/
ContentLengthStrategy.java 49 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
  /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-
209 // Currently only chunk and identity are supported
222 return IDENTITY;
230 return IDENTITY;
253 return IDENTITY;
256 return IDENTITY;
StrictContentLengthStrategy.java 67 * than "identity", then the transfer-length is defined by use of the "chunked" transfer-
202 return IDENTITY;
216 return IDENTITY;
EntitySerializer.java 76 } else if (len == ContentLengthStrategy.IDENTITY) {
EntityDeserializer.java 82 } 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/guava/guava/src/com/google/common/collect/
BstModificationResult.java 31 IDENTITY, REBUILDING_CHANGE, REBALANCING_CHANGE;
34 static <N extends BstNode<?, N>> BstModificationResult<N> identity(@Nullable N target) { method in class:BstModificationResult
35 return new BstModificationResult<N>(target, target, ModificationType.IDENTITY);
BstMutationResult.java 18 import static com.google.common.collect.BstModificationResult.ModificationType.IDENTITY;
127 case IDENTITY:
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 22 import android.provider.ContactsContract.CommonDataKinds.Identity;
27 * Handler for Identity data rows.
32 super(context, dbHelper, aggregator, Identity.CONTENT_ITEM_TYPE);
40 // Identity affects aggregation.
41 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
54 // Identity affects aggregation.
56 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE))
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiEnterpriseConfigTest.java 32 private static final String IDENTITY = "identity";
80 config.setIdentity(IDENTITY);
81 assertTrue(config.getIdentity().equals(IDENTITY));
100 enterpriseConfig.setIdentity(IDENTITY);
  /external/chromium_org/chrome/common/
content_settings_pattern.cc 514 return IDENTITY;
537 if (host_relation != IDENTITY)
539 if (port_relation != IDENTITY)
546 return Compare(other) == IDENTITY;
572 return ContentSettingsPattern::IDENTITY;
635 return ContentSettingsPattern::IDENTITY;
648 return ContentSettingsPattern::IDENTITY;
662 return ContentSettingsPattern::IDENTITY;
679 return ContentSettingsPattern::IDENTITY;
content_settings_pattern_unittest.cc 119 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern.Compare(pattern2));
133 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern.Compare(pattern2));
192 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
311 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
475 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern1.Compare(pattern1));
476 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
479 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
490 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
588 EXPECT_EQ(ContentSettingsPattern::IDENTITY,
  /frameworks/native/services/surfaceflinger/
Transform.cpp 59 if (CC_LIKELY(mType == IDENTITY))
63 if (rhs.mType == IDENTITY)
103 mType = IDENTITY;
149 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
157 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
166 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
373 type.append("IDENTITY ");
Transform.h 55 IDENTITY = 0,
  /external/clang/test/SemaCXX/
warn-empty-body.cpp 272 #define IDENTITY(a) a
274 if (x) IDENTITY(); // no-warning
  /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.
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sake.c 18 enum { IDENTITY, CHALLENGE, CONFIRM, SUCCESS, FAILURE } state;
36 case IDENTITY:
37 return "IDENTITY";
123 wpa_printf(MSG_DEBUG, "EAP-SAKE: Request/Identity");
220 case IDENTITY:
268 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
292 if (data->state != IDENTITY)
295 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received Response/Identity");
296 /* TODO: update identity and select new user data */
  /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...]

Completed in 2519 milliseconds

1 2 3 4