HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 201 - 225 of 6491) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
RespID.java 21 ResponderID id; field in class:RespID
24 ResponderID id)
26 this.id = id;
32 this.id = new ResponderID(name);
40 * @throws OCSPException on exception creating ID.
59 this.id = new ResponderID(new DEROctetString(digCalc.getDigest()));
63 throw new OCSPException("problem creating ID: " + e, e);
69 return id;
82 return id.equals(obj.id)
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 23 * Construct a signer ID with the value of a public key's subjectKeyId.
33 * Construct a signer ID based on the issuer and serial number of the signer's associated
45 * Construct a signer ID based on the issuer and serial number of the signer's associated
85 SignerId id = (SignerId)o; local
87 return this.baseSelector.equals(id.baseSelector);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Run.java 37 private UUID id; field in class:Run
42 this.id = Defaults.UUID;
48 this.id = builder.id;
53 public UUID id() { method in class:Run
54 return id;
70 return this.id.equals(that.id)
79 return Objects.hashCode(id, label, startTime);
84 .add("id", id
91 private UUID id; field in class:Run.Builder
    [all...]
  /external/capstone/arch/XCore/
XCoreInstPrinter.c 50 int id; local
64 id = XCore_reg_id(p);
65 if (id) {
69 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].reg = id;
86 id = XCore_reg_id(p2);
87 if (id) {
91 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.base = (uint8_t)id;
105 id = XCore_reg_id(p2);
106 if (id) {
109 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.index = (uint8_t)id;
    [all...]
  /external/capstone/
utils.h 20 unsigned short id; member in struct:insn_map
31 // look for @id in @m, given its size in @max. first time call will update @cache.
33 unsigned short insn_find(insn_map *m, unsigned int max, unsigned int id, unsigned short **cache);
35 // map id to string
37 unsigned int id; member in struct:name_map
41 // map a name to its ID
  /external/clang/test/CodeGenCXX/
eh-aggregated-inits-unwind.cpp 10 int id; member in struct:ImplicitCopy
11 ImplicitCopy() { id = 10; }
12 ~ImplicitCopy() { id = 20; }
16 int id; member in struct:ThrowCopy
17 ThrowCopy() { id = 15; }
19 id = 25;
22 ~ThrowCopy() { id = 35; }
26 int id; member in struct:Container
30 Container() { id = 1000; }
31 ~Container() { id = 2000;
    [all...]
eh-aggregated-inits.cpp 10 int id; member in struct:ImplicitCopy
12 ImplicitCopy() { id = 10; }
13 ~ImplicitCopy() { id = 20; }
17 int id; member in struct:ExplicitCopy
19 ExplicitCopy() { id = 15; }
20 ExplicitCopy(const ExplicitCopy &x) { id = 25; }
21 ~ExplicitCopy() { id = 35; }
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stackdepot.h 30 u32 id();
40 // Retrieves a stored stack trace by the id.
41 StackTrace StackDepotGet(u32 id);
53 StackTrace Get(u32 id);
57 u32 id; member in struct:__sanitizer::StackDepotReverseMap::IdDescPair
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
FileClientSessionCacheTest.java 38 final int id = i; local
43 cache.putSessionData(new FakeSSLSession(id + "" + i), new byte[10]);
MockSessionBuilder.java 29 private byte[] id; field in class:MockSessionBuilder
36 MockSessionBuilder id(byte[] id) { method in class:MockSessionBuilder
37 this.id = id;
68 byte[] id = this.id == null ? host.getBytes(UTF_8) : this.id;
69 when(session.getId()).thenReturn(id);
  /external/drm_hwcomposer/
drmcrtc.cpp 57 uint32_t DrmCrtc::id() const { function in class:android::DrmCrtc
  /external/e2fsprogs/debugfs/
quota.c 124 (type == 0) ? "user id" : "group id",
139 qid_t id; local
145 com_err(0, 0, "Usage: get_quota <quota_type> <id>\n");
153 id = parse_ulong(argv[2], argv[0], "id", &err);
158 (type == 0) ? "user id" : "group id",
163 dq = qh->qh_ops->read_dquot(qh, id);
  /external/fdlibm/
s_atan.c 93 int ix,hx,id; local
107 id = -1;
112 id = 0; x = (2.0*x-one)/(2.0+x);
114 id = 1; x = (x-one)/(x+one);
118 id = 2; x = (x-1.5)/(one+1.5*x);
120 id = 3; x = -1.0/x;
129 if (id<0) return x - x*(s1+s2);
131 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
  /external/flatbuffers/tests/MyGame/Example/
Ability.java 15 public long id() { return (long)bb.getInt(bb_pos + 0) & 0xFFFFFFFFL; } method in class:Ability
16 public void mutateId(long id) { bb.putInt(bb_pos + 0, (int)id); }
20 public static int createAbility(FlatBufferBuilder builder, long id, long distance) {
23 builder.putInt((int)id);
  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 15 private String id; field in class:MultiTransformation
48 if (id == null) {
53 id = sb.toString();
55 return id;
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
ByteArrayFetcher.java 9 * A simple resource fetcher to convert byte arrays into input stream. Requires an id to be passed in to identify the
10 * data in the byte array because there is no cheap/simple way to obtain a useful id from the data itself.
14 private final String id; field in class:ByteArrayFetcher
16 public ByteArrayFetcher(byte[] bytes, String id) {
18 this.id = id;
33 return id;
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
ImageVideoWrapperEncoder.java 18 private String id; field in class:ImageVideoWrapperEncoder
37 if (id == null) {
38 id = streamEncoder.getId() + fileDescriptorEncoder.getId();
40 return id;
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
StreamByteArrayLoader.java 15 * no simple/quick way to generate an id from the bytes themselves, so subclass must include an id.
18 private final String id; field in class:StreamByteArrayLoader
29 public StreamByteArrayLoader(String id) {
30 this.id = id;
35 return new ByteArrayFetcher(model, id);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
StreamBitmapDecoder.java 20 private static final String ID = "StreamBitmapDecoder.com.bumptech.glide.load.resource.bitmap";
24 private String id; field in class:StreamBitmapDecoder
56 if (id == null) {
57 id = new StringBuilder()
58 .append(ID)
63 return id;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceEncoder.java 18 private String id; field in class:GifBitmapWrapperResourceEncoder
40 if (id == null) {
41 id = bitmapEncoder.getId() + gifEncoder.getId();
43 return id;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Node.java 34 private final NodeId id; field in class:Node
37 protected Node(NodeId id, Object source) {
38 this.id = id;
43 return id;
55 return Objects.equal(id, other.id)
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
64 * Returns a copy of the node with a new ID
    [all...]
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
JpaParentTestEntity.java 24 import javax.persistence.Id;
36 private Long id; field in class:JpaParentTestEntity
39 @Id
42 return id;
45 public void setId(Long id) {
46 this.id = id;
JpaTestEntity.java 21 import javax.persistence.Id;
26 private Long id; field in class:JpaTestEntity
29 @Id @GeneratedValue
31 return id;
34 public void setId(Long id) {
35 this.id = id;
57 if (id != null ? !id.equals(that.id) : that.id != null)
    [all...]
  /external/icu/icu4c/source/i18n/
digitaffix.cpp 92 int32_t id = (int32_t) fAnnotations.charAt(i); local
93 if (id != lastId) {
97 lastId = id;
  /external/icu/icu4c/source/test/intltest/
idnaconf.h 40 UnicodeString id; // for debug & error output member in class:IdnaConfTest

Completed in 705 milliseconds

1 2 3 4 5 6 7 891011>>