HomeSort by relevance Sort by last modified time
    Searched defs:Identity (Results 1 - 25 of 32) sorted by null

1 2

  /external/guava/guava/src/com/google/common/base/
Equivalences.java 57 public static Equivalence<Object> identity() { method in class:Equivalences
58 return Identity.INSTANCE;
79 private static final class Identity extends Equivalence<Object>
82 static final Identity INSTANCE = new Identity();
  /external/chromium/net/http/
http_auth.cc 21 HttpAuth::Identity::Identity() : source(IDENT_SRC_NONE), invalid(true) {}
http_auth.h 64 // Describes where the identity used for authentication came from.
66 // Came from nowhere -- the identity is not initialized.
69 // The identity came from the auth cache, by doing a path-based
73 // The identity was extracted from a URL of the form:
77 // The identity was retrieved from the auth cache, by doing a
81 // The identity was provided by RestartWithAuth -- it likely
85 // The identity used the default credentials for the computer,
100 // the current identity being used for authorization.
101 struct Identity {
102 Identity();
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info.cpp 2 template<typename T> struct Identity {
6 void f(Identity<int>::Type a) {}
7 void f(Identity<int> a) {}
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
vertexconversion.h 22 // static const bool identity: true if this is an identity transform, false otherwise
27 struct Identity
29 static const bool identity = true; member in struct:gl::Identity
42 static const bool identity = false; member in struct:gl::Cast
55 static const bool identity = true; member in struct:gl::Cast
68 static const bool identity = false; member in struct:gl::Normalize
94 static const bool identity = false; member in struct:gl::FixedToFloat
149 // static const bool identity: true if this is an identity transform (with no widening
159 static const bool identity = (WidenRule::initialWidth == WidenRule::finalWidth) && Converter::identity; member in struct:gl::VertexDataConverter
    [all...]
  /libcore/luni/src/main/java/java/security/
Identity.java 26 * {@code Identity} represents an identity like a person or a company.
33 public abstract class Identity implements Principal, Serializable {
47 * Constructs a new instance of {@code Identity}.
49 protected Identity() {
53 * Creates a new instance of {@code Identity} with the specified name.
56 * the name of this {@code Identity}.
58 public Identity(String name) {
63 * Creates a new instance of {@code Identity} with the specified name and
64 * the scope of this {@code Identity}
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
wpa_core.c 76 U8 Identity[WPACORE_MAX_CERT_PASSWORD_LENGTH];
324 S32 WpaCore_SetCredentials(THandle hWpaCore, PU8 Identity, PU8 Passward)
328 os_memcpy((PVOID)pWpaCore->WpaSupplParams.Identity, (PVOID)Identity, os_strlen((PS8)Identity));
749 if (pWpaCore->WpaSupplParams.Identity[0])
751 os_sprintf(cmd, (PS8)"SET_NETWORK %d identity \"%s\"", NetworkID,pWpaCore->WpaSupplParams.Identity);
  /external/chromium/base/
bind_unittest.cc 150 int Identity(int n) {
324 Callback<int(void)> bind_primitive_cb = Bind(&Identity, n);
331 Callback<int(void)> bind_int_literal_cb = Bind(&Identity, 3);
402 Callback<int(void)> ref_copies_cb = Bind(&Identity, ref_n);
407 Callback<int(void)> const_ref_copies_cb = Bind(&Identity, const_ref_n);
481 Callback<int(void)> copy_cb = Bind(&Identity, n);
482 Callback<int(void)> const_ref_cb = Bind(&Identity, ConstRef(n));
591 // Callback<int(void)> cb_a0 = Bind(&Identity, 1);
597 // Callback<int(void)> cb_a1 = Bind(&Identity, 1);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 633 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, I->getType());
634 if (Cst && Cst != Identity) {
646 assert(Identity && "Associative operation without identity!");
647 Ops.push_back(std::make_pair(Identity, APInt(Bitwidth, 1)));
    [all...]
  /external/openssh/
ssh-agent.c 104 typedef struct identity { struct
105 TAILQ_ENTRY(identity) next;
111 } Identity;
115 TAILQ_HEAD(idqueue, identity) idlist;
172 free_identity(Identity *id)
182 static Identity *
185 Identity *id;
197 confirm_key(Identity *id)
216 Identity *id;
249 Identity *id
    [all...]
sshconnect2.c 241 typedef struct identity Identity;
244 struct identity { struct
245 TAILQ_ENTRY(identity) next;
252 TAILQ_HEAD(idlist, identity);
312 static int sign_and_send_pubkey(Authctxt *, Identity *);
555 Identity *id = NULL;
1172 identity_sign(Identity *id, u_char **sigp, u_int *lenp,
1197 sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 602 private class Identity {
606 Identity(int _pid, int _uid) {
612 private static ThreadLocal<Identity> sCallerIdentity = new ThreadLocal<Identity>();
    [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 729 milliseconds

1 2