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

1 2 3 4

  /external/webkit/Source/WebCore/platform/graphics/transforms/
IdentityTransformOperation.h 41 virtual OperationType getOperationType() const { return IDENTITY; }
42 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == IDENTITY; }
TransformOperation.h 51 IDENTITY, NONE
  /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/Contacts/src/com/android/contacts/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/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 31 private static final String IDENTITY = "identity";
68 config.setIdentity(IDENTITY);
69 assertTrue(config.getIdentity().equals(IDENTITY));
84 enterpriseConfig.setIdentity(IDENTITY);
  /external/ceres-solver/internal/ceres/
system_test.cc 72 preconditioner_type(IDENTITY),
487 CONFIGURE(SPARSE_NORMAL_CHOLESKY, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
488 CONFIGURE(SPARSE_NORMAL_CHOLESKY, SUITE_SPARSE, kUserOrdering, IDENTITY);
490 CONFIGURE(SPARSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
491 CONFIGURE(SPARSE_SCHUR, SUITE_SPARSE, kUserOrdering, IDENTITY);
495 CONFIGURE(SPARSE_SCHUR, CX_SPARSE, kAutomaticOrdering, IDENTITY);
496 CONFIGURE(SPARSE_SCHUR, CX_SPARSE, kUserOrdering, IDENTITY);
499 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kAutomaticOrdering, IDENTITY);
500 CONFIGURE(DENSE_SCHUR, SUITE_SPARSE, kUserOrdering, IDENTITY);
types.cc 76 CASESTR(IDENTITY);
88 STRENUM(IDENTITY);
cgnr_solver.cc 65 } else if (options_.preconditioner_type != IDENTITY) {
66 LOG(FATAL) << "CGNR only supports IDENTITY and JACOBI preconditioners.";
iterative_schur_complement_solver.cc 94 case IDENTITY:
  /external/ceres-solver/include/ceres/
types.h 97 // Trivial preconditioner - the identity matrix.
98 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;
376 type.append("IDENTITY ");
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
EntropyComputeUtil.java 59 terrainBlock.collideWith(ray, Matrix4f.IDENTITY, bbox, results);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Transform.java 49 public static final Transform IDENTITY = new Transform();
66 this(translation, Quaternion.IDENTITY);
74 this(Vector3f.ZERO, Quaternion.IDENTITY);
264 * Loads the identity. Equal to translation=0,0,0 scale=1,1,1 rot=0,0,0,1.
  /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...]
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimationFactory.java 69 animationFactory.addTimeRotation(1,Quaternion.IDENTITY);
TestSpatialAnim.java 66 rotations[i] = Quaternion.IDENTITY;

Completed in 504 milliseconds

1 2 3 4