HomeSort by relevance Sort by last modified time
    Searched defs: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/clang/test/CodeCompletion/Inputs/
macros.h 3 #define IDENTITY(X) X
  /external/apache-http/src/org/apache/http/entity/
ContentLengthStrategy.java 54 public static final int IDENTITY = -1;
  /external/clang/test/SemaCXX/
warn-empty-body.cpp 279 #define IDENTITY(a) a
281 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/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));
  /frameworks/native/services/surfaceflinger/
Transform.h 55 IDENTITY = 0,
  /frameworks/support/design/honeycomb/android/support/design/widget/
ViewGroupUtilsHoneycomb.java 29 private static final Matrix IDENTITY = new Matrix();
37 m.set(IDENTITY);
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiEnterpriseConfigTest.java 32 private static final String IDENTITY = "identity";
84 config.setIdentity(IDENTITY);
85 assertTrue(config.getIdentity().equals(IDENTITY));
113 enterpriseConfig.setIdentity(IDENTITY);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 50 /** The identity function. */
51 public static final ComposableFunction IDENTITY = new ComposableFunction() {
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaderValues.java 39 IDENTITY="identity",
67 IDENTITY_BUFFER=CACHE.add(IDENTITY,IDENTITY_ORDINAL),
HttpHeaders.java 110 IDENTITY= "identity";
237 IDENTITY_BUFFER=CACHE.add(IDENTITY,IDENTITY_ORDINAL),
  /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.
Matrix3f.java 59 public static final Matrix3f IDENTITY = new Matrix3f();
63 * initial values for the matrix is that of the identity matrix.
134 * matrix. If a null matrix is supplied, this matrix is set to the identity
696 * <code>loadIdentity</code> sets this matrix to the identity matrix.
706 * @return true if this matrix is identity
1095 * It is in a format of a 3x3 matrix. For example, an identity matrix would
    [all...]
Quaternion.java 60 * Represents the identity quaternion rotation (0, 0, 0, 1).
62 public static final Quaternion IDENTITY = new Quaternion();
    [all...]
Matrix4f.java 66 public static final Matrix4f IDENTITY = new Matrix4f();
70 * identity matrix.
116 * matrix is null, the constructor sets the matrix to the identity.
127 * matrix. If a null matrix is supplied, this matrix is set to the identity
851 * <code>loadIdentity</code> sets this matrix to the identity matrix,
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
UrlComponentEncodingTester.java 30 * '?' may be identity-encoded in a fragment, but must be percent-encoded in a path.
70 map.put((int) '!', Encoding.IDENTITY);
73 map.put((int) '$', Encoding.IDENTITY);
74 map.put((int) '%', Encoding.IDENTITY);
75 map.put((int) '&', Encoding.IDENTITY);
76 map.put((int) '\'', Encoding.IDENTITY);
77 map.put((int) '(', Encoding.IDENTITY);
78 map.put((int) ')', Encoding.IDENTITY);
79 map.put((int) '*', Encoding.IDENTITY);
80 map.put((int) '+', Encoding.IDENTITY);
    [all...]
  /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...]
eap_eke.c 18 IDENTITY, COMMIT, CONFIRM, SUCCESS, FAILURE
41 case IDENTITY:
42 return "IDENTITY";
71 const u8 *identity, *password; local
84 eap_eke_state(data, IDENTITY);
86 identity = eap_get_config_identity(sm, &identity_len);
87 if (identity) {
93 os_memcpy(data->peerid, identity, identity_len);
234 if (data->state != IDENTITY) {
303 wpa_printf(MSG_DEBUG, "EAP-EKE: Too short ID/Request Data to include IDType/Identity");
    [all...]
  /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 */
eap_server_eke.c 19 IDENTITY, COMMIT, CONFIRM, FAILURE_REPORT, SUCCESS, FAILURE
41 case IDENTITY:
42 return "IDENTITY";
84 eap_eke_state(data, IDENTITY);
187 wpa_printf(MSG_DEBUG, "EAP-EKE: Request/Identity");
224 /* Server IDType + Identity */
366 case IDENTITY:
400 if (data->state == IDENTITY && eke_exch == EAP_EKE_ID)
427 wpa_printf(MSG_DEBUG, "EAP-EKE: Received Response/Identity");
429 if (data->state != IDENTITY) {
    [all...]
eap_server_aka.c 35 IDENTITY, CHALLENGE, REAUTH, NOTIFICATION, SUCCESS, FAILURE
63 case IDENTITY:
64 return "IDENTITY";
105 wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown reauth identity - "
106 "request full auth identity");
107 /* Remain in IDENTITY state for another round */
136 /* Check if we already know the identity from EAP-Response/Identity */
138 username = sim_get_username(sm->identity, sm->identity_len);
145 * Since re-auth username was recognized, skip AKA/Identity
    [all...]
  /external/ceres-solver/include/ceres/
types.h 99 // Trivial preconditioner - the identity matrix.
100 IDENTITY,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 97 /** Identity rotation. */
98 public static final Rotation IDENTITY = new Rotation(1.0, 0.0, 0.0, 0.0, false);
403 // this is really the identity rotation
603 * second angle is close to 0 or &pi;, this implies that the identity
    [all...]
  /external/opencv/ml/include/
ml.h     [all...]

Completed in 1927 milliseconds

1 2 3 4